source: src/Jobs/MPQCCommandJob.cpp@ a10cc0

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 a10cc0 was a10cc0, checked in by Frederik Heber <heber@…>, 12 years ago

Moved all Fragmentation/Automation into new subpackage JobMarket.

  • adapted most files (which have been copied from sub-package LinearAlgebra).
  • adapted all Makefile.ams to splitting.
  • unit tests are ok.
  • there is one very strange issue: Whereas for LinearAlgebra in its header files a prefix of "LinearAlgebra/" is _not_ required (and even has been removed when LinearAlgebra was placed in its own folder), the same does not hold for "JobMarket/". Here, we have to use both includes, one with the prefix and one without.
  • NOTE: We force libJobMarket to be linked with c++ linker via dummy.cxx file.
  • Removed all reference to FRAGMENT... in JobMarket's Makefile.am.
  • Property mode set to 100644
File size: 4.8 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2012 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * MPQCCommandJob.cpp
10 *
11 * Created on: Feb 05, 2012
12 * Author: heber
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/MemDebug.hpp"
21
22// include headers that implement a archive in simple text format
23// otherwise BOOST_CLASS_EXPORT_IMPLEMENT has no effect
24#include <boost/archive/text_oarchive.hpp>
25#include <boost/archive/text_iarchive.hpp>
26
27#include "MPQCCommandJob.hpp"
28
29#include <boost/algorithm/string.hpp>
30#include <boost/lexical_cast.hpp>
31#include <boost/tokenizer.hpp>
32#include <sstream>
33
34#include "CodePatterns/Assert.hpp"
35#include "CodePatterns/Log.hpp"
36
37const std::string MPQCCommandJob::keyword_hartreefock_energy("total scf energy");
38const std::string MPQCCommandJob::keyword_moellerplesset_energy("MP2 energy [au]:");
39const std::string MPQCCommandJob::keyword_hartreefock_forces("Total Gradient");
40const std::string MPQCCommandJob::keyword_moellerplesset_forces("Total MP2 gradient [au]:");
41
42/** Default constructor for class MPQCCommandJob.
43 *
44 */
45MPQCCommandJob::MPQCCommandJob()
46{}
47
48/** Constructor for class MPQCCommandJob.
49 *
50 * @param _inputfile string of inputfile contents
51 * @param _JobId id of this job
52 * @param command mpqc command, "mpqc" as default
53 */
54MPQCCommandJob::MPQCCommandJob(
55 const std::string &_inputfile,
56 const JobId_t _JobId,
57 const std::string &command) :
58 SystemCommandJob(command, _inputfile, _JobId)
59{}
60
61/** Destructor for class MPQCCommandJob.
62 *
63 */
64MPQCCommandJob::~MPQCCommandJob()
65{}
66
67/** Extracts energy and forces from the output of the command.
68 *
69 * @param resultstring output of the command to parse
70 * @return FragmentResult with energy and forces
71 */
72FragmentResult::ptr MPQCCommandJob::extractResult(const std::string &resultstring)
73{
74 std::stringstream returnstream;
75 // tokenizers
76 typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
77 boost::char_separator<char> keyvalue_separator("=:");
78 boost::char_separator<char> whitespace(" \t");
79
80 // split into lines
81 std::vector<std::string> lines;
82 boost::split(lines, resultstring, boost::is_any_of("\n"));
83
84 // go through each line
85 bool gradient_section = false;
86 for (std::vector<std::string>::const_iterator iter = lines.begin();
87 iter != lines.end();++iter) {
88 LOG(3, "DEBUG: Current line is '" << *iter << "'.");
89 if (gradient_section) {
90 tokenizer tokens(*iter, whitespace);
91 if (*iter != std::string("")) {
92 tokenizer::iterator tok_iter = tokens.begin();
93 tok_iter++;
94 tok_iter++;
95 MPQCData::vector_type forcevector(NDIM);
96 try { // first col is index, second is element
97 for (size_t index = 0;index < NDIM; ++index)
98 forcevector[index] = boost::lexical_cast<double>(*(tok_iter++));
99 LOG(2, "INFO: Recognized force vector in '"+*iter+"'.");
100 data.forces.push_back( forcevector );
101 } catch(boost::bad_lexical_cast){
102 LOG(2, "INFO: Did not recognize a force vector, hence ending section at '"+*iter+"'.");
103 gradient_section = false;
104 }
105 } else {
106 LOG(2, "INFO: Recognized gradient section end in '"+*iter+"'.");
107 gradient_section = false;
108 }
109 }
110 // extract energy ("total scf energy") ...
111 if (((*iter).find(keyword_hartreefock_energy) != std::string::npos)
112 || ((*iter).find(keyword_moellerplesset_energy) != std::string::npos))
113 {
114 LOG(2, "INFO: Recognized energy in '"+*iter+"'.");
115 tokenizer tokens(*iter, keyvalue_separator);
116 tokenizer::iterator tok_iter = tokens.begin();
117 tok_iter++;
118 std::stringstream energystring(*tok_iter);
119 energystring >> data.energy;
120 }
121 // ... and forces ("Total Gradient") from resultstring
122 if (((*iter).find(keyword_hartreefock_forces) != std::string::npos)
123 || ((*iter).find(keyword_moellerplesset_forces) != std::string::npos))
124 {
125 LOG(2, "INFO: Recognized gradient section init in '"+*iter+"'.");
126 gradient_section=true;
127 data.forces.clear();
128 }
129 }
130
131 // place into returnstream
132 boost::archive::text_oarchive oa(returnstream);
133 oa << data;
134
135 FragmentResult::ptr s( new FragmentResult(getId(), returnstream.str()) );
136 return s;
137}
138
139bool MPQCCommandJob::operator==(const MPQCCommandJob &other) const
140{
141 if (data != other.data) {
142 LOG(2, "INFO: data's of both MPQCCommandJob don't match.");
143 return false;
144 }
145 return (static_cast<const SystemCommandJob &>(*this)
146 == static_cast<const SystemCommandJob &>(other));
147}
148
149
150// we need to explicitly instantiate the serialization functions as
151// its is only serialized through its base class FragmentJob
152BOOST_CLASS_EXPORT_IMPLEMENT(MPQCCommandJob)
Note: See TracBrowser for help on using the repository browser.