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