source: src/Thermostats/GaussianThermostat.cpp@ ab26c3

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 ab26c3 was 41a467, checked in by Frederik Heber <heber@…>, 13 years ago

LARGE: config class is now just a tiny container.

  • this was loooooobg overdue. Config.cpp contained remnants from parsing pcp files and much else. Also fragmentation depended on it. Since refactoring of MoleculeListClass and the fragmentation, we don't need it anymore.
  • helper functions ParseForParameters(), LoadMolecule() extracted into new module PcpParser_helper.
  • config class now just contains 4 variables that are generally required (especially IsAngstroem) and they should probably remain with the world.
  • removed some places where config.hpp was no unnecessarily included.
  • Moved ConfigFileBuffer.* over to subfolder src/Parser/ where it rather belongs (associated with PcpParser).
  • Property mode set to 100644
File size: 3.2 KB
Line 
1/*
2 * GaussianThermostat.cpp
3 *
4 * Created on: Aug 18, 2010
5 * Author: crueger
6 */
7
8// include config.h
9#ifdef HAVE_CONFIG_H
10#include <config.h>
11#endif
12
13#include "CodePatterns/MemDebug.hpp"
14
15#include "GaussianThermostat.hpp"
16
17#include "AtomSet.hpp"
18#include "CodePatterns/Log.hpp"
19#include "config.hpp"
20#include "Element/element.hpp"
21#include "Helpers/defs.hpp"
22#include "LinearAlgebra/Vector.hpp"
23#include "Parser/PcpParser_helper.hpp"
24#include "World.hpp"
25
26#include <set>
27
28GaussianThermostat::GaussianThermostat(int _ScaleTempStep) :
29 E(0),G(0),
30 ScaleTempStep(_ScaleTempStep)
31{}
32
33GaussianThermostat::GaussianThermostat() :
34 E(0),G(0),
35 ScaleTempStep(25)
36{}
37
38GaussianThermostat::~GaussianThermostat()
39{}
40
41const char *ThermostatTraits<GaussianThermostat>::name = "Gaussian";
42
43std::string ThermostatTraits<GaussianThermostat>::getName(){
44 return ThermostatTraits<GaussianThermostat>::name;
45}
46
47Thermostat *ThermostatTraits<GaussianThermostat>::make(class ConfigFileBuffer * const fb){
48 int ScaleTempStep;
49 const int verbose = 0;
50 ParseForParameter(verbose,fb,"Thermostat", 0, 2, 1, int_type, &ScaleTempStep, 1, critical); // read collision rate
51 return new class GaussianThermostat(ScaleTempStep);
52}
53
54double GaussianThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){
55 return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
56}
57
58double GaussianThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){
59 return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
60}
61
62double GaussianThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::set) atoms){
63 return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
64}
65
66template <class ForwardIterator>
67double GaussianThermostat::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin, ForwardIterator end){
68 LOG(2, "Applying Gaussian thermostat...");
69 init(step,begin,end);
70 double G_over_E = G/E;
71 LOG(1, "Gaussian Least Constraint constant is " << G_over_E << ".");
72 double ekin =0;
73 for(ForwardIterator iter=begin;iter!=end;++iter){
74 Vector U = (*iter)->getAtomicVelocityAtStep(step);
75 if ((*iter)->getFixedIon() == 0) {// even FixedIon moves, only not by other's forces
76 U += World::getInstance().getConfig()->Deltat * G_over_E * U;
77 ekin += (*iter)->getType()->getMass() * U.NormSquared();
78 }
79 (*iter)->setAtomicVelocityAtStep(step, U);
80 }
81 return ekin;
82}
83
84template <class ForwardIterator>
85void GaussianThermostat::init(unsigned int step,ForwardIterator begin, ForwardIterator end){
86 E=0;
87 G=0;
88 for(ForwardIterator iter=begin;iter!=end;++iter){
89 const Vector &U = (*iter)->getAtomicVelocityAtStep(step);
90 const Vector &F = (*iter)->getAtomicForceAtStep(step);
91 if ((*iter)->getFixedIon() == 0){ // even FixedIon moves, only not by other's forces
92 G += U.ScalarProduct(F);
93 E += U.NormSquared()*(*iter)->getType()->getMass();
94 }
95 }
96}
97
98double GaussianThermostat::getE() const{
99 return E;
100}
101
102double GaussianThermostat::getG() const{
103 return G;
104}
105
106std::string GaussianThermostat::name(){
107 return ThermostatTraits<GaussianThermostat>::name;
108}
109
110std::string GaussianThermostat::writeParams(){
111 std::stringstream sstr;
112 sstr << ScaleTempStep;
113 return sstr.str();
114}
Note: See TracBrowser for help on using the repository browser.