[ffe057] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
[5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
---|
[ffe057] | 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"
|
---|
[de84ef] | 46 | #include "Helpers/defs.hpp"
|
---|
[ffe057] | 47 | #include "Jobs/VMGJob.hpp"
|
---|
| 48 | #include "molecule.hpp"
|
---|
[666e9e] | 49 | #include "Potentials/Particles/Particle.hpp"
|
---|
| 50 | #include "Potentials/Particles/ParticleRegistry.hpp"
|
---|
[ffe057] | 51 | #include "World.hpp"
|
---|
| 52 |
|
---|
[6ff62c] | 53 | /** Helper function for the number of core electrons of a given element \a z.
|
---|
| 54 | *
|
---|
| 55 | * \param z atomic number of element
|
---|
| 56 | * \return number of core electrons for this element
|
---|
| 57 | */
|
---|
| 58 | static int getCoreElectrons(const int z)
|
---|
| 59 | {
|
---|
| 60 | int n=0;
|
---|
| 61 | if (z > 2) n += 2;
|
---|
| 62 | if (z > 10) n += 8;
|
---|
| 63 | if (z > 18) n += 8;
|
---|
| 64 | if (z > 30) n += 10;
|
---|
| 65 | if (z > 36) n += 8;
|
---|
| 66 | if (z > 48) n += 10;
|
---|
| 67 | if (z > 54) n += 8;
|
---|
| 68 | return n;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[ffe057] | 71 | bool VMGFragmentController::createLongRangeJobs(
|
---|
| 72 | const std::map<JobId_t, MPQCData> &fragmentData,
|
---|
[a2295a] | 73 | const std::vector<SamplingGrid> &full_sampled_grid,
|
---|
[cd2591] | 74 | const size_t near_field_cells,
|
---|
[6ff62c] | 75 | const size_t interpolation_degree,
|
---|
[e2925fd] | 76 | const SampleParticles_t _SampleParticles,
|
---|
| 77 | const TreatGrid_t _TreatGrid,
|
---|
[b6b21a] | 78 | const MPQCData::DoValenceOnly_t _DoValenceOnly,
|
---|
[ee9018] | 79 | const bool _DoPrintDebug,
|
---|
[17e4fd] | 80 | const bool _OpenBoundaryConditions,
|
---|
[666e9e] | 81 | const bool _DoSmearCharges,
|
---|
| 82 | const bool _UseImplicitCharges)
|
---|
[ffe057] | 83 | {
|
---|
| 84 | std::vector<FragmentJob::ptr> jobs;
|
---|
[b6b21a] | 85 | /// add one job for each fragment as the short-range correction which we need
|
---|
| 86 | /// to subtract from the obtained full potential to get the long-range part only
|
---|
[ffe057] | 87 | for (std::map<JobId_t, MPQCData>::const_iterator iter = fragmentData.begin();
|
---|
| 88 | iter != fragmentData.end(); ++iter) {
|
---|
| 89 | const JobId_t next_id = getAvailableId();
|
---|
[c44322] | 90 | const MPQCData &data = iter->second;
|
---|
| 91 | LOG(1, "INFO: Creating VMGJob with " << data.sampled_grid
|
---|
| 92 | << " gridpoints and " << data.charges.size() << " particle charges.");
|
---|
[ffe057] | 93 | FragmentJob::ptr testJob(
|
---|
[b6b21a] | 94 | new VMGJob(
|
---|
| 95 | next_id,
|
---|
[e2925fd] | 96 | _TreatGrid == DoTreatGrid ?
|
---|
| 97 | data.sampled_grid :
|
---|
| 98 | SamplingGrid(data.sampled_grid.begin, data.sampled_grid.end, data.sampled_grid.level),
|
---|
[b6b21a] | 99 | data.positions,
|
---|
| 100 | data.charges,
|
---|
| 101 | near_field_cells,
|
---|
| 102 | interpolation_degree,
|
---|
[e2925fd] | 103 | _SampleParticles == DoSampleParticles,
|
---|
[ee9018] | 104 | _DoPrintDebug,
|
---|
[17e4fd] | 105 | _OpenBoundaryConditions,
|
---|
| 106 | _DoSmearCharges) );
|
---|
[ffe057] | 107 | jobs.push_back(testJob);
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[b6b21a] | 110 | /// prepare positions and charges of full system
|
---|
| 111 | /// \note we cannot use the summed up Fragment here, as the saturation hydrogens
|
---|
| 112 | /// are in the way and cannot be sorted out properly/in a simple fashion.
|
---|
[a2295a] | 113 | std::vector< std::vector<double> > positions;
|
---|
| 114 | std::vector<double> charges;
|
---|
[666e9e] | 115 | const World &world = const_cast<const World &>(World::getInstance());
|
---|
| 116 | const ParticleRegistry ®istry = const_cast<const ParticleRegistry &>(ParticleRegistry::getInstance());
|
---|
[ffe057] | 117 | {
|
---|
[666e9e] | 118 | const World::ConstAtomComposite &atoms = world.getAllAtoms();
|
---|
[ffe057] | 119 | positions.reserve(atoms.size());
|
---|
| 120 | charges.reserve(atoms.size());
|
---|
| 121 | std::vector<double> position(3, 0.);
|
---|
[a58c16] | 122 | for (World::ConstAtomComposite::const_iterator iter = atoms.begin();
|
---|
[ffe057] | 123 | iter != atoms.end(); ++iter) {
|
---|
[666e9e] | 124 | // set position for this atom
|
---|
[ffe057] | 125 | const Vector &pos = (*iter)->getPosition();
|
---|
[de84ef] | 126 | // convert positions to atomic length units
|
---|
[666e9e] | 127 | for (size_t i=0;i<3;++i)
|
---|
| 128 | position[i] = pos[i]/AtomicLengthToAngstroem;
|
---|
| 129 |
|
---|
| 130 | // use partial charges ...
|
---|
| 131 | const atomId_t atomid = (*iter)->getId();
|
---|
| 132 | if ((!world.isAtomSelected(atomid)) && (_UseImplicitCharges)) {
|
---|
| 133 | // ... for all unselected particles ...
|
---|
| 134 | const std::string &symbol = (*iter)->getElement().getSymbol();
|
---|
| 135 | if (registry.isPresentByName(symbol)) {
|
---|
| 136 | // ... that are present in ParticleRegistry
|
---|
| 137 | const Particle * const particle = registry.getByName(symbol);
|
---|
| 138 | LOG(3, "DEBUG: Using implicit charge " << particle->charge << " for atom " << atomid);
|
---|
| 139 | positions.push_back(position);
|
---|
| 140 | charges.push_back(particle->charge);
|
---|
| 141 | }
|
---|
| 142 | } else {
|
---|
| 143 | double charge = (*iter)->getElement().getAtomicNumber();
|
---|
| 144 | // subtract core electron charge from nuclei charge if only valence sampled
|
---|
| 145 | if (_DoValenceOnly == MPQCData::DoSampleValenceOnly)
|
---|
| 146 | charge -= getCoreElectrons(charge);
|
---|
| 147 | positions.push_back(position);
|
---|
| 148 | charges.push_back((double)charge);
|
---|
| 149 | }
|
---|
[ffe057] | 150 | }
|
---|
[a2295a] | 151 | }
|
---|
[b6b21a] | 152 | /// and submit full job
|
---|
[a2295a] | 153 | for(std::vector<SamplingGrid>::const_iterator iter = full_sampled_grid.begin();
|
---|
| 154 | iter != full_sampled_grid.end();
|
---|
| 155 | ++iter) {
|
---|
[e2925fd] | 156 | const SamplingGrid &grid = *iter;
|
---|
[ffe057] | 157 | const JobId_t next_id = getAvailableId();
|
---|
[a2295a] | 158 | LOG(1, "INFO: Creating full VMGJob with " << *iter
|
---|
[ffe057] | 159 | << " gridpoints and " << charges.size() << " particle charges.");
|
---|
| 160 | FragmentJob::ptr testJob(
|
---|
[b6b21a] | 161 | new VMGJob(
|
---|
| 162 | next_id,
|
---|
[e2925fd] | 163 | _TreatGrid == DoTreatGrid ?
|
---|
| 164 | grid :
|
---|
| 165 | SamplingGrid(grid.begin, grid.end, grid.level),
|
---|
[b6b21a] | 166 | positions,
|
---|
| 167 | charges,
|
---|
| 168 | near_field_cells,
|
---|
| 169 | interpolation_degree,
|
---|
[e2925fd] | 170 | _SampleParticles == DoSampleParticles,
|
---|
[ee9018] | 171 | _DoPrintDebug,
|
---|
[17e4fd] | 172 | _OpenBoundaryConditions,
|
---|
| 173 | _DoSmearCharges) );
|
---|
[ffe057] | 174 | jobs.push_back(testJob);
|
---|
| 175 | }
|
---|
| 176 |
|
---|
[b6b21a] | 177 | /// then send jobs to controller
|
---|
[ffe057] | 178 | addJobs(jobs);
|
---|
| 179 | sendJobs(host, port);
|
---|
| 180 | RunService("Adding VMGJobs");
|
---|
| 181 |
|
---|
| 182 | return true;
|
---|
| 183 | }
|
---|