/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2012 University of Bonn. All rights reserved. * * * This file is part of MoleCuilder. * * MoleCuilder is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * MoleCuilder is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MoleCuilder. If not, see . */ /* * FragmentationResults.cpp * * Created on: Aug 31, 2012 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #include "FragmentationResults.hpp" #include #include #include #include "CodePatterns/Assert.hpp" #include "CodePatterns/Log.hpp" #include "Fragmentation/Converter/DataConverter.hpp" #include "Fragmentation/KeySetsContainer.hpp" #include "Fragmentation/Automation/createMatrixNrLookup.hpp" #include "Fragmentation/Automation/extractJobIds.hpp" #include "Fragmentation/Automation/parseKeySetFile.hpp" #include "Fragmentation/Summation/AllLevelOrthogonalSummator.hpp" #include "Fragmentation/Summation/IndexSetContainer.hpp" #include "Fragmentation/Summation/OrthogonalSumUpPerLevel.hpp" #include "Fragmentation/Summation/SubsetMap.hpp" #include "Fragmentation/Summation/SumUpPerLevel.hpp" #include "Helpers/defs.hpp" FragmentationResults::FragmentationResults( const std::map &fragmentData, std::map &longrangeData, const KeySetsContainer& _KeySet, const KeySetsContainer& _ForceKeySet) : KeySet(_KeySet), ForceKeySet(_ForceKeySet) { // create lookup from job nr to fragment number size_t MPQCFragmentCounter = 0; const std::vector mpqcjobids = extractJobIds(fragmentData); MPQCMatrixNrLookup = createMatrixNrLookup(mpqcjobids, MPQCFragmentCounter); size_t VMGFragmentCounter = 0; const std::vector vmgjobids = extractJobIds(longrangeData); VMGMatrixNrLookup = createMatrixNrLookup(vmgjobids, VMGFragmentCounter); // convert KeySetContainer to IndexSetContainer container.reset(new IndexSetContainer(KeySet)); // create the map of all keysets subsetmap.reset(new SubsetMap(*container)); } void FragmentationResults::operator()( const std::map &fragmentData, std::map &longrangeData, const std::vector &fullsolutionData, const std::vector &full_sample) { MaxLevel = subsetmap->getMaximumSetLevel(); LOG(1, "INFO: Summing up results till level " << MaxLevel << "."); /// convert all MPQCData to MPQCDataMap_t { ASSERT( ForceKeySet.KeySets.size() == fragmentData.size(), "FragmentationResults::FragmentationResults() - ForceKeySet's KeySets and fragmentData differ in size."); typedef boost::mpl::remove::type MPQCDataEnergyVector_noeigenvalues_t; OrthogonalSumUpPerLevel( fragmentData, MPQCMatrixNrLookup, container, subsetmap, Result_Energy_fused, Result_perIndexSet_Energy); OrthogonalSumUpPerLevel( fragmentData, MPQCMatrixNrLookup, container, subsetmap, Result_Grid_fused, Result_perIndexSet_Grid); SumUpPerLevel( fragmentData, MPQCMatrixNrLookup, container, subsetmap, Result_Time_fused, Result_perIndexSet_Time); OrthogonalSumUpPerLevel( fragmentData, MPQCMatrixNrLookup, container, subsetmap, Result_Fragment_fused, Result_perIndexSet_Fragment); // multiply each short-range potential with the respective charge std::map::const_iterator mpqciter = fragmentData.begin(); std::map::iterator vmgiter = longrangeData.begin(); for (; vmgiter != longrangeData.end(); ++mpqciter, ++vmgiter) { vmgiter->second.sampled_potential *= mpqciter->second.sampled_grid; } // then sum up OrthogonalSumUpPerLevel( longrangeData, VMGMatrixNrLookup, container, subsetmap, Result_LongRange_fused, Result_perIndexSet_LongRange); // force has extra data converter std::map MPQCData_Force_fused; convertMPQCDatatoForceMap(fragmentData, ForceKeySet, MPQCData_Force_fused); Result_Force_fused.resize(MaxLevel); // we need the results of correct size already AllLevelOrthogonalSummator forceSummer( subsetmap, MPQCData_Force_fused, container->getContainer(), MPQCMatrixNrLookup, Result_Force_fused, Result_perIndexSet_Force); boost::mpl::for_each(boost::ref(forceSummer)); Result_LongRangeIntegrated_fused.reserve(MaxLevel); { // NOTE: potential for level 1 is not calculated as saturation hydrogen // are not removed on this level yet VMGDataLongRangeMap_t instance; boost::fusion::at_key(instance) = 0.; boost::fusion::at_key(instance) = 0.; boost::fusion::at_key(instance) = 0.; boost::fusion::at_key(instance) = 0.; boost::fusion::at_key(instance) = 0.; boost::fusion::at_key(instance) = 0.; Result_LongRangeIntegrated_fused.push_back(instance); } for (size_t level = 2; level <= MaxLevel; ++level) { // we have to fill in the remainder values in the LongRangeMap by hand // weight times correct charge density of the same level const SamplingGrid &charge_weight = boost::fusion::at_key(Result_Grid_fused[level-1]); SamplingGrid full_sample_solution = fullsolutionData[level-2].sampled_potential; full_sample_solution *= charge_weight; const SamplingGrid &short_range_correction = boost::fusion::at_key(Result_LongRange_fused[level-1]); full_sample_solution -= short_range_correction; double full_solution_energy = fullsolutionData[level-2].e_long; const double short_range_energy = boost::fusion::at_key(Result_LongRange_fused[level-1]); full_solution_energy -= short_range_energy; // multiply element-wise with charge distribution VMGDataLongRangeMap_t instance; boost::fusion::at_key(instance) = .5*full_sample_solution.integral(); // LOG(0, "Remaining long-range potential integral of level " << level << " is " // << full_sample_solution.integral() << "."); boost::fusion::at_key(instance) = .5*short_range_correction.integral(); // LOG(0, "Short-range correction potential integral of level " << level << " is " // << short_range_correction.integral() << "."); boost::fusion::at_key(instance) = full_solution_energy; // LOG(0, "Remaining long-range energy from potential integral of level " << level << " is " // << full_solution_energy << "."); boost::fusion::at_key(instance) = short_range_energy; // LOG(0, "Short-range correction energy from potential integral of level " << level << " is " // << short_range_energy << "."); boost::fusion::at_key(instance) = boost::fusion::at_key(instance) - full_solution_energy; boost::fusion::at_key(instance) = boost::fusion::at_key(instance) - short_range_energy; Result_LongRangeIntegrated_fused.push_back(instance); } // { // // LOG(0, "Remaining long-range energy from energy_potential is " << full_sample_solution.integral()-epotentialSummer.getFullContribution() << "."); // SamplingGrid full_sample_solution = fullsolutionData.back().sampled_potential; // const SamplingGrid &short_range_correction = // boost::fusion::at_key(Result_LongRange_fused.back()).getFullContribution(); // full_sample_solution -= short_range_correction; // // multiply element-wise with charge distribution // LOG(0, "Remaining long-range potential integral is " << full_sample_solution.integral() << "."); // LOG(0, "Short-range correction potential integral of level is " << short_range_correction.integral() << "."); // LOG(0, "Remaining long-range energy from potential integral is " // << full_sample_solution.integral(full_sample.back()) << "."); // LOG(0, "Short-range correction energy from potential integral is " // << short_range_correction.integral(full_sample.back()) << "."); // // double e_long = fullsolutionData.back().e_long; // e_long -= boost::fusion::at_key(Result_LongRange_fused.back()).getFullContribution(); // LOG(0, "Remaining long-range energy is " << e_long << "."); // } // TODO: Extract long-range corrections to forces // NOTE: potential is in atomic length units, NOT IN ANGSTROEM! } }