source: src/Fragmentation/Automation/VMGFragmentController.cpp@ 3b6956

Last change on this file since 3b6956 was 17e4fd, checked in by Frederik Heber <heber@…>, 10 years ago

Added new option DoSmearElectronicCharges to FragmentationAutomationAction.

  • this uses ChargeSmearer: is prepared in InterfaceVMGJob and used in WindowGrid_converter.
  • VMGJob and VMGFragmentController need to pass along the DoSmearCharges option from the command-line.
  • Property mode set to 100644
File size: 5.4 KB
RevLine 
[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"
49#include "World.hpp"
50
[6ff62c]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 */
56static 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
[ffe057]69bool VMGFragmentController::createLongRangeJobs(
70 const std::map<JobId_t, MPQCData> &fragmentData,
[a2295a]71 const std::vector<SamplingGrid> &full_sampled_grid,
[cd2591]72 const size_t near_field_cells,
[6ff62c]73 const size_t interpolation_degree,
[e2925fd]74 const SampleParticles_t _SampleParticles,
75 const TreatGrid_t _TreatGrid,
[b6b21a]76 const MPQCData::DoValenceOnly_t _DoValenceOnly,
[ee9018]77 const bool _DoPrintDebug,
[17e4fd]78 const bool _OpenBoundaryConditions,
79 const bool _DoSmearCharges)
[ffe057]80{
81 std::vector<FragmentJob::ptr> jobs;
[b6b21a]82 /// add one job for each fragment as the short-range correction which we need
83 /// to subtract from the obtained full potential to get the long-range part only
[ffe057]84 for (std::map<JobId_t, MPQCData>::const_iterator iter = fragmentData.begin();
85 iter != fragmentData.end(); ++iter) {
86 const JobId_t next_id = getAvailableId();
[c44322]87 const MPQCData &data = iter->second;
88 LOG(1, "INFO: Creating VMGJob with " << data.sampled_grid
89 << " gridpoints and " << data.charges.size() << " particle charges.");
[ffe057]90 FragmentJob::ptr testJob(
[b6b21a]91 new VMGJob(
92 next_id,
[e2925fd]93 _TreatGrid == DoTreatGrid ?
94 data.sampled_grid :
95 SamplingGrid(data.sampled_grid.begin, data.sampled_grid.end, data.sampled_grid.level),
[b6b21a]96 data.positions,
97 data.charges,
98 near_field_cells,
99 interpolation_degree,
[e2925fd]100 _SampleParticles == DoSampleParticles,
[ee9018]101 _DoPrintDebug,
[17e4fd]102 _OpenBoundaryConditions,
103 _DoSmearCharges) );
[ffe057]104 jobs.push_back(testJob);
105 }
106
[b6b21a]107 /// prepare positions and charges of full system
108 /// \note we cannot use the summed up Fragment here, as the saturation hydrogens
109 /// are in the way and cannot be sorted out properly/in a simple fashion.
[a2295a]110 std::vector< std::vector<double> > positions;
111 std::vector<double> charges;
[ffe057]112 {
[a58c16]113 const World::ConstAtomComposite &atoms = const_cast<const World &>(World::getInstance()).
114 getAllAtoms();
[ffe057]115 positions.reserve(atoms.size());
116 charges.reserve(atoms.size());
117 std::vector<double> position(3, 0.);
[a58c16]118 for (World::ConstAtomComposite::const_iterator iter = atoms.begin();
[ffe057]119 iter != atoms.end(); ++iter) {
120 const Vector &pos = (*iter)->getPosition();
[de84ef]121 // convert positions to atomic length units
122 for (size_t i=0;i<3;++i) position[i] = pos[i]/AtomicLengthToAngstroem;
[ffe057]123 positions.push_back(position);
[6ff62c]124 int charge = (*iter)->getElement().getAtomicNumber();
125 // subtract core electron charge from nuclei charge if only valence sampled
126 if (_DoValenceOnly == MPQCData::DoSampleValenceOnly)
127 charge -= getCoreElectrons(charge);
128 charges.push_back((double)charge);
[ffe057]129 }
[a2295a]130 }
[b6b21a]131 /// and submit full job
[a2295a]132 for(std::vector<SamplingGrid>::const_iterator iter = full_sampled_grid.begin();
133 iter != full_sampled_grid.end();
134 ++iter) {
[e2925fd]135 const SamplingGrid &grid = *iter;
[ffe057]136 const JobId_t next_id = getAvailableId();
[a2295a]137 LOG(1, "INFO: Creating full VMGJob with " << *iter
[ffe057]138 << " gridpoints and " << charges.size() << " particle charges.");
139 FragmentJob::ptr testJob(
[b6b21a]140 new VMGJob(
141 next_id,
[e2925fd]142 _TreatGrid == DoTreatGrid ?
143 grid :
144 SamplingGrid(grid.begin, grid.end, grid.level),
[b6b21a]145 positions,
146 charges,
147 near_field_cells,
148 interpolation_degree,
[e2925fd]149 _SampleParticles == DoSampleParticles,
[ee9018]150 _DoPrintDebug,
[17e4fd]151 _OpenBoundaryConditions,
152 _DoSmearCharges) );
[ffe057]153 jobs.push_back(testJob);
154 }
155
[b6b21a]156 /// then send jobs to controller
[ffe057]157 addJobs(jobs);
158 sendJobs(host, port);
159 RunService("Adding VMGJobs");
160
161 return true;
162}
Note: See TracBrowser for help on using the repository browser.