[edecba] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
[94d5ac6] | 6 | *
|
---|
| 7 | *
|
---|
| 8 | * This file is part of MoleCuilder.
|
---|
| 9 | *
|
---|
| 10 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 11 | * it under the terms of the GNU General Public License as published by
|
---|
| 12 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 13 | * (at your option) any later version.
|
---|
| 14 | *
|
---|
| 15 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 18 | * GNU General Public License for more details.
|
---|
| 19 | *
|
---|
| 20 | * You should have received a copy of the GNU General Public License
|
---|
| 21 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[edecba] | 22 | */
|
---|
| 23 |
|
---|
| 24 | /*
|
---|
| 25 | * FragmentationAutomationAction.cpp
|
---|
| 26 | *
|
---|
| 27 | * Created on: May 18, 2012
|
---|
| 28 | * Author: heber
|
---|
| 29 | */
|
---|
| 30 |
|
---|
| 31 | // include config.h
|
---|
| 32 | #ifdef HAVE_CONFIG_H
|
---|
| 33 | #include <config.h>
|
---|
| 34 | #endif
|
---|
| 35 |
|
---|
| 36 | #include <boost/archive/text_iarchive.hpp>
|
---|
| 37 | // boost asio needs specific operator new
|
---|
| 38 | #include <boost/asio.hpp>
|
---|
| 39 |
|
---|
| 40 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 41 |
|
---|
[a3427f] | 42 | //// include headers that implement a archive in simple text format
|
---|
[55e1bc] | 43 | #include <boost/archive/text_oarchive.hpp>
|
---|
| 44 | #include <boost/archive/text_iarchive.hpp>
|
---|
[240c3e] | 45 |
|
---|
[a3427f] | 46 | //
|
---|
| 47 | //#include <boost/mpl/remove.hpp>
|
---|
| 48 | //#include <boost/lambda/lambda.hpp>
|
---|
[fb881a] | 49 |
|
---|
[a3427f] | 50 | //#include <iostream>
|
---|
[240c3e] | 51 |
|
---|
[6ca578] | 52 | #include "CodePatterns/Assert.hpp"
|
---|
[edecba] | 53 | #include "CodePatterns/Info.hpp"
|
---|
| 54 | #include "CodePatterns/Log.hpp"
|
---|
[1dfe00] | 55 |
|
---|
| 56 | #ifdef HAVE_JOBMARKET
|
---|
[edecba] | 57 | #include "JobMarket/Jobs/FragmentJob.hpp"
|
---|
[1dfe00] | 58 | #else
|
---|
| 59 | #include "Jobs/JobMarket/FragmentJob.hpp"
|
---|
| 60 | #endif
|
---|
[edecba] | 61 |
|
---|
[ac9ca4] | 62 | #include "Fragmentation/Automation/FragmentJobQueue.hpp"
|
---|
[1dfe00] | 63 | #ifdef HAVE_JOBMARKET
|
---|
[ffe057] | 64 | #include "Fragmentation/Automation/MPQCFragmentController.hpp"
|
---|
[1dfe00] | 65 | #else
|
---|
[bf0ff3] | 66 | #include "Fragmentation/Automation/MPQCCommandFragmentController.hpp"
|
---|
[1dfe00] | 67 | #endif
|
---|
[4a3df8] | 68 | #include "Fragmentation/Exporters/ExportGraph_ToJobs.hpp"
|
---|
[fbf143] | 69 | #include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp"
|
---|
| 70 | #include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp"
|
---|
[a3427f] | 71 | #include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp"
|
---|
[fbf143] | 72 | #include "Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp"
|
---|
| 73 | #include "Fragmentation/Summation/Containers/MPQCData.hpp"
|
---|
[a3427f] | 74 | #include "Fragmentation/KeySetsContainer.hpp"
|
---|
[18ed8c] | 75 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
|
---|
[a3427f] | 76 | #include "Fragmentation/Automation/VMGDebugGridFragmentController.hpp"
|
---|
| 77 | #include "Fragmentation/Automation/VMGFragmentController.hpp"
|
---|
[11edf0] | 78 | #include "Fragmentation/Summation/Containers/GridDownsampler.hpp"
|
---|
[fbf143] | 79 | #include "Fragmentation/Summation/Containers/VMGData.hpp"
|
---|
| 80 | #include "Fragmentation/Summation/Containers/VMGDataFused.hpp"
|
---|
| 81 | #include "Fragmentation/Summation/Containers/VMGDataMap.hpp"
|
---|
| 82 | #include "Fragmentation/Summation/Containers/VMGData_printKeyNames.hpp"
|
---|
[69c733] | 83 | #endif
|
---|
[edecba] | 84 | #include "World.hpp"
|
---|
| 85 |
|
---|
[c09f94] | 86 | #include <boost/bind.hpp>
|
---|
| 87 | #include <boost/thread.hpp>
|
---|
[86cfac5] | 88 | #include <fstream>
|
---|
[edecba] | 89 | #include <iostream>
|
---|
| 90 | #include <string>
|
---|
| 91 | #include <vector>
|
---|
| 92 |
|
---|
[8cae4c] | 93 | #include <boost/mpl/for_each.hpp>
|
---|
| 94 |
|
---|
[edecba] | 95 | #include "Actions/FragmentationAction/FragmentationAutomationAction.hpp"
|
---|
| 96 |
|
---|
| 97 | using namespace MoleCuilder;
|
---|
| 98 |
|
---|
| 99 | // and construct the stuff
|
---|
| 100 | #include "FragmentationAutomationAction.def"
|
---|
| 101 | #include "Action_impl_pre.hpp"
|
---|
| 102 | /** =========== define the function ====================== */
|
---|
| 103 |
|
---|
| 104 | class controller_AddOn;
|
---|
| 105 |
|
---|
| 106 | // needs to be defined for using the FragmentController
|
---|
| 107 | controller_AddOn *getAddOn()
|
---|
| 108 | {
|
---|
| 109 | return NULL;
|
---|
| 110 | }
|
---|
| 111 |
|
---|
[c09f94] | 112 | static void updateSteps(Process &p, const size_t step, const size_t total)
|
---|
| 113 | {
|
---|
| 114 | LOG(1, "There are " << step << " steps out of " << total << " done.");
|
---|
| 115 | p.setCurrStep(step);
|
---|
| 116 | }
|
---|
| 117 |
|
---|
[f0dea0] | 118 | template <class ResultClass>
|
---|
| 119 | std::pair<double, double> getResiduals(const ResultClass &_result)
|
---|
| 120 | { return std::pair<double, double>(0.,0.); }
|
---|
| 121 |
|
---|
| 122 | std::pair<double, double> getResiduals(const MPQCData &_result)
|
---|
| 123 | { return std::make_pair(_result.accuracy, _result.desired_accuracy); }
|
---|
| 124 |
|
---|
| 125 | std::pair<double, double> getResiduals(const VMGData &_result)
|
---|
[7debff] | 126 | {
|
---|
| 127 | // sensibility check on absolute residual
|
---|
| 128 | if (_result.residual > 1e-5)
|
---|
| 129 | ELOG(2, "Encountered absolute residual greater than 1e-5: " << _result.residual);
|
---|
| 130 | // take smaller value of the two as just one of them needs to be less than precision
|
---|
| 131 | const double residual = std::min(_result.relative_residual, _result.residual);
|
---|
| 132 | return std::make_pair(residual, _result.precision);
|
---|
| 133 | }
|
---|
[f0dea0] | 134 |
|
---|
| 135 | template <class ResultClass>
|
---|
| 136 | bool checkResults(const typename std::map<JobId_t, ResultClass> &_results)
|
---|
| 137 | {
|
---|
| 138 | bool result = true;
|
---|
| 139 | for (typename std::map<JobId_t, ResultClass>::const_iterator iter = _results.begin();
|
---|
| 140 | iter != _results.end(); ++iter) {
|
---|
| 141 | std::pair<double, double> residuals = getResiduals(iter->second);
|
---|
| 142 | if (residuals.second != 0.) {
|
---|
| 143 | if (residuals.first >= residuals.second) {
|
---|
| 144 | ELOG(1, "Fragment Job " << iter->first << " converged to " << residuals.first
|
---|
| 145 | << " instead of " << residuals.second);
|
---|
| 146 | result = false;
|
---|
| 147 | }
|
---|
| 148 | } else {
|
---|
| 149 | LOG(4, "DEBUG: Not checking accuracy because desired precision not given.");
|
---|
| 150 | }
|
---|
| 151 | }
|
---|
| 152 | return result;
|
---|
| 153 | }
|
---|
| 154 |
|
---|
[82034f1] | 155 |
|
---|
| 156 | #ifdef HAVE_JOBMARKET
|
---|
| 157 | /** This performs a direct sum calculation for the nuclei-nuclei interaction energy
|
---|
| 158 | * and forces for each fragment contained in \a shortrangedata.
|
---|
| 159 | *
|
---|
| 160 | * Results are (re)placed in \a _longrangedata.
|
---|
| 161 | *
|
---|
| 162 | * \warning This is only valid for fully open boundary conditions.
|
---|
| 163 | *
|
---|
| 164 | * \param _shortrangedata containing information on position and charges per fragment
|
---|
| 165 | * \param _longrangedata containing energy and forces on return
|
---|
| 166 | */
|
---|
[25f5b66] | 167 | /* Is not used currently, commented out to disable warning message.
|
---|
[82034f1] | 168 | static void calculateNucleiNucleiLongRangeContribution(
|
---|
| 169 | const std::map<JobId_t, MPQCData> &_shortrangedata,
|
---|
| 170 | std::map<JobId_t, VMGData>& _longrangedata
|
---|
| 171 | )
|
---|
| 172 | {
|
---|
| 173 | ASSERT( _shortrangedata.size() == _longrangedata.size(),
|
---|
| 174 | "calculateNucleiNucleiLongRangeContribution() - shortrange and longrange data have inequal size.");
|
---|
| 175 | std::map<JobId_t, VMGData>::iterator longrangeiter = _longrangedata.begin();
|
---|
| 176 | std::map<JobId_t, MPQCData>::const_iterator iter = _shortrangedata.begin();
|
---|
| 177 | for (;iter != _shortrangedata.end(); ++iter, ++longrangeiter) {
|
---|
| 178 | const MPQCData &data = iter->second;
|
---|
| 179 | VMGData &longrange_data = longrangeiter->second;
|
---|
| 180 | // set long-range contributions to zero
|
---|
| 181 | longrange_data.nuclei_long = 0.;
|
---|
| 182 | longrange_data.forces.clear();
|
---|
| 183 | longrange_data.forces.resize(data.positions.size(), FragmentForces::force_t(3,0.));
|
---|
| 184 | longrange_data.hasForces = true;
|
---|
| 185 | // go through positions and evaluate sum naively
|
---|
| 186 | ASSERT( data.positions.size() == data.charges.size(),
|
---|
| 187 | "calculateNucleiNucleiLongRangeContribution() - positions and charges differ in size.");
|
---|
| 188 | std::vector< std::vector<double> >::const_iterator positer = data.positions.begin();
|
---|
| 189 | std::vector< double >::const_iterator chargeiter = data.charges.begin();
|
---|
| 190 | FragmentForces::iterator forceiter = longrange_data.forces.begin();
|
---|
| 191 | for (; (positer != data.positions.end()) && (chargeiter != data.charges.end());
|
---|
| 192 | ++positer, ++chargeiter, ++forceiter) {
|
---|
| 193 | ASSERT( positer->size() == NDIM,
|
---|
| 194 | "calculateNucleiNucleiLongRangeContribution() - position "
|
---|
| 195 | +toString(std::distance(data.positions.begin(), positer))+" has not 3 components.");
|
---|
| 196 | const Vector position((*positer)[0], (*positer)[1], (*positer)[2]);
|
---|
| 197 |
|
---|
| 198 | std::vector< std::vector<double> >::const_iterator otherpositer = data.positions.begin();
|
---|
| 199 | std::vector< double >::const_iterator otherchargeiter = data.charges.begin();
|
---|
| 200 | for (; (otherpositer != data.positions.end()) && (otherchargeiter != data.charges.end());
|
---|
| 201 | ++otherpositer, ++otherchargeiter) {
|
---|
| 202 | if ((positer == otherpositer) || (chargeiter == otherchargeiter))
|
---|
| 203 | continue;
|
---|
| 204 | ASSERT( otherpositer->size() == NDIM,
|
---|
| 205 | "calculateNucleiNucleiLongRangeContribution() - other position "
|
---|
| 206 | +toString(std::distance(data.positions.begin(), otherpositer))+" has not 3 components.");
|
---|
| 207 | const Vector otherposition((*otherpositer)[0], (*otherpositer)[1], (*otherpositer)[2]);
|
---|
| 208 | const Vector distance = position - otherposition;
|
---|
| 209 | const double invsqrdist = 1./distance.Norm();
|
---|
| 210 | const double factor = (*otherchargeiter)*invsqrdist*invsqrdist*invsqrdist;
|
---|
| 211 | (*forceiter)[0] = factor*distance[0];
|
---|
| 212 | (*forceiter)[1] = factor*distance[1];
|
---|
| 213 | (*forceiter)[2] = factor*distance[2];
|
---|
| 214 | longrange_data.nuclei_long += 0.5*(*chargeiter)*(*otherchargeiter)*invsqrdist;
|
---|
| 215 | }
|
---|
| 216 | }
|
---|
| 217 | }
|
---|
| 218 | }
|
---|
[25f5b66] | 219 | */
|
---|
[82034f1] | 220 | #endif
|
---|
| 221 |
|
---|
[b5b01e] | 222 | ActionState::ptr FragmentationFragmentationAutomationAction::performCall() {
|
---|
[c5324f] | 223 | boost::asio::io_service io_service;
|
---|
| 224 |
|
---|
| 225 | // TODO: Have io_service run in second thread and merge with current again eventually
|
---|
| 226 |
|
---|
[a3427f] | 227 | FragmentationResultContainer &container =
|
---|
| 228 | FragmentationResultContainer::getInstance();
|
---|
| 229 | const KeySetsContainer& keysets = FragmentJobQueue::getInstance().getKeySets();
|
---|
| 230 | const KeySetsContainer& forcekeysets = FragmentJobQueue::getInstance().getFullKeySets();
|
---|
| 231 |
|
---|
[4f056e] | 232 | size_t Exitflag = 0;
|
---|
[a3427f] | 233 | std::map<JobId_t, MPQCData> shortrangedata;
|
---|
[1dfe00] | 234 | #ifdef HAVE_JOBMARKET
|
---|
[4f056e] | 235 | {
|
---|
[ac9ca4] | 236 | const size_t NumberJobs = FragmentJobQueue::getInstance().size();
|
---|
[4f056e] | 237 | MPQCFragmentController mpqccontroller(io_service);
|
---|
| 238 | mpqccontroller.setHost(params.host.get());
|
---|
| 239 | mpqccontroller.setPort(params.port.get());
|
---|
| 240 | // Phase One: obtain ids
|
---|
[ac9ca4] | 241 | mpqccontroller.requestIds(NumberJobs);
|
---|
[ca09be] | 242 | if (mpqccontroller.getExitflag() != 0)
|
---|
| 243 | return Action::failure;
|
---|
[4f056e] | 244 |
|
---|
[ac9ca4] | 245 | // Phase Two: add MPQCJobs and send
|
---|
[a61dbb] | 246 | const bool AddJobsStatus = mpqccontroller.addJobsFromQueue(
|
---|
[6ff62c] | 247 | params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity,
|
---|
| 248 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly
|
---|
| 249 | );
|
---|
[a61dbb] | 250 | if (AddJobsStatus)
|
---|
| 251 | LOG(1, "INFO: Added jobs from FragmentJobsQueue.");
|
---|
| 252 | else {
|
---|
| 253 | ELOG(1, "Adding jobs failed.");
|
---|
| 254 | return Action::failure;
|
---|
| 255 | }
|
---|
[ac9ca4] | 256 | mpqccontroller.run();
|
---|
[4f056e] | 257 |
|
---|
| 258 | // Phase Three: calculate result
|
---|
[c09f94] | 259 | setMaxSteps(NumberJobs);
|
---|
| 260 | mpqccontroller.setUpdateHandler(
|
---|
| 261 | boost::bind(&updateSteps, boost::ref(*this), _1, _2)
|
---|
| 262 | );
|
---|
| 263 | start();
|
---|
| 264 | boost::thread wait_thread(
|
---|
| 265 | boost::bind(&MPQCFragmentController::waitforResults, boost::ref(mpqccontroller), boost::cref(NumberJobs))
|
---|
| 266 | );
|
---|
| 267 | wait_thread.join();
|
---|
| 268 | stop();
|
---|
[ca09be] | 269 | if (mpqccontroller.getExitflag() != 0)
|
---|
| 270 | return Action::failure;
|
---|
| 271 |
|
---|
[a3427f] | 272 | mpqccontroller.getResults(shortrangedata);
|
---|
[f0dea0] | 273 | if (!checkResults(shortrangedata)) {
|
---|
| 274 | ELOG(1, "At least one of the fragments' energy could not be properly minimized.");
|
---|
[ca09be] | 275 | return Action::failure;
|
---|
[f0dea0] | 276 | }
|
---|
| 277 | if (mpqccontroller.getExitflag() != 0) {
|
---|
| 278 | ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag.");
|
---|
| 279 | return Action::failure;
|
---|
| 280 | }
|
---|
[4f056e] | 281 |
|
---|
| 282 | Exitflag += mpqccontroller.getExitflag();
|
---|
| 283 | }
|
---|
[bf0ff3] | 284 | #else
|
---|
| 285 | {
|
---|
| 286 | const size_t NumberJobs = FragmentJobQueue::getInstance().size();
|
---|
| 287 | MPQCCommandFragmentController mpqccontroller;
|
---|
| 288 | // Phase One: obtain ids: not needed, we have infinite pool
|
---|
| 289 |
|
---|
| 290 | // Phase Two: add MPQCJobs and send
|
---|
| 291 | const size_t NoJobs = mpqccontroller.addJobsFromQueue(
|
---|
| 292 | params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity,
|
---|
[d6a7b9] | 293 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,
|
---|
| 294 | params.executable.get().string()
|
---|
[bf0ff3] | 295 | );
|
---|
[07ecc5] | 296 | if (NoJobs != NumberJobs) {
|
---|
| 297 | ELOG(1, "Not all jobs were added succesfully.");
|
---|
| 298 | return Action::failure;
|
---|
| 299 | }
|
---|
[bf0ff3] | 300 | LOG(1, "INFO: Added " << NoJobs << " from FragmentJobsQueue.");
|
---|
[45cdce6] | 301 |
|
---|
| 302 | // prepare process
|
---|
| 303 | setMaxSteps(NumberJobs);
|
---|
| 304 | mpqccontroller.setUpdateHandler(
|
---|
| 305 | boost::bind(&updateSteps, boost::ref(*this), _1, _2)
|
---|
| 306 | );
|
---|
| 307 | start();
|
---|
[bf0ff3] | 308 | mpqccontroller.run();
|
---|
[45cdce6] | 309 | stop();
|
---|
[f0dea0] | 310 | if (mpqccontroller.getExitflag() != 0) {
|
---|
| 311 | ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag before getting results.");
|
---|
[ca09be] | 312 | return Action::failure;
|
---|
[f0dea0] | 313 | }
|
---|
[bf0ff3] | 314 |
|
---|
| 315 | // get back the results and place them in shortrangedata
|
---|
| 316 | mpqccontroller.getResults(shortrangedata);
|
---|
| 317 | ASSERT( shortrangedata.size() == NumberJobs,
|
---|
| 318 | "FragmentationFragmentationAutomationAction::performCall() - number of converted results "
|
---|
| 319 | +toString(shortrangedata.size())+" and number of jobs "+toString(NumberJobs)+ " differ.");
|
---|
[f0dea0] | 320 | if (!checkResults(shortrangedata)) {
|
---|
| 321 | ELOG(1, "At least one of the fragments' energy could not be properly minimized.");
|
---|
| 322 | return Action::failure;
|
---|
| 323 | }
|
---|
| 324 | if (mpqccontroller.getExitflag() != 0) {
|
---|
| 325 | ELOG(1, "MPQCCommandFragmentController returned non-zero exit flag after getting results.");
|
---|
[ca09be] | 326 | return Action::failure;
|
---|
[f0dea0] | 327 | }
|
---|
[bf0ff3] | 328 |
|
---|
[4f056e] | 329 | Exitflag += mpqccontroller.getExitflag();
|
---|
| 330 | }
|
---|
[1dfe00] | 331 | #endif
|
---|
[c5324f] | 332 |
|
---|
[18ed8c] | 333 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
|
---|
[69c733] | 334 | if (params.DoLongrange.get()) {
|
---|
[a58c16] | 335 | if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() == 0) {
|
---|
[26b4d62] | 336 | STATUS("Please load the full molecule into the world before starting this action.");
|
---|
[db6f7d] | 337 | return Action::failure;
|
---|
| 338 | }
|
---|
[06865e] | 339 |
|
---|
[849cd8] | 340 | // obtain combined charge density
|
---|
[4a3df8] | 341 | std::map<JobId_t, MPQCData> shortrangedata_downsampled;
|
---|
| 342 | SamplingGridProperties domain(ExportGraph_ToJobs::getDomainGrid(params.level.get()));
|
---|
[27594e] | 343 | FragmentationChargeDensity summedChargeDensity(
|
---|
[b5134a] | 344 | shortrangedata);
|
---|
[ebadb4] | 345 | {
|
---|
[4c648a] | 346 | SamplingGrid zero_globalgrid(domain);
|
---|
[ebadb4] | 347 | summedChargeDensity(
|
---|
| 348 | shortrangedata,
|
---|
| 349 | FragmentJobQueue::getInstance().getKeySets(),
|
---|
| 350 | zero_globalgrid);
|
---|
| 351 | }
|
---|
[27594e] | 352 | const std::vector<SamplingGrid> full_sample = summedChargeDensity.getFullSampledGrid();
|
---|
[a3427f] | 353 | LOG(1, "INFO: There are " << shortrangedata.size() << " short-range and "
|
---|
[4f056e] | 354 | << full_sample.size() << " level-wise long-range jobs.");
|
---|
[69c733] | 355 |
|
---|
[1e5f84] | 356 | // check boundary conditions
|
---|
| 357 | const BoundaryConditions::Conditions_t &conditions =
|
---|
| 358 | World::getInstance().getDomain().getConditions();
|
---|
| 359 | const bool OpenBoundaryConditions =
|
---|
| 360 | !((conditions[0] == BoundaryConditions::Wrap) &&
|
---|
| 361 | (conditions[1] == BoundaryConditions::Wrap) &&
|
---|
| 362 | (conditions[2] == BoundaryConditions::Wrap));
|
---|
| 363 | LOG(1, std::string("INFO: Using ")
|
---|
| 364 | << (OpenBoundaryConditions ? "open" : "periodic")
|
---|
| 365 | << " boundary conditions.");
|
---|
| 366 |
|
---|
[4f056e] | 367 | // Phase Four: obtain more ids
|
---|
[a3427f] | 368 | std::map<JobId_t, VMGData> longrangedata;
|
---|
[4f056e] | 369 | {
|
---|
| 370 | VMGFragmentController vmgcontroller(io_service);
|
---|
| 371 | vmgcontroller.setHost(params.host.get());
|
---|
| 372 | vmgcontroller.setPort(params.port.get());
|
---|
[a3427f] | 373 | const size_t NoJobs = shortrangedata.size()+full_sample.size();
|
---|
[e2925fd] | 374 | vmgcontroller.requestIds(2*NoJobs);
|
---|
[f0dea0] | 375 | if (vmgcontroller.getExitflag() != 0) {
|
---|
| 376 | ELOG(1, "VMGFragmentController returned non-zero exit flag on requesting long-range ids.");
|
---|
[ca09be] | 377 | return Action::failure;
|
---|
[f0dea0] | 378 | }
|
---|
[4f056e] | 379 |
|
---|
[e2925fd] | 380 | // Phase Five a: create VMGJobs for electronic charge distribution
|
---|
[4f056e] | 381 | const size_t near_field_cells = params.near_field_cells.get();
|
---|
[cd2591] | 382 | const size_t interpolation_degree = params.interpolation_degree.get();
|
---|
[4f056e] | 383 | if (!vmgcontroller.createLongRangeJobs(
|
---|
[a3427f] | 384 | shortrangedata,
|
---|
[4f056e] | 385 | full_sample,
|
---|
[cd2591] | 386 | near_field_cells,
|
---|
[6ff62c] | 387 | interpolation_degree,
|
---|
[e2925fd] | 388 | VMGFragmentController::DontSampleParticles,
|
---|
| 389 | VMGFragmentController::DoTreatGrid,
|
---|
[b6b21a] | 390 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,
|
---|
[1e5f84] | 391 | params.DoPrintDebug.get(),
|
---|
[17e4fd] | 392 | OpenBoundaryConditions,
|
---|
[666e9e] | 393 | params.DoSmearCharges.get(),
|
---|
| 394 | false)) {
|
---|
[26b4d62] | 395 | STATUS("Could not create long-range jobs for electronic charge distribution.");
|
---|
[4f056e] | 396 | return Action::failure;
|
---|
[26b4d62] | 397 | }
|
---|
[4f056e] | 398 |
|
---|
[e2925fd] | 399 | // Phase Six a: calculate result
|
---|
[4f056e] | 400 | vmgcontroller.waitforResults(NoJobs);
|
---|
[f0dea0] | 401 | if (vmgcontroller.getExitflag() != 0) {
|
---|
| 402 | ELOG(1, "VMGFragmentController returned non-zero exit flag before getting results.");
|
---|
[ca09be] | 403 | return Action::failure;
|
---|
[f0dea0] | 404 | }
|
---|
[a3427f] | 405 | vmgcontroller.getResults(longrangedata);
|
---|
| 406 | ASSERT( NoJobs == longrangedata.size(),
|
---|
[4f056e] | 407 | "FragmentationFragmentationAutomationAction::performCall() - number of MPQCresults+"
|
---|
| 408 | +toString(full_sample.size())+"="+toString(NoJobs)
|
---|
[e2925fd] | 409 | +" and first VMGresults "+toString(longrangedata.size())+" don't match.");
|
---|
[f0dea0] | 410 | if (!checkResults(longrangedata)) {
|
---|
| 411 | ELOG(1, "At least one of the fragments' electronic long-range potential could not be properly minimized.");
|
---|
| 412 | return Action::failure;
|
---|
| 413 | }
|
---|
[4f056e] | 414 | Exitflag += vmgcontroller.getExitflag();
|
---|
[e2925fd] | 415 |
|
---|
| 416 | {
|
---|
| 417 | std::map<JobId_t, VMGData> longrangedata_both;
|
---|
| 418 | // Phase Five b: create VMGJobs for nuclei charge distributions
|
---|
| 419 | const size_t near_field_cells = params.near_field_cells.get();
|
---|
| 420 | const size_t interpolation_degree = params.interpolation_degree.get();
|
---|
| 421 | if (!vmgcontroller.createLongRangeJobs(
|
---|
| 422 | shortrangedata,
|
---|
| 423 | full_sample,
|
---|
| 424 | near_field_cells,
|
---|
| 425 | interpolation_degree,
|
---|
| 426 | VMGFragmentController::DoSampleParticles,
|
---|
| 427 | VMGFragmentController::DoTreatGrid,
|
---|
| 428 | params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,
|
---|
[1e5f84] | 429 | params.DoPrintDebug.get(),
|
---|
[17e4fd] | 430 | OpenBoundaryConditions,
|
---|
[666e9e] | 431 | params.DoSmearCharges.get(),
|
---|
| 432 | params.UseImplicitCharges.get())) {
|
---|
[26b4d62] | 433 | STATUS("Could not create long-range jobs for nuclei charge distribution.");
|
---|
[e2925fd] | 434 | return Action::failure;
|
---|
[26b4d62] | 435 | }
|
---|
[e2925fd] | 436 |
|
---|
| 437 | // Phase Six b: calculate result
|
---|
| 438 | vmgcontroller.waitforResults(NoJobs);
|
---|
[ca09be] | 439 | if (vmgcontroller.getExitflag() != 0)
|
---|
| 440 | return Action::failure;
|
---|
[e2925fd] | 441 | vmgcontroller.getResults(longrangedata_both);
|
---|
| 442 | ASSERT( NoJobs == longrangedata_both.size(),
|
---|
| 443 | "FragmentationFragmentationAutomationAction::performCall() - number of MPQCresults+"
|
---|
| 444 | +toString(full_sample.size())+"="+toString(NoJobs)
|
---|
| 445 | +" and second VMGresults "+toString(longrangedata_both.size())+" don't match.");
|
---|
[f0dea0] | 446 | if (!checkResults(longrangedata_both)) {
|
---|
| 447 | ELOG(1, "At least one of the fragments' nuclei long-range potential could not be properly minimized.");
|
---|
[ca09be] | 448 | return Action::failure;
|
---|
[f0dea0] | 449 | }
|
---|
| 450 | if (vmgcontroller.getExitflag() != 0) {
|
---|
| 451 | ELOG(1, "VMGFragmentController returned non-zero exit flag after getting results.");
|
---|
| 452 | return Action::failure;
|
---|
| 453 | }
|
---|
[e2925fd] | 454 | Exitflag += vmgcontroller.getExitflag();
|
---|
| 455 |
|
---|
[82034f1] | 456 | // now replace nuclei-nuclei contribution with values from direct summation (is exact for
|
---|
| 457 | // open boundary conditions
|
---|
| 458 | //
|
---|
| 459 | // NOTE: We need to calculate both_sampled_potential for fitting partial charges,
|
---|
| 460 | // nowhere else is this quantity needed.
|
---|
| 461 | //if (OpenBoundaryConditions)
|
---|
| 462 | // calculateNucleiNucleiLongRangeContribution(shortrangedata, longrangedata_both);
|
---|
| 463 |
|
---|
[e2925fd] | 464 | // go through either data and replace nuclei_long with contribution from both
|
---|
| 465 | ASSERT( longrangedata.size() == longrangedata_both.size(),
|
---|
| 466 | "FragmentationFragmentationAutomationAction::performCall() - longrange results have different sizes.");
|
---|
| 467 | std::map<JobId_t, VMGData>::iterator destiter = longrangedata.begin();
|
---|
[e355b31] | 468 | std::map<JobId_t, VMGData>::const_iterator srciter = longrangedata_both.begin();
|
---|
| 469 | for (;destiter != longrangedata.end(); ++srciter, ++destiter) {
|
---|
| 470 | destiter->second.both_sampled_potential = srciter->second.sampled_potential;
|
---|
[e2925fd] | 471 | destiter->second.nuclei_long = srciter->second.nuclei_long;
|
---|
[94db13] | 472 | destiter->second.forces = srciter->second.forces;
|
---|
| 473 | destiter->second.hasForces = srciter->second.hasForces;
|
---|
[e355b31] | 474 | }
|
---|
[e2925fd] | 475 | }
|
---|
[4f056e] | 476 | }
|
---|
[a2295a] | 477 |
|
---|
[b6b21a] | 478 | if (params.DoPrintDebug.get()) {
|
---|
| 479 | std::map<JobId_t, std::string> debugData;
|
---|
| 480 | {
|
---|
| 481 | if (!full_sample.empty()) {
|
---|
| 482 | // create debug jobs for each level to print the summed-up potential to vtk files
|
---|
| 483 | VMGDebugGridFragmentController debugcontroller(io_service);
|
---|
| 484 | debugcontroller.setHost(params.host.get());
|
---|
| 485 | debugcontroller.setPort(params.port.get());
|
---|
| 486 | debugcontroller.requestIds(full_sample.size());
|
---|
[26b4d62] | 487 | if (!debugcontroller.createDebugJobs(full_sample, OpenBoundaryConditions)) {
|
---|
| 488 | STATUS("Could not create debug jobs.");
|
---|
[b6b21a] | 489 | return Action::failure;
|
---|
[26b4d62] | 490 | }
|
---|
[b6b21a] | 491 | debugcontroller.waitforResults(full_sample.size());
|
---|
| 492 | debugcontroller.getResults(debugData);
|
---|
| 493 | Exitflag += debugcontroller.getExitflag();
|
---|
| 494 | }
|
---|
[a2295a] | 495 | }
|
---|
[2764e0] | 496 | }
|
---|
[2ae247] | 497 | container.clear();
|
---|
[a3427f] | 498 | container.addFullResults(keysets, forcekeysets, shortrangedata, longrangedata);
|
---|
| 499 | } else {
|
---|
[2ae247] | 500 | container.clear();
|
---|
[a3427f] | 501 | container.addShortRangeResults(keysets, forcekeysets, shortrangedata);
|
---|
[69c733] | 502 | }
|
---|
[a3427f] | 503 | #else
|
---|
[2ae247] | 504 | container.clear();
|
---|
[a3427f] | 505 | container.addShortRangeResults(keysets, forcekeysets, shortrangedata);
|
---|
[69c733] | 506 | #endif
|
---|
[edecba] | 507 |
|
---|
[bae7bc] | 508 | // now clear all present jobs as we are done
|
---|
| 509 | FragmentJobQueue::getInstance().clear();
|
---|
| 510 |
|
---|
[26b4d62] | 511 | if (Exitflag != 0)
|
---|
| 512 | STATUS("Controller has returned failure.");
|
---|
[edecba] | 513 | return (Exitflag == 0) ? Action::success : Action::failure;
|
---|
| 514 | }
|
---|
| 515 |
|
---|
[b5b01e] | 516 | ActionState::ptr FragmentationFragmentationAutomationAction::performUndo(ActionState::ptr _state) {
|
---|
[edecba] | 517 | return Action::success;
|
---|
| 518 | }
|
---|
| 519 |
|
---|
[b5b01e] | 520 | ActionState::ptr FragmentationFragmentationAutomationAction::performRedo(ActionState::ptr _state){
|
---|
[edecba] | 521 | return Action::success;
|
---|
| 522 | }
|
---|
| 523 |
|
---|
| 524 | bool FragmentationFragmentationAutomationAction::canUndo() {
|
---|
| 525 | return false;
|
---|
| 526 | }
|
---|
| 527 |
|
---|
| 528 | bool FragmentationFragmentationAutomationAction::shouldUndo() {
|
---|
| 529 | return false;
|
---|
| 530 | }
|
---|
| 531 | /** =========== end of function ====================== */
|
---|