[cc276e] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 5 | *
|
---|
| 6 | *
|
---|
| 7 | * This file is part of MoleCuilder.
|
---|
| 8 | *
|
---|
| 9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 10 | * it under the terms of the GNU General Public License as published by
|
---|
| 11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 12 | * (at your option) any later version.
|
---|
| 13 | *
|
---|
| 14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 17 | * GNU General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * You should have received a copy of the GNU General Public License
|
---|
| 20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[cc276e] | 21 | */
|
---|
| 22 |
|
---|
| 23 | /*
|
---|
| 24 | * MPQCCommandJob.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Feb 05, 2012
|
---|
| 27 | * Author: heber
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
| 35 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 36 |
|
---|
[545446] | 37 | // include headers that implement a archive in simple text format
|
---|
| 38 | // otherwise BOOST_CLASS_EXPORT_IMPLEMENT has no effect
|
---|
| 39 | #include <boost/archive/text_oarchive.hpp>
|
---|
| 40 | #include <boost/archive/text_iarchive.hpp>
|
---|
| 41 |
|
---|
[cc276e] | 42 | #include "MPQCCommandJob.hpp"
|
---|
| 43 |
|
---|
| 44 | #include <boost/algorithm/string.hpp>
|
---|
| 45 | #include <boost/lexical_cast.hpp>
|
---|
| 46 | #include <boost/tokenizer.hpp>
|
---|
| 47 | #include <sstream>
|
---|
| 48 |
|
---|
| 49 | #include "CodePatterns/Assert.hpp"
|
---|
| 50 | #include "CodePatterns/Log.hpp"
|
---|
| 51 |
|
---|
[004d5c] | 52 | #include "LinearAlgebra/defs.hpp"
|
---|
| 53 |
|
---|
[306f60] | 54 | const std::string MPQCCommandJob::keyword_hartreefock_energy("total scf energy");
|
---|
| 55 | const std::string MPQCCommandJob::keyword_moellerplesset_energy("MP2 energy [au]:");
|
---|
| 56 | const std::string MPQCCommandJob::keyword_hartreefock_forces("Total Gradient");
|
---|
| 57 | const std::string MPQCCommandJob::keyword_moellerplesset_forces("Total MP2 gradient [au]:");
|
---|
[cc276e] | 58 |
|
---|
[545446] | 59 | /** Default constructor for class MPQCCommandJob.
|
---|
| 60 | *
|
---|
| 61 | */
|
---|
| 62 | MPQCCommandJob::MPQCCommandJob()
|
---|
| 63 | {}
|
---|
| 64 |
|
---|
[cc276e] | 65 | /** Constructor for class MPQCCommandJob.
|
---|
| 66 | *
|
---|
| 67 | * @param _inputfile string of inputfile contents
|
---|
| 68 | * @param _JobId id of this job
|
---|
[917be8] | 69 | * @param command mpqc command, "mpqc" as default
|
---|
[cc276e] | 70 | */
|
---|
[917be8] | 71 | MPQCCommandJob::MPQCCommandJob(
|
---|
| 72 | const std::string &_inputfile,
|
---|
| 73 | const JobId_t _JobId,
|
---|
| 74 | const std::string &command) :
|
---|
| 75 | SystemCommandJob(command, _inputfile, _JobId)
|
---|
[cc276e] | 76 | {}
|
---|
| 77 |
|
---|
| 78 | /** Destructor for class MPQCCommandJob.
|
---|
| 79 | *
|
---|
| 80 | */
|
---|
| 81 | MPQCCommandJob::~MPQCCommandJob()
|
---|
| 82 | {}
|
---|
| 83 |
|
---|
| 84 | /** Extracts energy and forces from the output of the command.
|
---|
| 85 | *
|
---|
| 86 | * @param resultstring output of the command to parse
|
---|
| 87 | * @return FragmentResult with energy and forces
|
---|
| 88 | */
|
---|
| 89 | FragmentResult::ptr MPQCCommandJob::extractResult(const std::string &resultstring)
|
---|
| 90 | {
|
---|
| 91 | std::stringstream returnstream;
|
---|
| 92 | // tokenizers
|
---|
| 93 | typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
|
---|
[306f60] | 94 | boost::char_separator<char> keyvalue_separator("=:");
|
---|
[cc276e] | 95 | boost::char_separator<char> whitespace(" \t");
|
---|
| 96 |
|
---|
| 97 | // split into lines
|
---|
| 98 | std::vector<std::string> lines;
|
---|
| 99 | boost::split(lines, resultstring, boost::is_any_of("\n"));
|
---|
| 100 |
|
---|
| 101 | // go through each line
|
---|
| 102 | bool gradient_section = false;
|
---|
| 103 | for (std::vector<std::string>::const_iterator iter = lines.begin();
|
---|
| 104 | iter != lines.end();++iter) {
|
---|
[306f60] | 105 | LOG(3, "DEBUG: Current line is '" << *iter << "'.");
|
---|
[cc276e] | 106 | if (gradient_section) {
|
---|
| 107 | tokenizer tokens(*iter, whitespace);
|
---|
| 108 | if (*iter != std::string("")) {
|
---|
| 109 | tokenizer::iterator tok_iter = tokens.begin();
|
---|
| 110 | tok_iter++;
|
---|
| 111 | tok_iter++;
|
---|
| 112 | MPQCData::vector_type forcevector(NDIM);
|
---|
| 113 | try { // first col is index, second is element
|
---|
| 114 | for (size_t index = 0;index < NDIM; ++index)
|
---|
| 115 | forcevector[index] = boost::lexical_cast<double>(*(tok_iter++));
|
---|
| 116 | LOG(2, "INFO: Recognized force vector in '"+*iter+"'.");
|
---|
| 117 | data.forces.push_back( forcevector );
|
---|
| 118 | } catch(boost::bad_lexical_cast){
|
---|
| 119 | LOG(2, "INFO: Did not recognize a force vector, hence ending section at '"+*iter+"'.");
|
---|
| 120 | gradient_section = false;
|
---|
| 121 | }
|
---|
| 122 | } else {
|
---|
| 123 | LOG(2, "INFO: Recognized gradient section end in '"+*iter+"'.");
|
---|
| 124 | gradient_section = false;
|
---|
| 125 | }
|
---|
| 126 | }
|
---|
| 127 | // extract energy ("total scf energy") ...
|
---|
[306f60] | 128 | if (((*iter).find(keyword_hartreefock_energy) != std::string::npos)
|
---|
| 129 | || ((*iter).find(keyword_moellerplesset_energy) != std::string::npos))
|
---|
| 130 | {
|
---|
[cc276e] | 131 | LOG(2, "INFO: Recognized energy in '"+*iter+"'.");
|
---|
[306f60] | 132 | tokenizer tokens(*iter, keyvalue_separator);
|
---|
[cc276e] | 133 | tokenizer::iterator tok_iter = tokens.begin();
|
---|
| 134 | tok_iter++;
|
---|
| 135 | std::stringstream energystring(*tok_iter);
|
---|
[a9558f] | 136 | energystring >> data.energies.total;
|
---|
[cc276e] | 137 | }
|
---|
| 138 | // ... and forces ("Total Gradient") from resultstring
|
---|
[306f60] | 139 | if (((*iter).find(keyword_hartreefock_forces) != std::string::npos)
|
---|
| 140 | || ((*iter).find(keyword_moellerplesset_forces) != std::string::npos))
|
---|
| 141 | {
|
---|
[cc276e] | 142 | LOG(2, "INFO: Recognized gradient section init in '"+*iter+"'.");
|
---|
| 143 | gradient_section=true;
|
---|
[306f60] | 144 | data.forces.clear();
|
---|
[cc276e] | 145 | }
|
---|
| 146 | }
|
---|
| 147 |
|
---|
| 148 | // place into returnstream
|
---|
| 149 | boost::archive::text_oarchive oa(returnstream);
|
---|
| 150 | oa << data;
|
---|
| 151 |
|
---|
| 152 | FragmentResult::ptr s( new FragmentResult(getId(), returnstream.str()) );
|
---|
| 153 | return s;
|
---|
| 154 | }
|
---|
[545446] | 155 |
|
---|
| 156 | bool MPQCCommandJob::operator==(const MPQCCommandJob &other) const
|
---|
| 157 | {
|
---|
| 158 | if (data != other.data) {
|
---|
| 159 | LOG(2, "INFO: data's of both MPQCCommandJob don't match.");
|
---|
| 160 | return false;
|
---|
| 161 | }
|
---|
| 162 | return (static_cast<const SystemCommandJob &>(*this)
|
---|
| 163 | == static_cast<const SystemCommandJob &>(other));
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 |
|
---|
| 167 | // we need to explicitly instantiate the serialization functions as
|
---|
| 168 | // its is only serialized through its base class FragmentJob
|
---|
| 169 | BOOST_CLASS_EXPORT_IMPLEMENT(MPQCCommandJob)
|
---|