- Timestamp:
- May 18, 2016, 9:55:42 PM (9 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, 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_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, 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:
- 7debff
- Parents:
- 9ff818
- git-author:
- Frederik Heber <heber@…> (03/03/16 18:12:03)
- git-committer:
- Frederik Heber <heber@…> (05/18/16 21:55:42)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/FragmentationAction/FragmentationAutomationAction.cpp
r9ff818 rf0dea0 114 114 } 115 115 116 template <class ResultClass> 117 std::pair<double, double> getResiduals(const ResultClass &_result) 118 { return std::pair<double, double>(0.,0.); } 119 120 std::pair<double, double> getResiduals(const MPQCData &_result) 121 { return std::make_pair(_result.accuracy, _result.desired_accuracy); } 122 123 std::pair<double, double> getResiduals(const VMGData &_result) 124 { return std::make_pair(_result.relative_residual, _result.precision); } 125 126 template <class ResultClass> 127 bool checkResults(const typename std::map<JobId_t, ResultClass> &_results) 128 { 129 bool result = true; 130 for (typename std::map<JobId_t, ResultClass>::const_iterator iter = _results.begin(); 131 iter != _results.end(); ++iter) { 132 std::pair<double, double> residuals = getResiduals(iter->second); 133 if (residuals.second != 0.) { 134 if (residuals.first >= residuals.second) { 135 ELOG(1, "Fragment Job " << iter->first << " converged to " << residuals.first 136 << " instead of " << residuals.second); 137 result = false; 138 } 139 } else { 140 LOG(4, "DEBUG: Not checking accuracy because desired precision not given."); 141 } 142 } 143 return result; 144 } 145 116 146 ActionState::ptr FragmentationFragmentationAutomationAction::performCall() { 117 147 boost::asio::io_service io_service; … … 165 195 166 196 mpqccontroller.getResults(shortrangedata); 167 if (mpqccontroller.getExitflag() != 0) 168 return Action::failure; 197 if (!checkResults(shortrangedata)) { 198 ELOG(1, "At least one of the fragments' energy could not be properly minimized."); 199 return Action::failure; 200 } 201 if (mpqccontroller.getExitflag() != 0) { 202 ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag."); 203 return Action::failure; 204 } 169 205 170 206 Exitflag += mpqccontroller.getExitflag(); … … 196 232 mpqccontroller.run(); 197 233 stop(); 198 if (mpqccontroller.getExitflag() != 0) 199 return Action::failure; 234 if (mpqccontroller.getExitflag() != 0) { 235 ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag before getting results."); 236 return Action::failure; 237 } 200 238 201 239 // get back the results and place them in shortrangedata … … 204 242 "FragmentationFragmentationAutomationAction::performCall() - number of converted results " 205 243 +toString(shortrangedata.size())+" and number of jobs "+toString(NumberJobs)+ " differ."); 206 if (mpqccontroller.getExitflag() != 0) 207 return Action::failure; 244 if (!checkResults(shortrangedata)) { 245 ELOG(1, "At least one of the fragments' energy could not be properly minimized."); 246 return Action::failure; 247 } 248 if (mpqccontroller.getExitflag() != 0) { 249 ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag after getting results."); 250 return Action::failure; 251 } 208 252 209 253 Exitflag += mpqccontroller.getExitflag(); … … 245 289 const size_t NoJobs = shortrangedata.size()+full_sample.size(); 246 290 vmgcontroller.requestIds(2*NoJobs); 247 if (vmgcontroller.getExitflag() != 0) 248 return Action::failure; 291 if (vmgcontroller.getExitflag() != 0) { 292 ELOG(1, "VMGFragmentController returned non-zero exit flag on requesting long-range ids."); 293 return Action::failure; 294 } 249 295 250 296 // Phase Five a: create VMGJobs for electronic charge distribution … … 269 315 // Phase Six a: calculate result 270 316 vmgcontroller.waitforResults(NoJobs); 271 if (vmgcontroller.getExitflag() != 0) 272 return Action::failure; 317 if (vmgcontroller.getExitflag() != 0) { 318 ELOG(1, "VMGFragmentController returned non-zero exit flag before getting results."); 319 return Action::failure; 320 } 273 321 vmgcontroller.getResults(longrangedata); 274 322 ASSERT( NoJobs == longrangedata.size(), … … 276 324 +toString(full_sample.size())+"="+toString(NoJobs) 277 325 +" and first VMGresults "+toString(longrangedata.size())+" don't match."); 326 if (!checkResults(longrangedata)) { 327 ELOG(1, "At least one of the fragments' electronic long-range potential could not be properly minimized."); 328 return Action::failure; 329 } 278 330 Exitflag += vmgcontroller.getExitflag(); 279 331 … … 308 360 +toString(full_sample.size())+"="+toString(NoJobs) 309 361 +" and second VMGresults "+toString(longrangedata_both.size())+" don't match."); 310 if (vmgcontroller.getExitflag() != 0) 362 if (!checkResults(longrangedata_both)) { 363 ELOG(1, "At least one of the fragments' nuclei long-range potential could not be properly minimized."); 311 364 return Action::failure; 365 } 366 if (vmgcontroller.getExitflag() != 0) { 367 ELOG(1, "VMGFragmentController returned non-zero exit flag after getting results."); 368 return Action::failure; 369 } 312 370 Exitflag += vmgcontroller.getExitflag(); 313 371
Note:
See TracChangeset
for help on using the changeset viewer.