1 | /** \file joiner.cpp
|
---|
2 | *
|
---|
3 | * Takes evaluated fragments (energy and forces) and by reading the factors files determines total energy
|
---|
4 | * and each force for the whole molecule.
|
---|
5 | *
|
---|
6 | */
|
---|
7 |
|
---|
8 | //============================ INCLUDES ===========================
|
---|
9 |
|
---|
10 | #include <cstring>
|
---|
11 |
|
---|
12 | #include "datacreator.hpp"
|
---|
13 | #include "helpers.hpp"
|
---|
14 | #include "memoryallocator.hpp"
|
---|
15 | #include "parser.hpp"
|
---|
16 | #include "periodentafel.hpp"
|
---|
17 |
|
---|
18 | //============================== MAIN =============================
|
---|
19 |
|
---|
20 | int main(int argc, char **argv)
|
---|
21 | {
|
---|
22 | periodentafel *periode = NULL; // and a period table of all elements
|
---|
23 | EnergyMatrix Energy;
|
---|
24 | EnergyMatrix EnergyFragments;
|
---|
25 |
|
---|
26 | EnergyMatrix Hcorrection;
|
---|
27 | EnergyMatrix HcorrectionFragments;
|
---|
28 |
|
---|
29 | ForceMatrix Force;
|
---|
30 | ForceMatrix ForceFragments;
|
---|
31 |
|
---|
32 | HessianMatrix Hessian;
|
---|
33 | HessianMatrix HessianFragments;
|
---|
34 |
|
---|
35 | ForceMatrix Shielding;
|
---|
36 | ForceMatrix ShieldingPAS;
|
---|
37 | ForceMatrix ShieldingFragments;
|
---|
38 | ForceMatrix ShieldingPASFragments;
|
---|
39 | ForceMatrix Chi;
|
---|
40 | ForceMatrix ChiPAS;
|
---|
41 | ForceMatrix ChiFragments;
|
---|
42 | ForceMatrix ChiPASFragments;
|
---|
43 | KeySetsContainer KeySet;
|
---|
44 | stringstream prefix;
|
---|
45 | char *dir = NULL;
|
---|
46 | bool NoHCorrection = false;
|
---|
47 | bool NoHessian = false;
|
---|
48 |
|
---|
49 | Log() << Verbose(0) << "Joiner" << endl;
|
---|
50 | Log() << Verbose(0) << "======" << endl;
|
---|
51 |
|
---|
52 | // Get the command line options
|
---|
53 | if (argc < 3) {
|
---|
54 | Log() << Verbose(0) << "Usage: " << argv[0] << " <inputdir> <prefix> [elementsdb]" << endl;
|
---|
55 | Log() << Verbose(0) << "<inputdir>\ttherein the output of a molecuilder fragmentation is expected, each fragment with a subdir containing an energy.all and a forces.all file." << endl;
|
---|
56 | Log() << Verbose(0) << "<prefix>\tprefix of energy and forces file." << endl;
|
---|
57 | Log() << Verbose(0) << "[elementsdb]\tpath to elements database, needed for shieldings." << endl;
|
---|
58 | return 1;
|
---|
59 | } else {
|
---|
60 | dir = Malloc<char>(strlen(argv[2]) + 2, "main: *dir");
|
---|
61 | strcpy(dir, "/");
|
---|
62 | strcat(dir, argv[2]);
|
---|
63 | }
|
---|
64 | if (argc > 3) {
|
---|
65 | periode = new periodentafel;
|
---|
66 | periode->LoadPeriodentafel(argv[3]);
|
---|
67 | }
|
---|
68 |
|
---|
69 | // Test the given directory
|
---|
70 | if (!TestParams(argc, argv))
|
---|
71 | return 1;
|
---|
72 |
|
---|
73 | // +++++++++++++++++ PARSING +++++++++++++++++++++++++++++++
|
---|
74 |
|
---|
75 | // ------------- Parse through all Fragment subdirs --------
|
---|
76 | if (!Energy.ParseFragmentMatrix(argv[1], dir, EnergySuffix, 0,0)) return 1;
|
---|
77 | if (!Hcorrection.ParseFragmentMatrix(argv[1], "", HCORRECTIONSUFFIX, 0,0)) {
|
---|
78 | NoHCorrection = true;
|
---|
79 | Log() << Verbose(0) << "No HCorrection matrices found, skipping these." << endl;
|
---|
80 | }
|
---|
81 | if (!Force.ParseFragmentMatrix(argv[1], dir, ForcesSuffix, 0,0)) return 1;
|
---|
82 | if (!Hessian.ParseFragmentMatrix(argv[1], dir, HessianSuffix, 0,0)) {
|
---|
83 | NoHessian = true;
|
---|
84 | Log() << Verbose(0) << "No hessian matrices found, skipping these." << endl;
|
---|
85 | }
|
---|
86 | if (periode != NULL) { // also look for PAS values
|
---|
87 | if (!Shielding.ParseFragmentMatrix(argv[1], dir, ShieldingSuffix, 1, 0)) return 1;
|
---|
88 | if (!ShieldingPAS.ParseFragmentMatrix(argv[1], dir, ShieldingPASSuffix, 1, 0)) return 1;
|
---|
89 | if (!Chi.ParseFragmentMatrix(argv[1], dir, ChiSuffix, 1, 0)) return 1;
|
---|
90 | if (!ChiPAS.ParseFragmentMatrix(argv[1], dir, ChiPASSuffix, 1, 0)) return 1;
|
---|
91 | }
|
---|
92 |
|
---|
93 | // ---------- Parse the TE Factors into an array -----------------
|
---|
94 | if (!Energy.InitialiseIndices()) return 1;
|
---|
95 | if (!NoHCorrection)
|
---|
96 | Hcorrection.InitialiseIndices();
|
---|
97 |
|
---|
98 | // ---------- Parse the Force indices into an array ---------------
|
---|
99 | if (!Force.ParseIndices(argv[1])) return 1;
|
---|
100 |
|
---|
101 | // ---------- Parse the Hessian (=force) indices into an array ---------------
|
---|
102 | if (!NoHessian)
|
---|
103 | if (!Hessian.InitialiseIndices((class MatrixContainer *)&Force)) return 1;
|
---|
104 |
|
---|
105 | // ---------- Parse the shielding indices into an array ---------------
|
---|
106 | if (periode != NULL) { // also look for PAS values
|
---|
107 | if(!Shielding.ParseIndices(argv[1])) return 1;
|
---|
108 | if(!ShieldingPAS.ParseIndices(argv[1])) return 1;
|
---|
109 | if(!Chi.ParseIndices(argv[1])) return 1;
|
---|
110 | if(!ChiPAS.ParseIndices(argv[1])) return 1;
|
---|
111 | }
|
---|
112 |
|
---|
113 | // ---------- Parse the KeySets into an array ---------------
|
---|
114 | if (!KeySet.ParseKeySets(argv[1], Force.RowCounter, Force.MatrixCounter)) return 1;
|
---|
115 |
|
---|
116 | if (!KeySet.ParseManyBodyTerms()) return 1;
|
---|
117 |
|
---|
118 | if (!EnergyFragments.AllocateMatrix(Energy.Header, Energy.MatrixCounter, Energy.RowCounter, Energy.ColumnCounter)) return 1;
|
---|
119 | if (!NoHCorrection)
|
---|
120 | HcorrectionFragments.AllocateMatrix(Hcorrection.Header, Hcorrection.MatrixCounter, Hcorrection.RowCounter, Hcorrection.ColumnCounter);
|
---|
121 | if (!ForceFragments.AllocateMatrix(Force.Header, Force.MatrixCounter, Force.RowCounter, Force.ColumnCounter)) return 1;
|
---|
122 | if (!NoHessian)
|
---|
123 | if (!HessianFragments.AllocateMatrix(Hessian.Header, Hessian.MatrixCounter, Hessian.RowCounter, Hessian.ColumnCounter)) return 1;
|
---|
124 | if (periode != NULL) { // also look for PAS values
|
---|
125 | if (!ShieldingFragments.AllocateMatrix(Shielding.Header, Shielding.MatrixCounter, Shielding.RowCounter, Shielding.ColumnCounter)) return 1;
|
---|
126 | if (!ShieldingPASFragments.AllocateMatrix(ShieldingPAS.Header, ShieldingPAS.MatrixCounter, ShieldingPAS.RowCounter, ShieldingPAS.ColumnCounter)) return 1;
|
---|
127 | if (!ChiFragments.AllocateMatrix(Chi.Header, Chi.MatrixCounter, Chi.RowCounter, Chi.ColumnCounter)) return 1;
|
---|
128 | if (!ChiPASFragments.AllocateMatrix(ChiPAS.Header, ChiPAS.MatrixCounter, ChiPAS.RowCounter, ChiPAS.ColumnCounter)) return 1;
|
---|
129 | }
|
---|
130 |
|
---|
131 | // ----------- Resetting last matrices (where full QM values are stored right now)
|
---|
132 | if(!Energy.SetLastMatrix(0., 0)) return 1;
|
---|
133 | if(!Force.SetLastMatrix(0., 2)) return 1;
|
---|
134 | if (!NoHessian)
|
---|
135 | if (!Hessian.SetLastMatrix(0., 0)) return 1;
|
---|
136 | if (periode != NULL) { // also look for PAS values
|
---|
137 | if(!Shielding.SetLastMatrix(0., 2)) return 1;
|
---|
138 | if(!ShieldingPAS.SetLastMatrix(0., 2)) return 1;
|
---|
139 | if(!Chi.SetLastMatrix(0., 2)) return 1;
|
---|
140 | if(!ChiPAS.SetLastMatrix(0., 2)) return 1;
|
---|
141 | }
|
---|
142 |
|
---|
143 | // +++++++++++++++++ SUMMING +++++++++++++++++++++++++++++++
|
---|
144 |
|
---|
145 | // --------- sum up and write for each order----------------
|
---|
146 | for (int BondOrder=0;BondOrder<KeySet.Order;BondOrder++) {
|
---|
147 | // --------- sum up energy --------------------
|
---|
148 | Log() << Verbose(0) << "Summing energy of order " << BondOrder+1 << " ..." << endl;
|
---|
149 | if (!EnergyFragments.SumSubManyBodyTerms(Energy, KeySet, BondOrder)) return 1;
|
---|
150 | if (!NoHCorrection) {
|
---|
151 | HcorrectionFragments.SumSubManyBodyTerms(Hcorrection, KeySet, BondOrder);
|
---|
152 | if (!Energy.SumSubEnergy(EnergyFragments, &HcorrectionFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
153 | Hcorrection.SumSubEnergy(HcorrectionFragments, NULL, KeySet, BondOrder, 1.);
|
---|
154 | } else
|
---|
155 | if (!Energy.SumSubEnergy(EnergyFragments, NULL, KeySet, BondOrder, 1.)) return 1;
|
---|
156 | // --------- sum up Forces --------------------
|
---|
157 | Log() << Verbose(0) << "Summing forces of order " << BondOrder+1 << " ..." << endl;
|
---|
158 | if (!ForceFragments.SumSubManyBodyTerms(Force, KeySet, BondOrder)) return 1;
|
---|
159 | if (!Force.SumSubForces(ForceFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
160 | // --------- sum up Hessian --------------------
|
---|
161 | if (!NoHessian) {
|
---|
162 | Log() << Verbose(0) << "Summing Hessian of order " << BondOrder+1 << " ..." << endl;
|
---|
163 | if (!HessianFragments.SumSubManyBodyTerms(Hessian, KeySet, BondOrder)) return 1;
|
---|
164 | if (!Hessian.SumSubHessians(HessianFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
165 | }
|
---|
166 | if (periode != NULL) { // also look for PAS values
|
---|
167 | Log() << Verbose(0) << "Summing shieldings and susceptibilities of order " << BondOrder+1 << " ..." << endl;
|
---|
168 | if (!ShieldingFragments.SumSubManyBodyTerms(Shielding, KeySet, BondOrder)) return 1;
|
---|
169 | if (!Shielding.SumSubForces(ShieldingFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
170 | if (!ShieldingPASFragments.SumSubManyBodyTerms(ShieldingPAS, KeySet, BondOrder)) return 1;
|
---|
171 | if (!ShieldingPAS.SumSubForces(ShieldingPASFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
172 | if (!ChiFragments.SumSubManyBodyTerms(Chi, KeySet, BondOrder)) return 1;
|
---|
173 | if (!Chi.SumSubForces(ChiFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
174 | if (!ChiPASFragments.SumSubManyBodyTerms(ChiPAS, KeySet, BondOrder)) return 1;
|
---|
175 | if (!ChiPAS.SumSubForces(ChiPASFragments, KeySet, BondOrder, 1.)) return 1;
|
---|
176 | }
|
---|
177 |
|
---|
178 | // --------- write the energy and forces file --------------------
|
---|
179 | prefix.str(" ");
|
---|
180 | prefix << dir << OrderSuffix << (BondOrder+1);
|
---|
181 | Log() << Verbose(0) << "Writing files " << argv[1] << prefix.str() << ". ..." << endl;
|
---|
182 | // energy
|
---|
183 | if (!Energy.WriteLastMatrix(argv[1], (prefix.str()).c_str(), EnergySuffix)) return 1;
|
---|
184 | // forces
|
---|
185 | if (!Force.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ForcesSuffix)) return 1;
|
---|
186 | // hessian
|
---|
187 | if (!NoHessian)
|
---|
188 | if (!Hessian.WriteLastMatrix(argv[1], (prefix.str()).c_str(), HessianSuffix)) return 1;
|
---|
189 | // shieldings
|
---|
190 | if (periode != NULL) { // also look for PAS values
|
---|
191 | if (!Shielding.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ShieldingSuffix)) return 1;
|
---|
192 | if (!ShieldingPAS.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ShieldingPASSuffix)) return 1;
|
---|
193 | if (!Chi.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ChiSuffix)) return 1;
|
---|
194 | if (!ChiPAS.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ChiPASSuffix)) return 1;
|
---|
195 | }
|
---|
196 | }
|
---|
197 | // fragments
|
---|
198 | prefix.str(" ");
|
---|
199 | prefix << dir << EnergyFragmentSuffix;
|
---|
200 | if (!EnergyFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
201 | if (!NoHCorrection) {
|
---|
202 | prefix.str(" ");
|
---|
203 | prefix << dir << HcorrectionFragmentSuffix;
|
---|
204 | if (!HcorrectionFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
205 | }
|
---|
206 | prefix.str(" ");
|
---|
207 | prefix << dir << ForceFragmentSuffix;
|
---|
208 | if (!ForceFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
209 | if (!CreateDataFragment(EnergyFragments, KeySet, argv[1], FRAGMENTPREFIX ENERGYPERFRAGMENT, "fragment energy versus the Fragment No", "today", CreateEnergy)) return 1;
|
---|
210 | if (!NoHessian) {
|
---|
211 | prefix.str(" ");
|
---|
212 | prefix << dir << HessianFragmentSuffix;
|
---|
213 | if (!HessianFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
214 | }
|
---|
215 | if (periode != NULL) { // also look for PAS values
|
---|
216 | prefix.str(" ");
|
---|
217 | prefix << dir << ShieldingFragmentSuffix;
|
---|
218 | if (!ShieldingFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
219 | prefix.str(" ");
|
---|
220 | prefix << dir << ShieldingPASFragmentSuffix;
|
---|
221 | if (!ShieldingPASFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
222 | prefix.str(" ");
|
---|
223 | prefix << dir << ChiFragmentSuffix;
|
---|
224 | if (!ChiFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
225 | prefix.str(" ");
|
---|
226 | prefix << dir << ChiPASFragmentSuffix;
|
---|
227 | if (!ChiPASFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
|
---|
228 | }
|
---|
229 |
|
---|
230 | // write last matrices as fragments into central dir (not subdir as above), for analyzer to know index bounds
|
---|
231 | if (!Energy.WriteLastMatrix(argv[1], dir, EnergyFragmentSuffix)) return 1;
|
---|
232 | if (!NoHCorrection) Hcorrection.WriteLastMatrix(argv[1], dir, HcorrectionFragmentSuffix);
|
---|
233 | if (!Force.WriteLastMatrix(argv[1], dir, ForceFragmentSuffix)) return 1;
|
---|
234 | if (!NoHessian)
|
---|
235 | if (!Hessian.WriteLastMatrix(argv[1], dir, HessianFragmentSuffix)) return 1;
|
---|
236 | if (periode != NULL) { // also look for PAS values
|
---|
237 | if (!Shielding.WriteLastMatrix(argv[1], dir, ShieldingFragmentSuffix)) return 1;
|
---|
238 | if (!ShieldingPAS.WriteLastMatrix(argv[1], dir, ShieldingPASFragmentSuffix)) return 1;
|
---|
239 | if (!Chi.WriteLastMatrix(argv[1], dir, ChiFragmentSuffix)) return 1;
|
---|
240 | if (!ChiPAS.WriteLastMatrix(argv[1], dir, ChiPASFragmentSuffix)) return 1;
|
---|
241 | }
|
---|
242 |
|
---|
243 | // exit
|
---|
244 | delete(periode);
|
---|
245 | Free(&dir);
|
---|
246 | Log() << Verbose(0) << "done." << endl;
|
---|
247 | return 0;
|
---|
248 | };
|
---|
249 |
|
---|
250 | //============================ END ===========================
|
---|