source: src/joiner.cpp@ 674220

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 674220 was 674220, 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: 9.7 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 Hcorrection;
22 ForceMatrix Force;
23 EnergyMatrix EnergyFragments;
24 EnergyMatrix HcorrectionFragments;
25 ForceMatrix ForceFragments;
26 ForceMatrix Shielding;
27 ForceMatrix ShieldingPAS;
28 ForceMatrix ShieldingFragments;
29 ForceMatrix ShieldingPASFragments;
30 EnergyMatrix Chi;
31 EnergyMatrix ChiPAS;
32 EnergyMatrix ChiFragments;
33 EnergyMatrix ChiPASFragments;
34 KeySetsContainer KeySet;
35 stringstream prefix;
36 char *dir = NULL;
37 bool Hcorrected = true;
38
39 cout << "Joiner" << endl;
40 cout << "======" << endl;
41
42 // Get the command line options
43 if (argc < 3) {
44 cout << "Usage: " << argv[0] << " <inputdir> <prefix> [elementsdb]" << endl;
45 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;
46 cout << "<prefix>\tprefix of energy and forces file." << endl;
47 cout << "[elementsdb]\tpath to elements database, needed for shieldings." << endl;
48 return 1;
49 } else {
50 dir = (char *) Malloc(sizeof(char)*(strlen(argv[2])+2), "main: *dir");
51 strcpy(dir, "/");
52 strcat(dir, argv[2]);
53 }
54 if (argc > 3) {
55 periode = new periodentafel;
56 periode->LoadPeriodentafel(argv[3]);
57 }
58
59 // Test the given directory
60 if (!TestParams(argc, argv))
61 return 1;
62
63 // +++++++++++++++++ PARSING +++++++++++++++++++++++++++++++
64
65 // ------------- Parse through all Fragment subdirs --------
66 if (!Energy.ParseFragmentMatrix(argv[1], dir, EnergySuffix, 0,0)) return 1;
67 Hcorrected = Hcorrection.ParseFragmentMatrix(argv[1], "", HCORRECTIONSUFFIX, 0,0);
68 if (!Force.ParseFragmentMatrix(argv[1], dir, ForcesSuffix, 0,0)) return 1;
69 if (periode != NULL) { // also look for PAS values
70 if (!Shielding.ParseFragmentMatrix(argv[1], dir, ShieldingSuffix, 1, 0)) return 1;
71 if (!ShieldingPAS.ParseFragmentMatrix(argv[1], dir, ShieldingPASSuffix, 1, 0)) return 1;
72 if (!Chi.ParseFragmentMatrix(argv[1], dir, ChiSuffix, 1, 0)) return 1;
73 if (!ChiPAS.ParseFragmentMatrix(argv[1], dir, ChiPASSuffix, 1, 0)) return 1;
74 }
75
76 // ---------- Parse the TE Factors into an array -----------------
77 if (!Energy.ParseIndices()) return 1;
78 if (Hcorrected) Hcorrection.ParseIndices();
79
80 // ---------- Parse the Force indices into an array ---------------
81 if (!Force.ParseIndices(argv[1])) return 1;
82
83 // ---------- Parse the shielding indices into an array ---------------
84 if (periode != NULL) { // also look for PAS values
85 if(!Shielding.ParseIndices(argv[1])) return 1;
86 if(!ShieldingPAS.ParseIndices(argv[1])) return 1;
87 if(!Chi.ParseIndices(argv[1])) return 1;
88 if(!ChiPAS.ParseIndices(argv[1])) return 1;
89 }
90
91 // ---------- Parse the KeySets into an array ---------------
92 if (!KeySet.ParseKeySets(argv[1], Force.RowCounter, Force.MatrixCounter)) return 1;
93 if (!KeySet.ParseManyBodyTerms()) return 1;
94
95 if (!EnergyFragments.AllocateMatrix(Energy.Header, Energy.MatrixCounter, Energy.RowCounter, Energy.ColumnCounter)) return 1;
96 if (Hcorrected) HcorrectionFragments.AllocateMatrix(Hcorrection.Header, Hcorrection.MatrixCounter, Hcorrection.RowCounter, Hcorrection.ColumnCounter);
97 if (!ForceFragments.AllocateMatrix(Force.Header, Force.MatrixCounter, Force.RowCounter, Force.ColumnCounter)) return 1;
98 if (periode != NULL) { // also look for PAS values
99 if (!ShieldingFragments.AllocateMatrix(Shielding.Header, Shielding.MatrixCounter, Shielding.RowCounter, Shielding.ColumnCounter)) return 1;
100 if (!ShieldingPASFragments.AllocateMatrix(ShieldingPAS.Header, ShieldingPAS.MatrixCounter, ShieldingPAS.RowCounter, ShieldingPAS.ColumnCounter)) return 1;
101 if (!ChiFragments.AllocateMatrix(Chi.Header, Chi.MatrixCounter, Chi.RowCounter, Chi.ColumnCounter)) return 1;
102 if (!ChiPASFragments.AllocateMatrix(ChiPAS.Header, ChiPAS.MatrixCounter, ChiPAS.RowCounter, ChiPAS.ColumnCounter)) return 1;
103 }
104
105 // ----------- Resetting last matrices (where full QM values are stored right now)
106 if(!Energy.SetLastMatrix(0., 0)) return 1;
107 if(!Force.SetLastMatrix(0., 2)) return 1;
108 if (periode != NULL) { // also look for PAS values
109 if(!Shielding.SetLastMatrix(0., 2)) return 1;
110 if(!ShieldingPAS.SetLastMatrix(0., 2)) return 1;
111 if(!Chi.SetLastMatrix(0., 2)) return 1;
112 if(!ChiPAS.SetLastMatrix(0., 2)) return 1;
113 }
114
115 // +++++++++++++++++ SUMMING +++++++++++++++++++++++++++++++
116
117 // --------- sum up and write for each order----------------
118 for (int BondOrder=0;BondOrder<KeySet.Order;BondOrder++) {
119 // --------- sum up energy --------------------
120 cout << "Summing energy of order " << BondOrder+1 << " ..." << endl;
121 if (!EnergyFragments.SumSubManyBodyTerms(Energy, KeySet, BondOrder)) return 1;
122 if (Hcorrected) {
123 HcorrectionFragments.SumSubManyBodyTerms(Hcorrection, KeySet, BondOrder);
124 if (!Energy.SumSubEnergy(EnergyFragments, &HcorrectionFragments, KeySet, BondOrder, 1.)) return 1;
125 if (Hcorrected) Hcorrection.SumSubEnergy(HcorrectionFragments, NULL, KeySet, BondOrder, 1.);
126 } else
127 if (!Energy.SumSubEnergy(EnergyFragments, NULL, KeySet, BondOrder, 1.)) return 1;
128 // --------- sum up Forces --------------------
129 cout << "Summing forces of order " << BondOrder+1 << " ..." << endl;
130 if (!ForceFragments.SumSubManyBodyTerms(Force, KeySet, BondOrder)) return 1;
131 if (!Force.SumSubForces(ForceFragments, KeySet, BondOrder, 1.)) return 1;
132 if (periode != NULL) { // also look for PAS values
133 cout << "Summing shieldings and susceptibilities of order " << BondOrder+1 << " ..." << endl;
134 if (!ShieldingFragments.SumSubManyBodyTerms(Shielding, KeySet, BondOrder)) return 1;
135 if (!Shielding.SumSubForces(ShieldingFragments, KeySet, BondOrder, 1.)) return 1;
136 if (!ShieldingPASFragments.SumSubManyBodyTerms(ShieldingPAS, KeySet, BondOrder)) return 1;
137 if (!ShieldingPAS.SumSubForces(ShieldingPASFragments, KeySet, BondOrder, 1.)) return 1;
138 if (!ChiFragments.SumSubManyBodyTerms(Chi, KeySet, BondOrder)) return 1;
139 if (!Chi.SumSubForces(ChiFragments, KeySet, BondOrder, 1.)) return 1;
140 if (!ChiPASFragments.SumSubManyBodyTerms(ChiPAS, KeySet, BondOrder)) return 1;
141 if (!ChiPAS.SumSubForces(ChiPASFragments, KeySet, BondOrder, 1.)) return 1;
142 }
143
144 // --------- write the energy and forces file --------------------
145 prefix.str(" ");
146 prefix << dir << OrderSuffix << (BondOrder+1);
147 cout << "Writing files " << argv[1] << prefix.str() << ". ..." << endl;
148 // energy
149 if (!Energy.WriteLastMatrix(argv[1], (prefix.str()).c_str(), EnergySuffix)) return 1;
150 // forces
151 if (!Force.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ForcesSuffix)) return 1;
152 // shieldings
153 if (periode != NULL) { // also look for PAS values
154 if (!Shielding.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ShieldingSuffix)) return 1;
155 if (!ShieldingPAS.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ShieldingPASSuffix)) return 1;
156 if (!Chi.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ChiSuffix)) return 1;
157 if (!ChiPAS.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ChiPASSuffix)) return 1;
158 }
159 }
160 // fragments
161 prefix.str(" ");
162 prefix << dir << EnergyFragmentSuffix;
163 if (!EnergyFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
164 if (Hcorrected) {
165 prefix.str(" ");
166 prefix << dir << HcorrectionFragmentSuffix;
167 if (!HcorrectionFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
168 }
169 prefix.str(" ");
170 prefix << dir << ForceFragmentSuffix;
171 if (!ForceFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
172 if (!CreateDataFragment(EnergyFragments, KeySet, argv[1], FRAGMENTPREFIX ENERGYPERFRAGMENT, "fragment energy versus the Fragment No", "today", CreateEnergy)) return 1;
173 if (periode != NULL) { // also look for PAS values
174 prefix.str(" ");
175 prefix << dir << ShieldingFragmentSuffix;
176 if (!ShieldingFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
177 prefix.str(" ");
178 prefix << dir << ShieldingPASFragmentSuffix;
179 if (!ShieldingPASFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
180 prefix.str(" ");
181 prefix << dir << ChiFragmentSuffix;
182 if (!ChiFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
183 prefix.str(" ");
184 prefix << dir << ChiPASFragmentSuffix;
185 if (!ChiPASFragments.WriteTotalFragments(argv[1], (prefix.str()).c_str())) return 1;
186 }
187
188 // write last matrices as fragments into central dir (not subdir as above), for analyzer to know index bounds
189 if (!Energy.WriteLastMatrix(argv[1], dir, EnergyFragmentSuffix)) return 1;
190 if (Hcorrected) Hcorrection.WriteLastMatrix(argv[1], dir, HcorrectionFragmentSuffix);
191 if (!Force.WriteLastMatrix(argv[1], dir, ForceFragmentSuffix)) return 1;
192 if (periode != NULL) { // also look for PAS values
193 if (!Shielding.WriteLastMatrix(argv[1], dir, ShieldingFragmentSuffix)) return 1;
194 if (!ShieldingPAS.WriteLastMatrix(argv[1], dir, ShieldingPASFragmentSuffix)) return 1;
195 if (!Chi.WriteLastMatrix(argv[1], dir, ChiFragmentSuffix)) return 1;
196 if (!ChiPAS.WriteLastMatrix(argv[1], dir, ChiPASFragmentSuffix)) return 1;
197 }
198
199 // exit
200 delete(periode);
201 Free((void **)&dir, "main: *dir");
202 cout << "done." << endl;
203 return 0;
204};
205
206//============================ END ===========================
Note: See TracBrowser for help on using the repository browser.