source: src/Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp@ a8961d

IndependentFragmentGrids_Sole_NN_Calculation
Last change on this file since a8961d was a8961d, checked in by Frederik Heber <frederik.heber@…>, 8 years ago

Fixing long-range energy calculations and contribution summation.

  • we now calculate e-e+e-n and n-n separately. From the sampled_potential we recover e-e, and vmg delivers e-n. The second calculation yields n-n.
  • we need to sum forces from electronic contribution and from second run with nuclei contribution.
  • we need to sum the potentials for later fitting partial charges.
  • Property mode set to 100644
File size: 31.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 * 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 * AnalyseFragmentationResultsAction.cpp
26 *
27 * Created on: Mar 8, 2013
28 * Author: heber
29 */
30
31// include config.h
32#ifdef HAVE_CONFIG_H
33#include <config.h>
34#endif
35
36// include headers that implement a archive in simple text format
37// and before MemDebug due to placement new
38#include <boost/archive/text_oarchive.hpp>
39#include <boost/archive/text_iarchive.hpp>
40
41#include "CodePatterns/MemDebug.hpp"
42
43#include <boost/foreach.hpp>
44#include <boost/lambda/lambda.hpp>
45#include <boost/mpl/remove.hpp>
46
47#include <algorithm>
48#include <fstream>
49#include <iostream>
50//#include <numeric>
51#include <string>
52#include <vector>
53
54#include "CodePatterns/Assert.hpp"
55#include "CodePatterns/Log.hpp"
56
57#ifdef HAVE_JOBMARKET
58#include "JobMarket/types.hpp"
59#else
60typedef size_t JobId_t;
61#endif
62
63#include "Descriptors/AtomIdDescriptor.hpp"
64#include "Atom/atom.hpp"
65#include "Element/element.hpp"
66#include "Fragmentation/Exporters/ExportGraph_ToJobs.hpp"
67#include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp"
68#include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp"
69#include "Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp"
70#include "Fragmentation/Summation/Containers/MPQCData.hpp"
71#include "Fragmentation/Summation/Containers/MPQCData_printKeyNames.hpp"
72#include "Fragmentation/Homology/HomologyContainer.hpp"
73#include "Fragmentation/Homology/HomologyGraph.hpp"
74#include "Fragmentation/KeySetsContainer.hpp"
75#include "Fragmentation/Summation/SetValues/Eigenvalues.hpp"
76#include "Fragmentation/Summation/SetValues/Fragment.hpp"
77#include "Fragmentation/Summation/SetValues/FragmentForces.hpp"
78#include "Fragmentation/Summation/SetValues/Histogram.hpp"
79#include "Fragmentation/Summation/SetValues/IndexedVectors.hpp"
80#include "Fragmentation/Summation/IndexSetContainer.hpp"
81#include "Fragmentation/Summation/writeIndexedTable.hpp"
82#include "Fragmentation/Summation/writeTable.hpp"
83#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
84#include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp"
85#include "Fragmentation/Summation/Containers/GridDownsampler.hpp"
86#include "Fragmentation/Summation/Containers/VMGData.hpp"
87#include "Fragmentation/Summation/Containers/VMGDataFused.hpp"
88#include "Fragmentation/Summation/Containers/VMGDataMap.hpp"
89#include "Fragmentation/Summation/Containers/VMGData_printKeyNames.hpp"
90#endif
91#include "Helpers/defs.hpp"
92#include "Potentials/Particles/ParticleRegistry.hpp"
93#include "World.hpp"
94
95#include "Actions/FragmentationAction/AnalyseFragmentationResultsAction.hpp"
96
97using namespace MoleCuilder;
98
99// and construct the stuff
100#include "AnalyseFragmentationResultsAction.def"
101#include "Action_impl_pre.hpp"
102/** =========== define the function ====================== */
103
104void writeToFile(const std::string &filename, const std::string contents)
105{
106 std::ofstream tablefile(filename.c_str());
107 tablefile << contents;
108 tablefile.close();
109}
110
111/** Print cycle correction from received results.
112 *
113 * @param results summed up results container
114 */
115void printReceivedCycleResults(
116 const FragmentationShortRangeResults &results)
117{
118 typedef boost::mpl::remove<
119 boost::mpl::remove<MPQCDataEnergyVector_t, MPQCDataFused::energy_eigenvalues>::type,
120 MPQCDataFused::energy_eigenhistogram>::type
121 MPQCDataEnergyVector_noeigenvalues_t;
122 const std::string energyresult =
123 writeTable<MPQCDataEnergyMap_t, MPQCDataEnergyVector_noeigenvalues_t >()(
124 results.Result_Energy_fused, results.getMaxLevel());
125 LOG(2, "DEBUG: Energy table is \n" << energyresult);
126 std::string filename;
127 filename += FRAGMENTPREFIX + std::string("_CycleEnergy.dat");
128 writeToFile(filename, energyresult);
129}
130
131/** Print (short range) energy, forces, and timings from received results per index set.
132 *
133 * @param results summed up results container
134 */
135void printReceivedShortResultsPerIndex(
136 const FragmentationShortRangeResults &results)
137{
138 // print tables per keyset(without eigenvalues, they go extra)
139 typedef boost::mpl::remove<
140 boost::mpl::remove<MPQCDataEnergyVector_t, MPQCDataFused::energy_eigenvalues>::type,
141 MPQCDataFused::energy_eigenhistogram>::type
142 MPQCDataEnergyVector_noeigenvalues_t;
143 const std::string energyresult =
144 writeIndexedTable<MPQCDataEnergyMap_t, MPQCDataEnergyVector_noeigenvalues_t >()(
145 results.Result_perIndexSet_Energy, results.getMaxLevel());
146 LOG(2, "DEBUG: Indexed Energy table is \n" << energyresult);
147 std::string filename;
148 filename += FRAGMENTPREFIX + std::string("_IndexedEnergy.dat");
149 writeToFile(filename, energyresult);
150}
151
152/** Print (short range) energy, forces, and timings from received results.
153 *
154 * @param results summed up results container
155 */
156void printReceivedShortResults(
157 const FragmentationShortRangeResults &results)
158{
159 // print tables (without eigenvalues, they go extra)
160 {
161 typedef boost::mpl::remove<
162 boost::mpl::remove<MPQCDataEnergyVector_t, MPQCDataFused::energy_eigenvalues>::type,
163 MPQCDataFused::energy_eigenhistogram>::type
164 MPQCDataEnergyVector_noeigenvalues_t;
165 const std::string energyresult =
166 writeTable<MPQCDataEnergyMap_t, MPQCDataEnergyVector_noeigenvalues_t >()(
167 results.Result_Energy_fused, results.getMaxLevel());
168 LOG(2, "DEBUG: Energy table is \n" << energyresult);
169 std::string filename;
170 filename += FRAGMENTPREFIX + std::string("_Energy.dat");
171 writeToFile(filename, energyresult);
172 }
173
174 {
175 typedef boost::mpl::list<
176 MPQCDataFused::energy_eigenvalues
177 > MPQCDataEigenvalues_t;
178 const std::string eigenvalueresult =
179 writeTable<MPQCDataEnergyMap_t, MPQCDataEigenvalues_t >()(
180 results.Result_Energy_fused, results.getMaxLevel());
181 LOG(2, "DEBUG: Eigenvalue table is \n" << eigenvalueresult);
182 std::string filename;
183 filename += FRAGMENTPREFIX + std::string("_Eigenvalues.dat");
184 writeToFile(filename, eigenvalueresult);
185 }
186
187 {
188 typedef boost::mpl::list<
189 MPQCDataFused::energy_eigenhistogram
190 > MPQCDataEigenhistogram_t;
191 const std::string eigenhistogramresult =
192 writeTable<MPQCDataEnergyMap_t, MPQCDataEigenhistogram_t >()(
193 results.Result_Energy_fused, results.getMaxLevel());
194 LOG(2, "DEBUG: Eigenhistogram table is \n" << eigenhistogramresult);
195 std::string filename;
196 filename += FRAGMENTPREFIX + std::string("_Eigenhistogram.dat");
197 writeToFile(filename, eigenhistogramresult);
198 }
199
200 {
201 typedef boost::mpl::list<
202 MPQCDataFused::energy_eigenvalues
203 > MPQCDataEigenvalues_t;
204 const std::string eigenvalueresult =
205 writeTable<MPQCDataEnergyMap_t, MPQCDataEigenvalues_t >()(
206 results.Result_Energy_fused, results.getMaxLevel());
207 LOG(2, "DEBUG: Eigenvalue table is \n" << eigenvalueresult);
208 std::string filename;
209 filename += FRAGMENTPREFIX + std::string("_Eigenvalues.dat");
210 writeToFile(filename, eigenvalueresult);
211 }
212
213 {
214 const std::string forceresult =
215 writeTable<MPQCDataForceMap_t, MPQCDataForceVector_t>()(
216 results.Result_Force_fused, results.getMaxLevel());
217 LOG(2, "DEBUG: Force table is \n" << forceresult);
218 std::string filename;
219 filename += FRAGMENTPREFIX + std::string("_Forces.dat");
220 writeToFile(filename, forceresult);
221 }
222 // we don't want to print grid to a table
223 {
224 // print times (without flops for now)
225 typedef boost::mpl::remove<
226 boost::mpl::remove<MPQCDataTimeVector_t, MPQCDataFused::times_total_flops>::type,
227 MPQCDataFused::times_gather_flops>::type
228 MPQCDataTimeVector_noflops_t;
229 const std::string timesresult =
230 writeTable<MPQCDataTimeMap_t, MPQCDataTimeVector_noflops_t >()(
231 results.Result_Time_fused, results.getMaxLevel());
232 LOG(2, "DEBUG: Times table is \n" << timesresult);
233 std::string filename;
234 filename += FRAGMENTPREFIX + std::string("_Times.dat");
235 writeToFile(filename, timesresult);
236 }
237}
238
239
240#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
241/** Print long range energy from received results.
242 *
243 * @param results summed up results container
244 */
245void printReceivedFullResults(
246 const FragmentationLongRangeResults &results)
247{
248 // print tables per keyset(without grids, they go extra)
249
250 {
251 const std::string gridresult =
252 writeTable<VMGDataMap_t, VMGDataVector_t >()(
253 results.Result_LongRange_fused, results.getMaxLevel(), 1);
254 LOG(2, "DEBUG: VMG table is \n" << gridresult);
255 std::string filename;
256 filename += FRAGMENTPREFIX + std::string("_VMGEnergy.dat");
257 writeToFile(filename, gridresult);
258 }
259
260 if (results.hasLongRangeForces()) {
261 const std::string forceresult =
262 writeTable<VMGDataForceMap_t, VMGDataForceVector_t>()(
263 results.Result_ForceLongRange_fused, results.getMaxLevel());
264 LOG(2, "DEBUG: Force table is \n" << forceresult);
265 std::string filename;
266 filename += FRAGMENTPREFIX + std::string("_VMGForces.dat");
267 writeToFile(filename, forceresult);
268 }
269
270 {
271 const std::string gridresult =
272 writeTable<VMGDataLongRangeMap_t, VMGDataLongRangeVector_t >()(
273 results.Result_LongRangeIntegrated_fused, results.getMaxLevel(), 1);
274 LOG(2, "DEBUG: LongRange table is \n" << gridresult);
275 std::string filename;
276 filename += FRAGMENTPREFIX + std::string("_LongRangeEnergy.dat");
277 writeToFile(filename, gridresult);
278 }
279
280 if (results.hasLongRangeForces()) {
281 const std::string forceresult =
282 writeTable<VMGDataLongRangeForceMap_t, VMGDataLongRangeForceVector_t >()(
283 results.Result_ForcesLongRangeIntegrated_fused, results.getMaxLevel(), 1);
284 LOG(2, "DEBUG: ForcesLongRange table is \n" << forceresult);
285 std::string filename;
286 filename += FRAGMENTPREFIX + std::string("_LongRangeForces.dat");
287 writeToFile(filename, forceresult);
288 }
289}
290#endif
291
292bool appendToHomologies(
293 const FragmentationShortRangeResults &shortrangeresults,
294#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
295 const FragmentationLongRangeResults &longrangeresults,
296#endif
297 const bool storeGrids
298 )
299{
300 /// read homology container (if present)
301 HomologyContainer &homology_container = World::getInstance().getHomologies();
302
303 /// append all fragments to a HomologyContainer
304 HomologyContainer::container_t values;
305
306 // convert KeySetContainer to IndexSetContainer
307 // BUG: Conversion changes order w.r.t to Indices(!)
308 const IndexSetContainer::Container_t &container = shortrangeresults.getContainer();
309 const KeySetsContainer &Indices = shortrangeresults.getKeySet();
310 const KeySetsContainer &ForceIndices = shortrangeresults.getForceKeySet();
311 if (Indices.KeySets.size() != ForceIndices.KeySets.size()) {
312 ELOG(1, "appendToHomologies() - Indices (" << Indices.KeySets.size()
313 << ") and ForceIndices (" << ForceIndices.KeySets.size() << ") sizes differ.");
314 return false;
315 }
316 KeySetsContainer::ArrayOfIntVectors::const_iterator iter = Indices.KeySets.begin();
317 KeySetsContainer::ArrayOfIntVectors::const_iterator forceiter = ForceIndices.KeySets.begin();
318
319 /// go through all fragments
320 for (;iter != Indices.KeySets.end(); ++iter, ++forceiter) // go through each IndexSet
321 {
322 /// create new graph entry in HomologyContainer which is (key,value) type
323 LOG(1, "INFO: Creating new graph with " << *forceiter << ".");
324 IndexSet forceindexset;
325 forceindexset.insert(forceiter->begin(), forceiter->end());
326 const HomologyGraph graph(forceindexset);
327 // get index set entity from container for lookup to fragment result
328 IndexSet::ptr indexset(new IndexSet);
329 indexset->insert(iter->begin(), iter->end());
330 if (!forceindexset.contains(*indexset)) {
331 // this caught an error with faulty KeySetsContainer::insert().
332 // indexset and forceindexset need to be in same order and differ
333 // only in forceindexset contains extra indices for saturation hydrogens
334 ELOG(1, "appendToHomologies() - force index set " << forceindexset
335 << " does not contain index set " << (*indexset) << ".");
336 return false;
337 }
338 const IndexSetContainer::Container_t::const_iterator indexiter =
339 std::lower_bound(container.begin(), container.end(), indexset);
340 const IndexSet::ptr &index = *indexiter;
341 ASSERT( *index == *indexset,
342 "appendToHomologies() - could not find index set "+toString(*indexset)
343 +" in the sorted IndexSetContainer.");
344
345
346 /// we fill the value structure
347 HomologyContainer::value_t value;
348 value.containsGrids = storeGrids;
349 // obtain fragment
350 std::map<IndexSet::ptr, std::pair< MPQCDataFragmentMap_t, MPQCDataFragmentMap_t> >::const_iterator fragmentiter
351 = shortrangeresults.Result_perIndexSet_Fragment.find(index);
352 if (fragmentiter == shortrangeresults.Result_perIndexSet_Fragment.end()) {
353 ELOG(1, "appendToHomologyFile() - cannot find index " << (*index)
354 << " in FragmentResults.");
355 return false;
356 }
357 value.fragment = boost::fusion::at_key<MPQCDataFused::fragment>(fragmentiter->second.first);
358 LOG(1, "DEBUG: Created graph " << graph << " to fragment " << value.fragment << ".");
359
360 // obtain energy
361 std::map<IndexSet::ptr, std::pair< MPQCDataEnergyMap_t, MPQCDataEnergyMap_t> >::const_iterator energyiter
362 = shortrangeresults.Result_perIndexSet_Energy.find(index);
363 if (energyiter == shortrangeresults.Result_perIndexSet_Energy.end()) {
364 ELOG(1, "appendToHomologyFile() - cannot find index " << (*index)
365 << " in FragmentResults.");
366 return false;
367 }
368 value.energy = boost::fusion::at_key<MPQCDataFused::energy_total>(energyiter->second.second); // contributions
369
370 // only store sampled grids if desired
371 if (storeGrids) {
372#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
373 // obtain charge distribution
374 std::map<IndexSet::ptr, std::pair< MPQCDataGridMap_t, MPQCDataGridMap_t> >::const_iterator chargeiter
375 = longrangeresults.Result_perIndexSet_Grid.find(index);
376 if (chargeiter == longrangeresults.Result_perIndexSet_Grid.end()) {
377 ELOG(1, "appendToHomologyFile() - cannot find index " << (*index)
378 << " in FragmentResults.");
379 return false;
380 }
381 value.charge_distribution = boost::fusion::at_key<MPQCDataFused::sampled_grid>(chargeiter->second.second); // contributions
382
383 // obtain potential distribution
384 std::map<IndexSet::ptr, std::pair< VMGDataGridMap_t, VMGDataGridMap_t> >::const_iterator potentialiter
385 = longrangeresults.Result_perIndexSet_LongRange_Grid.find(index);
386 if (potentialiter == longrangeresults.Result_perIndexSet_LongRange_Grid.end()) {
387 ELOG(1, "appendToHomologyFile() - cannot find index " << (*index)
388 << " in FragmentResults.");
389 return false;
390 }
391 // add e+n potentials
392 value.potential_distribution =
393 boost::fusion::at_key<VMGDataFused::both_sampled_potential>(potentialiter->second.second); // contributions
394 value.potential_distribution +=
395 boost::fusion::at_key<VMGDataFused::sampled_potential>(potentialiter->second.second); // contributions
396 // and re-average to zero (integral is times volume_element which we don't need here)
397 const double sum =
398 std::accumulate(
399 value.potential_distribution.sampled_grid.begin(),
400 value.potential_distribution.sampled_grid.end(),
401 0.);
402 const double offset = sum/(double)value.potential_distribution.sampled_grid.size();
403 for (SamplingGrid::sampledvalues_t::iterator iter = value.potential_distribution.sampled_grid.begin();
404 iter != value.potential_distribution.sampled_grid.end();
405 ++iter)
406 *iter -= offset;
407#else
408 ELOG(2, "Long-range information in homology desired but long-range analysis capability not compiled in.");
409#endif
410 }
411 values.insert( std::make_pair( graph, value) );
412 }
413 homology_container.insert(values);
414
415 if (DoLog(2)) {
416 LOG(2, "DEBUG: Listing all present atomic ids ...");
417 std::stringstream output;
418 for (World::AtomIterator iter = World::getInstance().getAtomIter();
419 iter != World::getInstance().atomEnd(); ++iter)
420 output << (*iter)->getId() << " ";
421 LOG(2, "DEBUG: { " << output.str() << "} .");
422 }
423
424 // for debugging: print container
425 if (DoLog(2)) {
426 LOG(2, "DEBUG: Listing all present homologies ...");
427 for (HomologyContainer::container_t::const_iterator iter =
428 homology_container.begin(); iter != homology_container.end(); ++iter) {
429 std::stringstream output;
430 output << "DEBUG: graph " << iter->first
431 << " has Fragment " << iter->second.fragment
432 << ", associated energy " << iter->second.energy;
433 if (iter->second.containsGrids)
434#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
435 output << ", and sampled grid integral " << iter->second.charge_distribution.integral();
436#else
437 output << ", and there are sampled grids but capability not compiled in";
438#endif
439 output << ".";
440 LOG(2, output.str());
441 }
442 }
443
444 return true;
445}
446
447// this it taken from
448// http://stackoverflow.com/questions/2291802/is-there-a-c-iterator-that-can-iterate-over-a-file-line-by-line
449namespace detail
450{
451 /** Extend the string class by a friend function.
452 *
453 */
454 class Line : public std::string
455 {
456 friend std::istream & operator>>(std::istream & is, Line & line)
457 {
458 return std::getline(is, line);
459 }
460 };
461}
462
463/** Parse the given stream line-by-line, passing each to \a dest.
464 *
465 * \param is stream to parse line-wise
466 * \param dest output iterator
467 */
468template<class OutIt>
469void read_lines(std::istream& is, OutIt dest)
470{
471 typedef std::istream_iterator<detail::Line> InIt;
472 std::copy(InIt(is), InIt(), dest);
473}
474
475
476/** Determines the largest cycle in the container and returns its size.
477 *
478 * \param cycles set of cycles
479 * \return size if largest cycle
480 */
481size_t getMaxCycleSize(const KeySetsContainer &cycles)
482{
483 // gather cycle sizes
484 std::vector<size_t> cyclesizes(cycles.KeySets.size());
485 std::transform(
486 cycles.KeySets.begin(), cycles.KeySets.end(),
487 cyclesizes.begin(),
488 boost::bind(&KeySetsContainer::IntVector::size, boost::lambda::_1)
489 );
490 // get maximum
491 std::vector<size_t>::const_iterator maximum_size =
492 std::max_element(cyclesizes.begin(), cyclesizes.end());
493 if (maximum_size != cyclesizes.end())
494 return *maximum_size;
495 else
496 return 0;
497}
498
499void calculateCycleFullContribution(
500 const std::map<JobId_t, MPQCData> &shortrangedata,
501 const KeySetsContainer &keysets,
502 const KeySetsContainer &forcekeysets,
503 const KeySetsContainer &cycles,
504 const FragmentationShortRangeResults &shortrangeresults)
505{
506 // copy the shortrangeresults such that private MaxLevel is set in
507 // FragmentationShortRangeResults
508 FragmentationShortRangeResults cycleresults(shortrangeresults);
509 // get largest size
510 const size_t maximum_size = getMaxCycleSize(cycles);
511
512 /// The idea here is that (Orthogonal)Summation will place a result
513 /// consisting of level 1,2, and 3 fragment and a level 6 ring nonetheless
514 /// in level 6. If we want to have this result already at level 3, we
515 /// have to specifically inhibit all fragments from later levels but the
516 /// cycles and then pick the result from the last level and placing it at
517 /// the desired one
518
519 // loop from level 1 to max ring size and gather contributions
520 for (size_t level = 1; level <= maximum_size; ++level) {
521 // create ValueMask for this level by stepping through each keyset and checking size
522 std::vector<bool> localValueMask(shortrangedata.size(), false);
523 size_t index=0;
524 // TODO: if only KeySetsContainer was usable as a compliant STL container, might be able to use set_difference or alike.
525 KeySetsContainer::ArrayOfIntVectors::const_iterator keysetsiter = keysets.KeySets.begin();
526 KeySetsContainer::ArrayOfIntVectors::const_iterator cyclesiter = cycles.KeySets.begin();
527 for (; (keysetsiter != keysets.KeySets.end()) && (cyclesiter != cycles.KeySets.end());) {
528 if (cyclesiter->size() > keysetsiter->size()) {
529 // add if not greater than level in size
530 if ((*keysetsiter).size() <= level)
531 localValueMask[index] = true;
532 ++keysetsiter;
533 ++index;
534 } else if (cyclesiter->size() < keysetsiter->size()) {
535 ++cyclesiter;
536 } else { // both sets have same size
537 if (*cyclesiter > *keysetsiter) {
538 // add if not greater than level in size
539 if ((*keysetsiter).size() <= level)
540 localValueMask[index] = true;
541 ++keysetsiter;
542 ++index;
543 } else if (*cyclesiter < *keysetsiter) {
544 ++cyclesiter;
545 } else {
546 // also always add all cycles
547 localValueMask[index] = true;
548 ++cyclesiter;
549 ++keysetsiter;
550 ++index;
551 }
552 }
553 }
554 // activate rest if desired by level
555 for (; keysetsiter != keysets.KeySets.end(); ++keysetsiter) {
556 if ((*keysetsiter).size() <= level)
557 localValueMask[index] = true;
558 ++index;
559 }
560 LOG(2, "DEBUG: ValueMask for cycle correction at level " << level << " is "
561 << localValueMask << ".");
562 // create FragmentationShortRangeResults
563 FragmentationShortRangeResults localresults(shortrangedata, keysets, forcekeysets, localValueMask);
564 // and perform summation
565 localresults(shortrangedata);
566 // finally, extract the corrections from last level
567 cycleresults.Result_Energy_fused[level-1] =
568 localresults.Result_Energy_fused.back();
569 cycleresults.Result_Time_fused[level-1] =
570 localresults.Result_Time_fused.back();
571 cycleresults.Result_Force_fused[level-1] =
572 localresults.Result_Force_fused.back();
573 }
574 printReceivedCycleResults(cycleresults);
575}
576
577static void AddForces(
578 const IndexedVectors::indexedvectors_t &_forces,
579 const bool _IsAngstroem)
580{
581 for(IndexedVectors::indexedvectors_t::const_iterator iter = _forces.begin();
582 iter != _forces.end(); ++iter) {
583 const IndexedVectors::index_t &index = iter->first;
584 const IndexedVectors::vector_t &forcevector = iter->second;
585 ASSERT( forcevector.size() == NDIM,
586 "printReceivedShortResults() - obtained force vector has incorrect dimension.");
587 // note that mpqc calculates a gradient, hence force pointing into opposite direction
588 // we have to mind different units here: MPQC has a_o, while we may have angstroem
589 Vector ForceVector(-forcevector[0], -forcevector[1], -forcevector[2]);
590 if (_IsAngstroem)
591 for (size_t i=0;i<NDIM;++i)
592 ForceVector[i] *= AtomicLengthToAngstroem;
593 atom *_atom = World::getInstance().getAtom(AtomById(index));
594 if(_atom != NULL)
595 _atom->setAtomicForce(_atom->getAtomicForce() + ForceVector);
596 else
597 ELOG(2, "Could not find atom to id " << index << ".");
598 }
599}
600
601ActionState::ptr FragmentationAnalyseFragmentationResultsAction::performCall() {
602 bool status=true;
603
604 /// get data and keysets from ResultsContainer
605 FragmentationResultContainer& container = FragmentationResultContainer::getInstance();
606 const std::map<JobId_t, MPQCData> &shortrangedata = container.getShortRangeResults();
607 const KeySetsContainer &keysets = container.getKeySets();
608 const KeySetsContainer &forcekeysets = container.getForceKeySets();
609 const bool DoLongrange = container.areFullRangeResultsPresent();
610 const bool IsAngstroem = true;
611
612 if (keysets.KeySets.empty()) {
613 STATUS("There are no results in the container.");
614 return Action::failure;
615 }
616
617 /// calculate normal contributions with (if present) cycles coming at their
618 /// respective bond order.
619 std::vector<bool> ValueMask(shortrangedata.size(), true);
620 FragmentationShortRangeResults shortrangeresults(shortrangedata, keysets, forcekeysets, ValueMask);
621 shortrangeresults(shortrangedata);
622 printReceivedShortResults(shortrangeresults);
623 printReceivedShortResultsPerIndex(shortrangeresults);
624 // add summed results to container
625 container.addShortRangeSummedResults(shortrangeresults.getSummedShortRangeResults());
626
627 /// now do we need to calculate the cycle contribution
628 // check whether there are cycles in container or else in file
629 KeySetsContainer cycles = container.getCycles();
630 if (cycles.KeySets.empty()) {
631 // parse from file if cycles is empty
632 boost::filesystem::path filename(
633 params.prefix.get() + std::string(CYCLEKEYSETFILE));
634 if (boost::filesystem::exists(filename)) {
635 LOG(1, "INFO: Parsing cycles file " << filename.string() << ".");
636 // parse file line by line
637 std::ifstream File;
638 File.open(filename.string().c_str());
639 typedef std::istream_iterator<detail::Line> InIt;
640 for (InIt iter = InIt(File); iter != InIt(); ++iter) {
641 KeySetsContainer::IntVector cycle;
642 std::stringstream line(*iter);
643 while (line.good()) {
644 int id;
645 line >> id >> ws;
646 cycle.push_back(id);
647 }
648 if (!cycle.empty()) {
649 LOG(2, "DEBUG: Adding cycle " << cycle << ".");
650 cycles.insert( cycle, cycle.size());
651 }
652 }
653 File.close();
654 } else {
655 LOG(1, "INFO: Cycles file not found at " << filename.string() << ".");
656 }
657 }
658
659 // calculate energy if cycles are calculated fully at each level already
660 if (!cycles.KeySets.empty()) {
661 calculateCycleFullContribution(
662 shortrangedata,
663 keysets,
664 forcekeysets,
665 cycles,
666 shortrangeresults);
667 }
668
669 // adding obtained forces
670 if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() != 0) {
671 const IndexedVectors::indexedvectors_t shortrange_forces =
672 boost::fusion::at_key<MPQCDataFused::forces>(
673 shortrangeresults.Result_Force_fused.back()
674 ).getVectors();
675 AddForces(shortrange_forces,IsAngstroem);
676 } else {
677 LOG(1, "INFO: Full molecule not loaded, hence will not add forces to atoms.");
678 }
679
680#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
681 if (DoLongrange) {
682 if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() == 0) {
683 STATUS("Please load the full molecule into std::map<JobId_t, VMGData> longrangeData the world before starting this action.");
684 return Action::failure;
685 }
686
687 std::map<JobId_t, VMGData> longrangeData = container.getLongRangeResults();
688
689 ASSERT( !longrangeData.empty(),
690 "FragmentationAnalyseFragmentationResultsAction::performCall() - longrangeData is empty?");
691 // get required level from longrange full potential solution
692 const int level = longrangeData.rbegin()->second.sampled_potential.level;
693 SamplingGridProperties domain(ExportGraph_ToJobs::getDomainGrid(level));
694 SamplingGrid zero_globalgrid(domain);
695 FragmentationChargeDensity summedChargeDensity(shortrangedata);
696 summedChargeDensity(shortrangedata, keysets, zero_globalgrid);
697 const std::vector<SamplingGrid> full_sample = summedChargeDensity.getFullSampledGrid();
698
699 // remove full solution corresponding to full_sample from map (must be highest ids), has to be treated extra
700 std::map<JobId_t, VMGData>::iterator iter = longrangeData.end();
701 std::advance(iter, -full_sample.size());
702 std::map<JobId_t, VMGData>::iterator remove_iter = iter;
703 std::vector<VMGData> fullsolutionData;
704 for (; iter != longrangeData.end(); ++iter)
705 fullsolutionData.push_back(iter->second);
706 if (longrangeData.size() > 1) // when there's just a single fragment, it corresponds to full solution
707 longrangeData.erase(remove_iter, longrangeData.end());
708
709 // Final phase: sum up and print result
710 IndexedVectors::indices_t implicit_indices;
711 if (params.UseImplicitCharges.get()) {
712 // place all in implicit charges that are not selected but contained in ParticleRegistry
713 const World &world = const_cast<const World &>(World::getInstance());
714 const ParticleRegistry &registry = const_cast<const ParticleRegistry &>(ParticleRegistry::getInstance());
715 const World::ConstAtomComposite &atoms = world.getAllAtoms();
716 for (World::ConstAtomComposite::const_iterator iter = atoms.begin();
717 iter != atoms.end(); ++iter) {
718 const atomId_t atomid = (*iter)->getId();
719 if (!world.isAtomSelected(atomid)) {
720 const std::string &symbol = (*iter)->getElement().getSymbol();
721 if (registry.isPresentByName(symbol))
722 implicit_indices.push_back(atomid);
723 }
724 }
725 LOG(2, "INFO: We added " << implicit_indices.size() << " indices due to implicit charges.");
726 }
727
728 FragmentationLongRangeResults longrangeresults(
729 shortrangedata, longrangeData, keysets, forcekeysets);
730 {
731 SamplingGrid zero_globalgrid(domain);
732 longrangeresults(
733 shortrangedata,
734 longrangeData,
735 fullsolutionData,
736 full_sample,
737 zero_globalgrid,
738 implicit_indices);
739 printReceivedFullResults(longrangeresults);
740 }
741
742 // add long-range forces
743 if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() != 0) {
744 const IndexedVectors::indexedvectors_t longrange_forces =
745 boost::fusion::at_key<VMGDataFused::forces_longrange>(
746 longrangeresults.Result_ForcesLongRangeIntegrated_fused.back()
747 ).getVectors();
748 AddForces(longrange_forces,IsAngstroem);
749 } else {
750 LOG(1, "INFO: Full molecule not loaded, hence will not add forces to atoms.");
751 }
752
753 // append all keysets to homology file
754 status = appendToHomologies(shortrangeresults, longrangeresults, params.DoStoreGrids.get());
755 } else {
756 // append all keysets to homology file with short-range info only (without grids)
757 std::map<JobId_t, VMGData> longrangeData;
758 FragmentationLongRangeResults longrangeresults(
759 shortrangedata, longrangeData, keysets, forcekeysets);
760 status = appendToHomologies(shortrangeresults, longrangeresults, false);
761 }
762#else
763 if (DoLongrange) {
764 ELOG(2, "File contains long-range information but long-range analysis capability not compiled in.");
765 }
766
767 // append all keysets to homology file with short-range info only (without grids)
768 status = appendToHomologies(shortrangeresults, false);
769#endif
770
771 // we no longer clear the container
772// container.clear();
773
774 if (status)
775 return Action::success;
776 else {
777 STATUS("AnalyseFragmentResultsAction failed: invalid results, failed to append to homologies.");
778 return Action::failure;
779 }
780}
781
782ActionState::ptr FragmentationAnalyseFragmentationResultsAction::performUndo(ActionState::ptr _state) {
783 return Action::success;
784}
785
786ActionState::ptr FragmentationAnalyseFragmentationResultsAction::performRedo(ActionState::ptr _state){
787 return Action::success;
788}
789
790bool FragmentationAnalyseFragmentationResultsAction::canUndo() {
791 return false;
792}
793
794bool FragmentationAnalyseFragmentationResultsAction::shouldUndo() {
795 return false;
796}
797/** =========== end of function ====================== */
Note: See TracBrowser for help on using the repository browser.