| 1 | /* | 
|---|
| 2 | * Project: MoleCuilder | 
|---|
| 3 | * Description: creates and alters molecular systems | 
|---|
| 4 | * Copyright (C)  2012 University of Bonn. All rights reserved. | 
|---|
| 5 | * Copyright (C)  2013 Frederik Heber. All rights reserved. | 
|---|
| 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/>. | 
|---|
| 22 | */ | 
|---|
| 23 |  | 
|---|
| 24 | /* | 
|---|
| 25 | * VMGFragmentController.cpp | 
|---|
| 26 | * | 
|---|
| 27 | *  Created on: Aug 27, 2012 | 
|---|
| 28 | *      Author: heber | 
|---|
| 29 | */ | 
|---|
| 30 |  | 
|---|
| 31 |  | 
|---|
| 32 | // include config.h | 
|---|
| 33 | #ifdef HAVE_CONFIG_H | 
|---|
| 34 | #include <config.h> | 
|---|
| 35 | #endif | 
|---|
| 36 |  | 
|---|
| 37 | // boost asio needs specific operator new | 
|---|
| 38 | #include <boost/asio.hpp> | 
|---|
| 39 |  | 
|---|
| 40 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| 41 |  | 
|---|
| 42 | #include "VMGFragmentController.hpp" | 
|---|
| 43 |  | 
|---|
| 44 | #include "Atom/atom.hpp" | 
|---|
| 45 | #include "Element/element.hpp" | 
|---|
| 46 | #include "Helpers/defs.hpp" | 
|---|
| 47 | #include "Jobs/VMGJob.hpp" | 
|---|
| 48 | #include "molecule.hpp" | 
|---|
| 49 | #include "World.hpp" | 
|---|
| 50 |  | 
|---|
| 51 | /** Helper function for the number of core electrons of a given element \a z. | 
|---|
| 52 | * | 
|---|
| 53 | * \param z atomic number of element | 
|---|
| 54 | * \return number of core electrons for this element | 
|---|
| 55 | */ | 
|---|
| 56 | static int getCoreElectrons(const int z) | 
|---|
| 57 | { | 
|---|
| 58 | int n=0; | 
|---|
| 59 | if (z > 2) n += 2; | 
|---|
| 60 | if (z > 10) n += 8; | 
|---|
| 61 | if (z > 18) n += 8; | 
|---|
| 62 | if (z > 30) n += 10; | 
|---|
| 63 | if (z > 36) n += 8; | 
|---|
| 64 | if (z > 48) n += 10; | 
|---|
| 65 | if (z > 54) n += 8; | 
|---|
| 66 | return n; | 
|---|
| 67 | } | 
|---|
| 68 |  | 
|---|
| 69 | bool VMGFragmentController::createLongRangeJobs( | 
|---|
| 70 | const std::map<JobId_t, MPQCData> &fragmentData, | 
|---|
| 71 | const std::vector<SamplingGrid> &full_sampled_grid, | 
|---|
| 72 | const size_t near_field_cells, | 
|---|
| 73 | const size_t interpolation_degree, | 
|---|
| 74 | const SampleParticles_t _SampleParticles, | 
|---|
| 75 | const TreatGrid_t _TreatGrid, | 
|---|
| 76 | const MPQCData::DoValenceOnly_t _DoValenceOnly, | 
|---|
| 77 | const bool _DoPrintDebug, | 
|---|
| 78 | const bool _OpenBoundaryConditions) | 
|---|
| 79 | { | 
|---|
| 80 | std::vector<FragmentJob::ptr> jobs; | 
|---|
| 81 | /// add one job for each fragment as the short-range correction which we need | 
|---|
| 82 | /// to subtract from the obtained full potential to get the long-range part only | 
|---|
| 83 | for (std::map<JobId_t, MPQCData>::const_iterator iter = fragmentData.begin(); | 
|---|
| 84 | iter != fragmentData.end(); ++iter) { | 
|---|
| 85 | const JobId_t next_id = getAvailableId(); | 
|---|
| 86 | const MPQCData &data = iter->second; | 
|---|
| 87 | LOG(1, "INFO: Creating VMGJob with " << data.sampled_grid | 
|---|
| 88 | << " gridpoints and " << data.charges.size() << " particle charges."); | 
|---|
| 89 | FragmentJob::ptr testJob( | 
|---|
| 90 | new VMGJob( | 
|---|
| 91 | next_id, | 
|---|
| 92 | _TreatGrid == DoTreatGrid ? | 
|---|
| 93 | data.sampled_grid : | 
|---|
| 94 | SamplingGrid(data.sampled_grid.begin, data.sampled_grid.end, data.sampled_grid.level), | 
|---|
| 95 | data.positions, | 
|---|
| 96 | data.charges, | 
|---|
| 97 | near_field_cells, | 
|---|
| 98 | interpolation_degree, | 
|---|
| 99 | _SampleParticles == DoSampleParticles, | 
|---|
| 100 | _DoPrintDebug, | 
|---|
| 101 | _OpenBoundaryConditions) ); | 
|---|
| 102 | jobs.push_back(testJob); | 
|---|
| 103 | } | 
|---|
| 104 |  | 
|---|
| 105 | /// prepare positions and charges of full system | 
|---|
| 106 | /// \note we cannot use the summed up Fragment here, as the saturation hydrogens | 
|---|
| 107 | /// are in the way and cannot be sorted out properly/in a simple fashion. | 
|---|
| 108 | std::vector< std::vector<double> > positions; | 
|---|
| 109 | std::vector<double> charges; | 
|---|
| 110 | { | 
|---|
| 111 | const World::AtomComposite &atoms = World::getInstance().getAllAtoms(); | 
|---|
| 112 | positions.reserve(atoms.size()); | 
|---|
| 113 | charges.reserve(atoms.size()); | 
|---|
| 114 | std::vector<double> position(3, 0.); | 
|---|
| 115 | for (World::AtomComposite::const_iterator iter = atoms.begin(); | 
|---|
| 116 | iter != atoms.end(); ++iter) { | 
|---|
| 117 | const Vector &pos = (*iter)->getPosition(); | 
|---|
| 118 | // convert positions to atomic length units | 
|---|
| 119 | for (size_t i=0;i<3;++i) position[i] = pos[i]/AtomicLengthToAngstroem; | 
|---|
| 120 | positions.push_back(position); | 
|---|
| 121 | int charge = (*iter)->getElement().getAtomicNumber(); | 
|---|
| 122 | // subtract core electron charge from nuclei charge if only valence sampled | 
|---|
| 123 | if (_DoValenceOnly == MPQCData::DoSampleValenceOnly) | 
|---|
| 124 | charge -= getCoreElectrons(charge); | 
|---|
| 125 | charges.push_back((double)charge); | 
|---|
| 126 | } | 
|---|
| 127 | } | 
|---|
| 128 | /// and submit full job | 
|---|
| 129 | for(std::vector<SamplingGrid>::const_iterator iter = full_sampled_grid.begin(); | 
|---|
| 130 | iter != full_sampled_grid.end(); | 
|---|
| 131 | ++iter) { | 
|---|
| 132 | const SamplingGrid &grid = *iter; | 
|---|
| 133 | const JobId_t next_id = getAvailableId(); | 
|---|
| 134 | LOG(1, "INFO: Creating full VMGJob with " << *iter | 
|---|
| 135 | << " gridpoints and " << charges.size() << " particle charges."); | 
|---|
| 136 | FragmentJob::ptr testJob( | 
|---|
| 137 | new VMGJob( | 
|---|
| 138 | next_id, | 
|---|
| 139 | _TreatGrid == DoTreatGrid ? | 
|---|
| 140 | grid : | 
|---|
| 141 | SamplingGrid(grid.begin, grid.end, grid.level), | 
|---|
| 142 | positions, | 
|---|
| 143 | charges, | 
|---|
| 144 | near_field_cells, | 
|---|
| 145 | interpolation_degree, | 
|---|
| 146 | _SampleParticles == DoSampleParticles, | 
|---|
| 147 | _DoPrintDebug, | 
|---|
| 148 | _OpenBoundaryConditions) ); | 
|---|
| 149 | jobs.push_back(testJob); | 
|---|
| 150 | } | 
|---|
| 151 |  | 
|---|
| 152 | /// then send jobs to controller | 
|---|
| 153 | addJobs(jobs); | 
|---|
| 154 | sendJobs(host, port); | 
|---|
| 155 | RunService("Adding VMGJobs"); | 
|---|
| 156 |  | 
|---|
| 157 | return true; | 
|---|
| 158 | } | 
|---|