source: src/Dynamics/LinearInterpolationBetweenSteps.hpp@ e355762

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 e355762 was e355762, checked in by Frederik Heber <heber@…>, 14 years ago

Rewrote MinimiseConstrainedPotential to just use std::map instead of arrays.

  • MinimiseConstrainedPotential::operator() needs std::Map<atom*,atom*> as parameter for PermutationMap.
  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*
2 * LinearInterpolationBetweenSteps.hpp
3 *
4 * Created on: Feb 23, 2011
5 * Author: heber
6 */
7
8#ifndef LINEARINTERPOLATIONBETWEENSTEPS_HPP_
9#define LINEARINTERPOLATIONBETWEENSTEPS_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <vector>
17
18#include "atom.hpp"
19#include "AtomSet.hpp"
20#include "CodePatterns/Info.hpp"
21#include "CodePatterns/Log.hpp"
22#include "CodePatterns/Verbose.hpp"
23#include "Dynamics/MinimiseConstrainedPotential.hpp"
24#include "molecule.hpp"
25#include "parser.hpp"
26#include "World.hpp"
27
28template <class Set>
29class LinearInterpolationBetweenSteps
30{
31public:
32 LinearInterpolationBetweenSteps(AtomSetMixin<Set> &_atoms, unsigned int _MaxOuterStep) :
33 MDSteps(0),
34 MaxOuterStep(_MaxOuterStep),
35 IsAngstroem(true),
36 atoms(_atoms)
37 {}
38 ~LinearInterpolationBetweenSteps()
39 {}
40
41 /** Performs a linear interpolation between two desired atomic configurations with a given number of steps.
42 * Note, step number is config::MaxOuterStep
43 * \param *out output stream for debugging
44 * \param startstep stating initial configuration in molecule::Trajectories
45 * \param endstep stating final configuration in molecule::Trajectories
46 * \param &prefix path and prefix
47 * \param MapByIdentity if true we just use the identity to map atoms in start config to end config, if not we find mapping by \sa MinimiseConstrainedPotential()
48 * \return true - success in writing step files, false - error writing files or only one step in molecule::Trajectories
49 */
50 bool operator()(int startstep, int endstep, std::string prefix, bool MapByIdentity)
51 {
52 // TODO: rewrite permutationMaps using enumeration objects
53 molecule *mol = NULL;
54 bool status = true;
55 int MaxSteps = MaxOuterStep;
56 MoleculeListClass *MoleculePerStep = new MoleculeListClass(World::getPointer());
57 // Get the Permutation Map by MinimiseConstrainedPotential
58 atom **PermutationMap = NULL;
59 atom *Sprinter = NULL;
60 if (!MapByIdentity) {
61 std::map<atom *, atom*> PermutationMap;
62 molecule::atomSet atoms_list;
63 copy(atoms.begin(), atoms.end(), atoms_list.begin());
64 MinimiseConstrainedPotential Minimiser(atoms_list, PermutationMap);
65 Minimiser(startstep, endstep, IsAngstroem);
66 } else {
67 // TODO: construction of enumeration goes here
68 PermutationMap = new atom *[atoms.size()];
69 for(typename AtomSetMixin<Set>::const_iterator iter = atoms.begin(); iter != atoms.end();++iter){
70 PermutationMap[(*iter)->getNr()] = (*iter);
71 }
72 }
73
74 // check whether we have sufficient space in Trajectories for each atom
75 for(typename AtomSetMixin<Set>::iterator iter = atoms.begin(); iter != atoms.end(); ++iter) {
76 (*iter)->ResizeTrajectory(MaxSteps);
77 }
78 // push endstep to last one
79 for(typename AtomSetMixin<Set>::iterator iter = atoms.begin(); iter != atoms.end(); ++iter) {
80 (*iter)->CopyStepOnStep(MaxSteps,endstep);
81 }
82 endstep = MaxSteps;
83
84 // go through all steps and add the molecular configuration to the list and to the Trajectories of \a this molecule
85 DoLog(1) && (Log() << Verbose(1) << "Filling intermediate " << MaxSteps << " steps with MDSteps of " << MDSteps << "." << endl);
86 for (int step = 0; step <= MaxSteps; step++) {
87 mol = World::getInstance().createMolecule();
88 MoleculePerStep->insert(mol);
89 for (typename AtomSetMixin<Set>::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter) {
90 // add to molecule list
91 Sprinter = mol->AddCopyAtom((*iter));
92 // add to Trajectories
93 Vector temp = (*iter)->getPositionAtStep(startstep) + (PermutationMap[(*iter)->getNr()]->getPositionAtStep(endstep) - (*iter)->getPositionAtStep(startstep))*((double)step/(double)MaxSteps);
94 Sprinter->setPosition(temp);
95 (*iter)->setAtomicVelocityAtStep(step, zeroVec);
96 (*iter)->setAtomicForceAtStep(step, zeroVec);
97 //Log() << Verbose(3) << step << ">=" << MDSteps-1 << endl;
98 }
99 }
100 MDSteps = MaxSteps+1; // otherwise new Trajectories' points aren't stored on save&exit
101
102 // store the list to single step files
103 int *SortIndex = new int[atoms.size()];
104 for (int i=atoms.size(); i--; )
105 SortIndex[i] = i;
106
107 status = MoleculePerStep->OutputConfigForListOfFragments(prefix, SortIndex);
108 delete[](SortIndex);
109
110 // free and return
111 delete[](PermutationMap);
112 delete(MoleculePerStep);
113 return status;
114 };
115
116private:
117 unsigned int MDSteps;
118 unsigned int MaxOuterStep;
119 bool IsAngstroem;
120 AtomSetMixin<Set> atoms;
121
122};
123
124#endif /* LINEARINTERPOLATIONBETWEENSTEPS_HPP_ */
Note: See TracBrowser for help on using the repository browser.