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 headers that implement a archive in simple text format
|
---|
30 | #include <boost/archive/text_oarchive.hpp>
|
---|
31 |
|
---|
32 | #include <boost/algorithm/string.hpp>
|
---|
33 | #include <boost/lexical_cast.hpp>
|
---|
34 | #include <boost/tokenizer.hpp>
|
---|
35 | #include <sstream>
|
---|
36 |
|
---|
37 | #include "CodePatterns/Assert.hpp"
|
---|
38 | #include "CodePatterns/Log.hpp"
|
---|
39 |
|
---|
40 | const std::string MPQCCommandJob::keyword_hartreefock_energy("total scf energy");
|
---|
41 | const std::string MPQCCommandJob::keyword_moellerplesset_energy("MP2 energy [au]:");
|
---|
42 | const std::string MPQCCommandJob::keyword_hartreefock_forces("Total Gradient");
|
---|
43 | const std::string MPQCCommandJob::keyword_moellerplesset_forces("Total MP2 gradient [au]:");
|
---|
44 |
|
---|
45 | /** Default constructor for class MPQCCommandJob.
|
---|
46 | *
|
---|
47 | */
|
---|
48 | MPQCCommandJob::MPQCCommandJob()
|
---|
49 | {}
|
---|
50 |
|
---|
51 | /** Constructor for class MPQCCommandJob.
|
---|
52 | *
|
---|
53 | * @param _inputfile string of inputfile contents
|
---|
54 | * @param _JobId id of this job
|
---|
55 | * @param command mpqc command, "mpqc" as default
|
---|
56 | */
|
---|
57 | MPQCCommandJob::MPQCCommandJob(
|
---|
58 | const std::string &_inputfile,
|
---|
59 | const JobId_t _JobId,
|
---|
60 | const std::string &command) :
|
---|
61 | SystemCommandJob(command, _inputfile, _JobId)
|
---|
62 | {}
|
---|
63 |
|
---|
64 | /** Destructor for class MPQCCommandJob.
|
---|
65 | *
|
---|
66 | */
|
---|
67 | MPQCCommandJob::~MPQCCommandJob()
|
---|
68 | {}
|
---|
69 |
|
---|
70 | /** Extracts energy and forces from the output of the command.
|
---|
71 | *
|
---|
72 | * @param resultstring output of the command to parse
|
---|
73 | * @return FragmentResult with energy and forces
|
---|
74 | */
|
---|
75 | FragmentResult::ptr MPQCCommandJob::extractResult(const std::string &resultstring)
|
---|
76 | {
|
---|
77 | std::stringstream returnstream;
|
---|
78 | // tokenizers
|
---|
79 | typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
|
---|
80 | boost::char_separator<char> keyvalue_separator("=:");
|
---|
81 | boost::char_separator<char> whitespace(" \t");
|
---|
82 |
|
---|
83 | // split into lines
|
---|
84 | std::vector<std::string> lines;
|
---|
85 | boost::split(lines, resultstring, boost::is_any_of("\n"));
|
---|
86 |
|
---|
87 | // go through each line
|
---|
88 | bool gradient_section = false;
|
---|
89 | for (std::vector<std::string>::const_iterator iter = lines.begin();
|
---|
90 | iter != lines.end();++iter) {
|
---|
91 | LOG(3, "DEBUG: Current line is '" << *iter << "'.");
|
---|
92 | if (gradient_section) {
|
---|
93 | tokenizer tokens(*iter, whitespace);
|
---|
94 | if (*iter != std::string("")) {
|
---|
95 | tokenizer::iterator tok_iter = tokens.begin();
|
---|
96 | tok_iter++;
|
---|
97 | tok_iter++;
|
---|
98 | MPQCData::vector_type forcevector(NDIM);
|
---|
99 | try { // first col is index, second is element
|
---|
100 | for (size_t index = 0;index < NDIM; ++index)
|
---|
101 | forcevector[index] = boost::lexical_cast<double>(*(tok_iter++));
|
---|
102 | LOG(2, "INFO: Recognized force vector in '"+*iter+"'.");
|
---|
103 | data.forces.push_back( forcevector );
|
---|
104 | } catch(boost::bad_lexical_cast){
|
---|
105 | LOG(2, "INFO: Did not recognize a force vector, hence ending section at '"+*iter+"'.");
|
---|
106 | gradient_section = false;
|
---|
107 | }
|
---|
108 | } else {
|
---|
109 | LOG(2, "INFO: Recognized gradient section end in '"+*iter+"'.");
|
---|
110 | gradient_section = false;
|
---|
111 | }
|
---|
112 | }
|
---|
113 | // extract energy ("total scf energy") ...
|
---|
114 | if (((*iter).find(keyword_hartreefock_energy) != std::string::npos)
|
---|
115 | || ((*iter).find(keyword_moellerplesset_energy) != std::string::npos))
|
---|
116 | {
|
---|
117 | LOG(2, "INFO: Recognized energy in '"+*iter+"'.");
|
---|
118 | tokenizer tokens(*iter, keyvalue_separator);
|
---|
119 | tokenizer::iterator tok_iter = tokens.begin();
|
---|
120 | tok_iter++;
|
---|
121 | std::stringstream energystring(*tok_iter);
|
---|
122 | energystring >> data.energy;
|
---|
123 | }
|
---|
124 | // ... and forces ("Total Gradient") from resultstring
|
---|
125 | if (((*iter).find(keyword_hartreefock_forces) != std::string::npos)
|
---|
126 | || ((*iter).find(keyword_moellerplesset_forces) != std::string::npos))
|
---|
127 | {
|
---|
128 | LOG(2, "INFO: Recognized gradient section init in '"+*iter+"'.");
|
---|
129 | gradient_section=true;
|
---|
130 | data.forces.clear();
|
---|
131 | }
|
---|
132 | }
|
---|
133 |
|
---|
134 | // place into returnstream
|
---|
135 | boost::archive::text_oarchive oa(returnstream);
|
---|
136 | oa << data;
|
---|
137 |
|
---|
138 | FragmentResult::ptr s( new FragmentResult(getId(), returnstream.str()) );
|
---|
139 | return s;
|
---|
140 | }
|
---|
141 |
|
---|
142 | bool MPQCCommandJob::operator==(const MPQCCommandJob &other) const
|
---|
143 | {
|
---|
144 | if (data != other.data) {
|
---|
145 | LOG(2, "INFO: data's of both MPQCCommandJob don't match.");
|
---|
146 | return false;
|
---|
147 | }
|
---|
148 | return (static_cast<const SystemCommandJob &>(*this)
|
---|
149 | == static_cast<const SystemCommandJob &>(other));
|
---|
150 | }
|
---|
151 |
|
---|
152 |
|
---|
153 | // we need to explicitly instantiate the serialization functions as
|
---|
154 | // its is only serialized through its base class FragmentJob
|
---|
155 | BOOST_CLASS_EXPORT_IMPLEMENT(MPQCCommandJob)
|
---|