source: src/Jobs/Grid/SamplingGrid.cpp@ e2404f

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since e2404f was e2404f, checked in by Frederik Heber <heber@…>, 12 years ago

New SamplingGrid::setDomainSize() and ::setWindowSize() helper functions.

  • Property mode set to 100644
File size: 11.2 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2012 University of Bonn. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24 * SamplingGrid.cpp
25 *
26 * Created on: 25.07.2012
27 * Author: heber
28 */
29
30// include config.h
31#ifdef HAVE_CONFIG_H
32#include <config.h>
33#endif
34
35// include headers that implement a archive in simple text format
36// otherwise BOOST_CLASS_EXPORT_IMPLEMENT has no effect
37#include <boost/archive/text_oarchive.hpp>
38#include <boost/archive/text_iarchive.hpp>
39
40#include "CodePatterns/MemDebug.hpp"
41
42#include "Jobs/Grid/SamplingGrid.hpp"
43
44#include <limits>
45
46#include "CodePatterns/Assert.hpp"
47#include "CodePatterns/Log.hpp"
48
49// static instances
50const double SamplingGrid::zeroOffset[3] = { 0., 0., 0. };
51
52SamplingGrid::SamplingGrid() :
53 SamplingGridProperties()
54{
55 setWindowSize(zeroOffset, zeroOffset);
56 ASSERT( getWindowGridPoints() == (size_t)0,
57 "SamplingGrid::SamplingGrid() - incorrect number of samples given for the window.");
58}
59
60SamplingGrid::SamplingGrid(const double _begin[3],
61 const double _end[3],
62 const int _level,
63 const sampledvalues_t &_sampled_grid) :
64 SamplingGridProperties(_begin, _end, _level),
65 sampled_grid(_sampled_grid)
66{
67 setWindowSize(_begin, _end);
68 ASSERT( getWindowGridPoints() == (size_t)_sampled_grid.size(),
69 "SamplingGrid::SamplingGrid() - incorrect number of samples given for the window.");
70}
71
72SamplingGrid::SamplingGrid(const SamplingGrid &_grid) :
73 SamplingGridProperties(_grid),
74 sampled_grid(_grid.sampled_grid)
75{
76 setWindowSize(_grid.begin, _grid.end);
77}
78
79SamplingGrid::SamplingGrid(const SamplingGridProperties &_props) :
80 SamplingGridProperties(_props)
81{
82 setWindowSize(_props.begin, _props.end);
83}
84
85SamplingGrid::SamplingGrid(
86 const SamplingGridProperties &_props,
87 const sampledvalues_t &_sampled_grid) :
88 SamplingGridProperties(_props),
89 sampled_grid(_sampled_grid)
90{
91 setWindowSize(_props.begin, _props.end);
92 ASSERT( getWindowGridPoints() == (size_t)_sampled_grid.size(),
93 "SamplingGrid::SamplingGrid() - incorrect number of samples given for the window.");
94}
95
96SamplingGrid::~SamplingGrid()
97{}
98
99SamplingGrid& SamplingGrid::operator=(const SamplingGrid& other)
100{
101 // check for self-assignment
102 if (this != &other) {
103 static_cast<SamplingGridProperties &>(*this) = other;
104 setWindowSize(other.begin_window, other.end_window);
105 sampled_grid = other.sampled_grid;
106 }
107 return *this;
108}
109
110SamplingGrid& SamplingGrid::operator*=(const SamplingGrid& other)
111{
112 // check that grids are compatible
113 if (isCompatible(other)) {
114 sampledvalues_t::iterator iter = sampled_grid.begin();
115 sampledvalues_t::const_iterator otheriter = other.sampled_grid.begin();
116 for(; iter != sampled_grid.end(); ++iter, ++otheriter )
117 *iter *= (*otheriter);
118 } else {
119 ASSERT(0, "SamplingGrid::operator*=() - superposing incompatible grids is so far not in the cards.");
120 }
121 return *this;
122}
123
124void SamplingGrid::superposeOtherGrids(const SamplingGrid &other, const double prefactor)
125{
126 /// check that grids are compatible
127 if (isCompatible(other)) {
128 /// get maximum of window
129 double max_begin_window[3];
130 double max_end_window[3];
131 bool doExtend = false;
132 for (size_t index=0; index<3;++index) {
133 if (begin_window[index] >= other.begin_window[index]) {
134 max_begin_window[index] = other.begin_window[index];
135 doExtend = true;
136 } else {
137 max_begin_window[index] = begin_window[index];
138 }
139 if (end_window[index] >= other.end_window[index]) {
140 max_end_window[index] = end_window[index];
141 } else {
142 max_end_window[index] = other.end_window[index];
143 doExtend = true;
144 }
145 }
146 if (doExtend)
147 extendWindow(max_begin_window, max_end_window);
148 /// and copy other into larger window, too
149 addOntoWindow(other.begin_window, other.end_window, other.sampled_grid);
150 // then add other's grid onto this one
151 sampledvalues_t::iterator iter = sampled_grid.begin();
152 sampledvalues_t::const_iterator otheriter = other.sampled_grid.begin();
153 for(; iter != sampled_grid.end(); ++iter, ++otheriter )
154 *iter += prefactor * (*otheriter);
155 } else {
156 ASSERT(0, "SamplingGrid::superposeOtherGrids() - superposing incompatible grids is so far not in the cards.");
157 }
158}
159
160const double SamplingGrid::getVolume() const
161{
162 double volume = 1.;
163 for (size_t i=0;i<3;++i)
164 volume *= end[i]-begin[i];
165 return volume;
166}
167
168const double SamplingGrid::getWindowVolume() const
169{
170 double volume = 1.;
171 for (size_t i=0;i<3;++i)
172 volume *= end_window[i]-begin_window[i];
173 return volume;
174}
175
176const size_t SamplingGrid::getTotalGridPoints() const
177{
178 return pow(getGridPointsPerAxis(),3);
179}
180
181const size_t SamplingGrid::getGridPointsPerAxis() const
182{
183 return pow(2, level);
184}
185
186const size_t SamplingGrid::getWindowGridPoints() const
187{
188 const double volume = getVolume();
189 if (fabs(volume) < std::numeric_limits<double>::epsilon())
190 return 0;
191 else
192 return (getWindowVolume()*getTotalGridPoints())/volume;
193}
194
195double SamplingGrid::integral() const
196{
197 const double volume_element = getVolume()/(double)getTotalGridPoints();
198 double int_value = 0.;
199 for (sampledvalues_t::const_iterator iter = sampled_grid.begin();
200 iter != sampled_grid.end();
201 ++iter)
202 int_value += *iter;
203 int_value *= volume_element;
204 LOG(2, "DEBUG: SamplingGrid::integral() is " << scientific << setprecision(13) << int_value << ".");
205 return int_value;
206}
207
208double SamplingGrid::integral(const SamplingGrid &weight) const
209{
210 if (isCompatible(weight)) {
211 const double volume_element = getVolume()/(double)getTotalGridPoints();
212 double int_value = 0.;
213 sampledvalues_t::const_iterator iter = sampled_grid.begin();
214 sampledvalues_t::const_iterator weightiter = weight.sampled_grid.begin();
215 for (;iter != sampled_grid.end();++iter,++weightiter)
216 int_value += (*weightiter) * (*iter);
217 int_value *= volume_element;
218 //LOG(2, "DEBUG: SamplingGrid::integral() is " << scientific << setprecision(13) << int_value << ".");
219 return int_value;
220 } else
221 return 0.;
222}
223
224void SamplingGrid::setWindowSize(
225 const double _begin_window[3],
226 const double _end_window[3])
227{
228 for (size_t index=0;index<3;++index) {
229 ASSERT( _begin_window[index] >= begin[index],
230 "SamplingGrid::setWindowSize() - window starts earlier than domain on "
231 +toString(index)+"th component.");
232 begin_window[index] = _begin_window[index];
233 ASSERT( _end_window[index] <= end[index],
234 "SamplingGrid::setWindowSize() - window ends later than domain on "
235 +toString(index)+"th component.");
236 end_window[index] = _end_window[index];
237 }
238}
239
240void SamplingGrid::setWindow(
241 const double _begin_window[3],
242 const double _end_window[3])
243{
244 setWindowSize(_begin_window, _end_window);
245 const size_t gridpoints_window = getWindowGridPoints();
246 sampled_grid.resize(gridpoints_window, 0.);
247}
248
249void SamplingGrid::setDomainSize(
250 const double _begin[3],
251 const double _end[3])
252{
253 for (size_t index=0;index<3;++index) {
254 begin[index] = _begin[index];
255 end[index] = _end[index];
256 }
257}
258
259void SamplingGrid::setDomain(
260 const double _begin[3],
261 const double _end[3])
262{
263 setDomainSize(_begin, _end);
264 setWindowSize(_begin, _end);
265 const size_t gridpoints = getTotalGridPoints();
266 sampled_grid.resize(gridpoints, 0.);
267}
268
269void SamplingGrid::extendWindow(
270 const double _begin_window[3],
271 const double _end_window[3])
272{
273 // check that we truly have to extend the window
274#ifndef NDEBUG
275 for(size_t index=0;index < 3; ++index) {
276 ASSERT ( begin_window[index] >= _begin_window[index],
277 "SamplingGrid::extendWindow() - component "+toString(index)+
278 " of window start is greater than old value.");
279 ASSERT ( end_window[index] <= _end_window[index],
280 "SamplingGrid::extendWindow() - component "+toString(index)+
281 " of window end is less than old value.");
282 }
283#endif
284 // copy old window size and values
285 double old_begin_window[3];
286 double old_end_window[3];
287 for(size_t index=0;index<3;++index) {
288 old_begin_window[index] = begin_window[index];
289 old_end_window[index] = end_window[index];
290 }
291 sampledvalues_t old_values(sampled_grid);
292 // now extend it ...
293 addOntoWindow(old_begin_window, old_end_window, old_values);
294}
295
296void SamplingGrid::addOntoWindow(
297 const double _begin_window[3],
298 const double _end_window[3],
299 const sampledvalues_t &_sampled_grid)
300{
301#ifndef NDEBUG
302 for(size_t index=0;index<3;++index) {
303 ASSERT( _begin_window[index] >= begin_window[index],
304 "SamplingGrid::addOntoWindow() - given window starts earlier in component "
305 +toString(index)+".");
306 ASSERT( _end_window[index] <= end_window[index],
307 "SamplingGrid::addOntoWindow() - given window ends later in component "
308 +toString(index)+".");
309 }
310#endif
311 // the only issue are indices
312 const size_t gridpoints_axis = pow(2, level);
313 size_t offset[3];
314 size_t length[3];
315 for(size_t index=0;index<3;++index) {
316 offset[index] = gridpoints_axis*(_begin_window[index] - begin_window[index]);
317 length[index] = gridpoints_axis*(_end_window[index] - _begin_window[index]);
318 }
319 ASSERT( length[0]*length[1]*length[2] == _sampled_grid.size(),
320 "SamplingGrid::addOntoWindow() - not enough sampled values given.");
321 size_t N[3];
322// sampledvalues_t::iterator griditer = sampled_grid.begin();
323 sampledvalues_t::const_iterator copyiter = _sampled_grid.begin();
324 for(N[0]=offset[0]; N[0] < length[0]; ++N[0]) {
325 for(N[1]=offset[1]; N[1] < length[1]; ++N[1]) {
326 for(N[2]=offset[2]; N[2] < length[2]; ++N[2]) {
327 const size_t index =
328 (N[0]*gridpoints_axis+N[1])*gridpoints_axis+N[2];
329 sampled_grid[index] += *copyiter;
330 }
331 }
332 }
333}
334
335std::ostream & operator<<(std::ostream &ost, const SamplingGrid& other)
336{
337 ost << "SamplingGrid";
338 ost << " starting at " << other.begin[0] << "," << other.begin[1] << "," << other.begin[2];
339 ost << " ending at " << other.end[0] << "," << other.end[1] << "," << other.end[2];
340 ost << ", window starting at " << other.begin_window[0] << "," << other.begin_window[1] << "," << other.begin_window[2];
341 ost << ", window ending at " << other.end_window[0] << "," << other.end_window[1] << "," << other.end_window[2];
342 ost << ", level of " << other.level;
343 ost << " and integrated value of " << other.integral();
344 return ost;
345}
346
347template<> SamplingGrid ZeroInstance<SamplingGrid>()
348{
349 SamplingGrid returnvalue;
350 return returnvalue;
351}
352
353// we need to explicitly instantiate the serialization functions as
354// its is only serialized through its base class FragmentJob
355BOOST_CLASS_EXPORT_IMPLEMENT(SamplingGrid)
Note: See TracBrowser for help on using the repository browser.