Changeset 47d041 for src/Dynamics
- Timestamp:
- Nov 3, 2011, 7:44:01 PM (13 years ago)
- Branches:
- 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
- Children:
- 41a467
- Parents:
- 50e4e5
- git-author:
- Frederik Heber <heber@…> (10/27/11 11:53:58)
- git-committer:
- Frederik Heber <heber@…> (11/03/11 19:44:01)
- Location:
- src/Dynamics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Dynamics/MinimiseConstrainedPotential.cpp
r50e4e5 r47d041 73 73 PenaltyConstants[2] = 1e+7; // just a huge penalty 74 74 // generate the distance list 75 DoLog(1) && (Log() << Verbose(1) << "Allocating, initializting and filling the distance list ... " << endl);75 LOG(1, "Allocating, initializting and filling the distance list ... "); 76 76 FillDistanceList(); 77 77 … … 80 80 81 81 // make the PermutationMap injective by checking whether we have a non-zero constants[2] term in it 82 DoLog(1) && (Log() << Verbose(1) << "Making the PermutationMap injective ... " << endl);82 LOG(1, "Making the PermutationMap injective ... "); 83 83 MakeInjectivePermutation(); 84 84 DoubleList.clear(); 85 85 86 86 // argument minimise the constrained potential in this injective PermutationMap 87 DoLog(1) && (Log() << Verbose(1) << "Argument minimising the PermutationMap." << endl);87 LOG(1, "Argument minimising the PermutationMap."); 88 88 OldPotential = 1e+10; 89 89 round = 0; 90 90 do { 91 DoLog(2) && (Log() << Verbose(2) << "Starting round " << ++round << ", at current potential " << OldPotential << " ... " << endl);91 LOG(2, "Starting round " << ++round << ", at current potential " << OldPotential << " ... "); 92 92 OlderPotential = OldPotential; 93 93 molecule::atomSet::const_iterator iter; … … 104 104 break; 105 105 } 106 //L og() << Verbose(2) << "Current Walker: " << *(*iter) << " with old/next candidate " << *Sprinter << "/" << *DistanceIterators[(*iter)]->second << "." << endl;106 //LOG(2, "Current Walker: " << *(*iter) << " with old/next candidate " << *Sprinter << "/" << *DistanceIterators[(*iter)]->second << "."); 107 107 // find source of the new target 108 108 molecule::atomSet::const_iterator runner = atoms.begin(); 109 109 for (; runner != atoms.end(); ++runner) { // find the source whose toes we might be stepping on (Walker's new target should be in use by another already) 110 110 if (PermutationMap[(*runner)] == DistanceIterators[(*iter)]->second) { 111 //L og() << Verbose(2) << "Found the corresponding owner " << *(*runner) << " to " << *PermutationMap[(*runner)] << "." << endl;111 //LOG(2, "Found the corresponding owner " << *(*runner) << " to " << *PermutationMap[(*runner)] << "."); 112 112 break; 113 113 } … … 120 120 break; 121 121 if (Rider != DistanceList[(*runner)].end()) { // if we have found one 122 //L og() << Verbose(2) << "Current Other: " << *(*runner) << " with old/next candidate " << *PermutationMap[(*runner)] << "/" << *Rider->second << "." << endl;122 //LOG(2, "Current Other: " << *(*runner) << " with old/next candidate " << *PermutationMap[(*runner)] << "/" << *Rider->second << "."); 123 123 // exchange both 124 124 PermutationMap[(*iter)] = DistanceIterators[(*iter)]->second; // put next farther distance into PermutationMap … … 127 127 PrintPermutationMap(); 128 128 // calculate the new potential 129 //L og() << Verbose(2) << "Checking new potential ..." << endl;129 //LOG(2, "Checking new potential ..."); 130 130 Potential = ConstrainedPotential(); 131 131 if (Potential > OldPotential) { // we made everything worse! Undo ... 132 //L og() << Verbose(3) << "Nay, made the potential worse: " << Potential << " vs. " << OldPotential << "!" << endl;133 //L og() << Verbose(3) << "Setting " << *(*runner) << "'s source to " << *DistanceIterators[(*runner)]->second << "." << endl;132 //LOG(3, "Nay, made the potential worse: " << Potential << " vs. " << OldPotential << "!"); 133 //LOG(3, "Setting " << *(*runner) << "'s source to " << *DistanceIterators[(*runner)]->second << "."); 134 134 // Undo for Runner (note, we haven't moved the iteration yet, we may use this) 135 135 PermutationMap[(*runner)] = DistanceIterators[(*runner)]->second; 136 136 // Undo for Walker 137 137 DistanceIterators[(*iter)] = Strider; // take next farther distance target 138 //L og() << Verbose(3) << "Setting " << *(*iter) << "'s source to " << *DistanceIterators[(*iter)]->second << "." << endl;138 //LOG(3, "Setting " << *(*iter) << "'s source to " << *DistanceIterators[(*iter)]->second << "."); 139 139 PermutationMap[(*iter)] = DistanceIterators[(*iter)]->second; 140 140 } else { 141 141 DistanceIterators[(*runner)] = Rider; // if successful also move the pointer in the iterator list 142 DoLog(3) && (Log() << Verbose(3) << "Found a better permutation, new potential is " << Potential << " vs." << OldPotential << "." << endl);142 LOG(3, "Found a better permutation, new potential is " << Potential << " vs." << OldPotential << "."); 143 143 OldPotential = Potential; 144 144 } 145 145 if (Potential > PenaltyConstants[2]) { 146 DoeLog(1) && (eLog()<< Verbose(1) << "The two-step permutation procedure did not maintain injectivity!" << endl);146 ELOG(1, "The two-step permutation procedure did not maintain injectivity!"); 147 147 exit(255); 148 148 } 149 //Log() << Verbose(0) << endl;150 149 } else { 151 DoeLog(1) && (eLog()<< Verbose(1) << **runner << " was not the owner of " << *Sprinter << "!" << endl);150 ELOG(1, **runner << " was not the owner of " << *Sprinter << "!"); 152 151 exit(255); 153 152 } … … 159 158 } while (++iter != atoms.end()); 160 159 } while ((OlderPotential - OldPotential) > 1e-3); 161 DoLog(1) && (Log() << Verbose(1) << "done." << endl);160 LOG(1, "done."); 162 161 163 162 … … 181 180 DoubleList[DistanceList[(*iter)].begin()->second]++; // increase this target's source count (>1? not injective) 182 181 DistanceIterators[(*iter)] = DistanceList[(*iter)].begin(); // and remember which one we picked 183 DoLog(2) && (Log() << Verbose(2) << **iter << " starts with distance " << DistanceList[(*iter)].begin()->first << "." << endl);182 LOG(2, **iter << " starts with distance " << DistanceList[(*iter)].begin()->first << "."); 184 183 } 185 184 }; … … 192 191 193 192 if (atoms.empty()) { 194 eLog() << Verbose(1) << "Molecule is empty." << endl;193 ELOG(1, "Molecule is empty."); 195 194 return; 196 195 } … … 209 208 // now each single entry in the DoubleList should be <=1 210 209 if (DoubleList[*iter] > 1) { 211 DoeLog(0) && (eLog()<< Verbose(0) << "Failed to create an injective PermutationMap!" << endl);210 ELOG(0, "Failed to create an injective PermutationMap!"); 212 211 performCriticalExit(); 213 212 } 214 213 } 215 DoLog(1) && (Log() << Verbose(1) << "done." << endl);214 LOG(1, "done."); 216 215 }; 217 216 … … 227 226 doubles++; 228 227 if (doubles >0) 229 DoLog(2) && (Log() << Verbose(2) << "Found " << doubles << " Doubles." << endl);228 LOG(2, "Found " << doubles << " Doubles."); 230 229 return doubles; 231 230 }; … … 247 246 } 248 247 if (doubles >0) 249 DoLog(2) && (Log() << Verbose(2) << "Found " << doubles << " Doubles." << endl);250 // L og() << Verbose(2) << zeile1.str() << endl << zeile2.str() << endl;248 LOG(2, "Found " << doubles << " Doubles."); 249 // LOG(2, zeile1.str() << endl << zeile2.str()); 251 250 }; 252 251 … … 263 262 tmp *= IsAngstroem ? 1. : 1./AtomicLengthToAngstroem; 264 263 result += PenaltyConstants[0] * tmp; 265 //L og() << Verbose(4) << "Adding " << tmp*constants[0] << "." << endl;264 //LOG(4, "Adding " << tmp*constants[0] << "."); 266 265 267 266 // second term: sum of distances to other trajectories … … 292 291 DistanceIterators[Walker] = NewBase; 293 292 OldPotential = Potential; 294 DoLog(3) && (Log() << Verbose(3) << "Found a new permutation, new potential is " << OldPotential << "." << endl);293 LOG(3, "Found a new permutation, new potential is " << OldPotential << "."); 295 294 } 296 295 } … … 303 302 for (molecule::atomSet::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) { 304 303 if ((PermutationMap[Walker] == PermutationMap[(*iter)]) && (Walker < (*iter))) { 305 // atom *Sprinter = PermutationMap[Walker->nr]; 306 // Log() << Verbose(0) << *Walker << " and " << *(*iter) << " are heading to the same target at "; 307 // Log() << Verbose(0) << Sprinter->getPosition(endstep); 308 // Log() << Verbose(0) << ", penalting." << endl; 304 // atom *Sprinter = PermutationMap[Walker->nr]; 305 // if (DoLog(0)) { 306 // std::stringstream output; 307 // output << *Walker << " and " << *(*iter) << " are heading to the same target at "; 308 // output << Sprinter->getPosition(endstep); 309 // output << ", penalting."; 310 // LOG(0, output.str()); 311 // } 309 312 result += PenaltyConstants[2]; 310 //L og() << Verbose(4) << "Adding " << constants[2] << "." << endl;313 //LOG(4, "INFO: Adding " << constants[2] << "."); 311 314 } 312 315 } … … 350 353 tmp = trajectory2.Norm(); // remaining norm is distance 351 354 } else if ((fabs(trajectory1.ScalarProduct(trajectory2)/Norm1/Norm2) - 1.) < MYEPSILON) { // check whether they're linear dependent 352 // Log() << Verbose(3) << "Both trajectories of " << *Walker << " and " << *Runner << " are linear dependent: ";353 // Log() << Verbose(0) << trajectory1;354 // Log() << Verbose(0) << " and ";355 // Log() << Verbose(0) << trajectory2;355 // std::stringstream output; 356 // output << "Both trajectories of " << *Walker << " and " << *Runner << " are linear dependent: "; 357 // output << trajectory1 << " and " << trajectory2; 358 // LOG(3, output.str()); 356 359 tmp = Walker->getPositionAtStep(startstep).distance((*iter)->getPositionAtStep(startstep)); 357 // Log() << Verbose(0) << " with distance " << tmp << "." << endl;360 // LOG(0, " with distance " << tmp << "."); 358 361 } else { // determine distance by finding minimum distance 359 // Log() << Verbose(3) << "Both trajectories of " << *Walker << " and " << *(*iter) << " are linear independent "; 360 // Log() << Verbose(0) << endl; 361 // Log() << Verbose(0) << "First Trajectory: "; 362 // Log() << Verbose(0) << trajectory1 << endl; 363 // Log() << Verbose(0) << "Second Trajectory: "; 364 // Log() << Verbose(0) << trajectory2 << endl; 362 // std::stringstream output; 363 // output "Both trajectories of " << *Walker << " and " << *(*iter) << " are linear independent -- "; 364 // output "First Trajectory: " << trajectory1 << ". Second Trajectory: " << trajectory2); 365 // LOG(3, output.str()); 365 366 // determine normal vector for both 366 367 normal = Plane(trajectory1, trajectory2,0).getNormal(); 367 368 // print all vectors for debugging 368 // Log() << Verbose(0) << "Normal vector in between: "; 369 // Log() << Verbose(0) << normal << endl; 369 // LOG(3, "INFO: Normal vector in between: " << normal); 370 370 // setup matrix 371 371 for (int i=NDIM;i--;) { … … 379 379 // distance from last component 380 380 tmp = gsl_vector_get(x,2); 381 // Log() << Verbose(0) << " with distance " << tmp << "." << endl;381 // LOG(0, " with distance " << tmp << "."); 382 382 // test whether we really have the intersection (by checking on c_1 and c_2) 383 383 trajectory1.Scale(gsl_vector_get(x,0)); … … 387 387 - (Walker->getPositionAtStep(startstep) + trajectory1); 388 388 if (TestVector.Norm() < MYEPSILON) { 389 // Log() << Verbose(2) << "Test: ok.\tDistance of " << tmp << " is correct." << endl;389 // LOG(2, "Test: ok.\tDistance of " << tmp << " is correct."); 390 390 } else { 391 // Log() << Verbose(2) << "Test: failed.\tIntersection is off by "; 392 // Log() << Verbose(0) << TestVector; 393 // Log() << Verbose(0) << "." << endl; 391 // LOG(2, "Test: failed.\tIntersection is off by " << TestVector << "."); 394 392 } 395 393 } … … 398 396 if (fabs(tmp) > MYEPSILON) { 399 397 result += PenaltyConstants[1] * 1./tmp; 400 //L og() << Verbose(4) << "Adding " << 1./tmp*constants[1] << "." << endl;398 //LOG(4, "Adding " << 1./tmp*constants[1] << "."); 401 399 } 402 400 } … … 409 407 410 408 /// evaluate forces (only the distance to target dependent part) with the final PermutationMap 411 DoLog(1) && (Log() << Verbose(1) << "Calculating forces and adding onto ForceMatrix ... " << endl);409 LOG(1, "Calculating forces and adding onto ForceMatrix ... "); 412 410 for(molecule::atomSet::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) { 413 411 atom *Sprinter = PermutationMap[(*iter)]; … … 416 414 Force->Matrix[0][(*iter)->getNr()][5+i] += 2.*constant*sqrt((*iter)->getPositionAtStep(startstep).distance(Sprinter->getPositionAtStep(endstep))); 417 415 } 418 DoLog(1) && (Log() << Verbose(1) << "done." << endl);419 }; 420 416 LOG(1, "done."); 417 }; 418 -
src/Dynamics/VerletForceIntegration.hpp
r50e4e5 r47d041 65 65 std::ifstream input(file); 66 66 if ((input.good()) && (!Force.ParseMatrix(input, 0,0,0))) { 67 DoeLog(0) && (eLog()<< Verbose(0) << "Could not parse Force Matrix file " << file << "." << endl);67 ELOG(0, "Could not parse Force Matrix file " << file << "."); 68 68 performCriticalExit(); 69 69 return false; … … 71 71 input.close(); 72 72 if (Force.RowCounter[0] != AtomCount) { 73 DoeLog(0) && (eLog()<< Verbose(0) << "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << atoms.size() << "." << endl);73 ELOG(0, "Mismatch between number of atoms in file " << Force.RowCounter[0] << " and in molecule " << atoms.size() << "."); 74 74 performCriticalExit(); 75 75 return false; … … 135 135 ActualTemp = atoms.totalTemperatureAtStep(MDSteps+1); 136 136 LOG(3, "INFO: New temperature after thermostat is " << ActualTemp); 137 DoLog(1) && (Log() << Verbose(1) << "Kinetic energy is " << ekin << "." << endl);137 LOG(1, "Kinetic energy is " << ekin << "."); 138 138 139 139 // next step
Note:
See TracChangeset
for help on using the changeset viewer.