Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/joiner.cpp

    r437922 r5bc4d0  
    22 *
    33 * Takes evaluated fragments (energy and forces) and by reading the factors files determines total energy
    4  * and each force for the whole molecule.
    5  *
     4 * and each force for the whole molecule. 
     5 *   
    66 */
    77
    88//============================ INCLUDES ===========================
    99
    10 #include "datacreator.hpp"
    11 #include "helpers.hpp"
    12 #include "parser.hpp"
    13 #include "periodentafel.hpp"
     10#include "datacreator.hpp" 
     11#include "helpers.hpp" 
     12#include "parser.hpp" 
     13#include "periodentafel.hpp" 
    1414
    1515//============================== MAIN =============================
     
    2828  ForceMatrix ShieldingFragments;
    2929  ForceMatrix ShieldingPASFragments;
    30   KeySetsContainer KeySet;
     30  EnergyMatrix Chi;
     31  EnergyMatrix ChiPAS;
     32  EnergyMatrix ChiFragments;
     33  EnergyMatrix ChiPASFragments;
     34  KeySetsContainer KeySet; 
    3135  stringstream prefix;
    3236  char *dir = NULL;
     
    3539  cout << "Joiner" << endl;
    3640  cout << "======" << endl;
    37 
     41 
    3842  // Get the command line options
    3943  if (argc < 3) {
     
    5256    periode->LoadPeriodentafel(argv[3]);
    5357  }
    54 
     58 
    5559  // Test the given directory
    5660  if (!TestParams(argc, argv))
    5761    return 1;
    58 
     62 
    5963  // +++++++++++++++++ PARSING +++++++++++++++++++++++++++++++
    60 
     64 
    6165  // ------------- Parse through all Fragment subdirs --------
    6266  if (!Energy.ParseFragmentMatrix(argv[1], dir, EnergySuffix, 0,0)) return 1;
     
    6670    if (!Shielding.ParseFragmentMatrix(argv[1], dir, ShieldingSuffix, 1, 0)) return 1;
    6771    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;
    6874  }
    6975
     
    7177  if (!Energy.ParseIndices()) return 1;
    7278  if (Hcorrected) Hcorrection.ParseIndices();
    73 
     79 
    7480  // ---------- Parse the Force indices into an array ---------------
    7581  if (!Force.ParseIndices(argv[1])) return 1;
     
    7985    if(!Shielding.ParseIndices(argv[1])) return 1;
    8086    if(!ShieldingPAS.ParseIndices(argv[1])) return 1;
     87    if(!Chi.ParseIndices()) return 1;
     88    if(!ChiPAS.ParseIndices()) return 1;
    8189  }
    8290
    8391  // ---------- Parse the KeySets into an array ---------------
    8492  if (!KeySet.ParseKeySets(argv[1], Force.RowCounter, Force.MatrixCounter)) return 1;
    85 
    8693  if (!KeySet.ParseManyBodyTerms()) return 1;
     94
    8795  if (!EnergyFragments.AllocateMatrix(Energy.Header, Energy.MatrixCounter, Energy.RowCounter, Energy.ColumnCounter)) return 1;
    8896  if (Hcorrected)  HcorrectionFragments.AllocateMatrix(Hcorrection.Header, Hcorrection.MatrixCounter, Hcorrection.RowCounter, Hcorrection.ColumnCounter);
     
    9199    if (!ShieldingFragments.AllocateMatrix(Shielding.Header, Shielding.MatrixCounter, Shielding.RowCounter, Shielding.ColumnCounter)) return 1;
    92100    if (!ShieldingPASFragments.AllocateMatrix(ShieldingPAS.Header, ShieldingPAS.MatrixCounter, ShieldingPAS.RowCounter, ShieldingPAS.ColumnCounter)) return 1;
    93   }
    94 
     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 
    95105  // ----------- Resetting last matrices (where full QM values are stored right now)
    96106  if(!Energy.SetLastMatrix(0., 0)) return 1;
     
    99109    if(!Shielding.SetLastMatrix(0., 2)) return 1;
    100110    if(!ShieldingPAS.SetLastMatrix(0., 2)) return 1;
     111    if(!Chi.SetLastMatrix(0., 2)) return 1;
     112    if(!ChiPAS.SetLastMatrix(0., 2)) return 1;
    101113  }
    102114
     
    108120    cout << "Summing energy of order " << BondOrder+1 << " ..." << endl;
    109121    if (!EnergyFragments.SumSubManyBodyTerms(Energy, KeySet, BondOrder)) return 1;
    110     if (Hcorrected) {
     122    if (Hcorrected) { 
    111123      HcorrectionFragments.SumSubManyBodyTerms(Hcorrection, KeySet, BondOrder);
    112124      if (!Energy.SumSubEnergy(EnergyFragments, &HcorrectionFragments, KeySet, BondOrder, 1.)) return 1;
    113125      if (Hcorrected) Hcorrection.SumSubEnergy(HcorrectionFragments, NULL, KeySet, BondOrder, 1.);
    114     } else
     126    } else 
    115127      if (!Energy.SumSubEnergy(EnergyFragments, NULL, KeySet, BondOrder, 1.)) return 1;
    116128    // --------- sum up Forces --------------------
     
    119131    if (!Force.SumSubForces(ForceFragments, KeySet, BondOrder, 1.)) return 1;
    120132    if (periode != NULL) { // also look for PAS values
    121       cout << "Summing shieldings of order " << BondOrder+1 << " ..." << endl;
     133      cout << "Summing shieldings and susceptibilities of order " << BondOrder+1 << " ..." << endl;
    122134      if (!ShieldingFragments.SumSubManyBodyTerms(Shielding, KeySet, BondOrder)) return 1;
    123135      if (!Shielding.SumSubForces(ShieldingFragments, KeySet, BondOrder, 1.)) return 1;
    124136      if (!ShieldingPASFragments.SumSubManyBodyTerms(ShieldingPAS, KeySet, BondOrder)) return 1;
    125137      if (!ShieldingPAS.SumSubForces(ShieldingPASFragments, KeySet, BondOrder, 1.)) return 1;
     138      if (!ChiFragments.SumSubManyBodyTerms(Chi, KeySet, BondOrder)) return 1;
     139      if (!Chi.SumSubEnergy(ChiFragments, NULL, KeySet, BondOrder, 1.)) return 1;
     140      if (!ChiPASFragments.SumSubManyBodyTerms(ChiPAS, KeySet, BondOrder)) return 1;
     141      if (!ChiPAS.SumSubEnergy(ChiPASFragments, NULL,KeySet, BondOrder, 1.)) return 1;
    126142    }
    127143
     
    138154      if (!Shielding.WriteLastMatrix(argv[1], (prefix.str()).c_str(), ShieldingSuffix)) return 1;
    139155      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;
    140158    }
    141159  }
     
    160178    prefix << dir << ShieldingPASFragmentSuffix;
    161179    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;
    162186  }
    163187
     
    169193    if (!Shielding.WriteLastMatrix(argv[1], dir, ShieldingFragmentSuffix)) return 1;
    170194    if (!ShieldingPAS.WriteLastMatrix(argv[1], dir, ShieldingPASFragmentSuffix)) return 1;
    171   }
    172 
    173   // exit
     195    if (!Chi.WriteLastMatrix(argv[1], dir, ChiFragmentSuffix)) return 1;
     196    if (!ChiPAS.WriteLastMatrix(argv[1], dir, ChiPASFragmentSuffix)) return 1;
     197  }
     198
     199  // exit 
    174200  delete(periode);
    175201  Free((void **)&dir, "main: *dir");
Note: See TracChangeset for help on using the changeset viewer.