source: molecuilder/src/joiner.cpp@ 25f5089

Last change on this file since 25f5089 was 348b6a, checked in by Frederik Heber <heber@…>, 17 years ago

Implemented analysis of magnetic susceptibilites.

This is very similar to Sigma(PAS), however not with ForceMatrix class but with EnergyMatrix. This is still not finished and yet not working. However, it does not impact on other functions of joiner or analyzer.

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