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