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 |
|
---|
28 | GaussianThermostat::GaussianThermostat(int _ScaleTempStep) :
|
---|
29 | E(0),G(0),
|
---|
30 | ScaleTempStep(_ScaleTempStep)
|
---|
31 | {}
|
---|
32 |
|
---|
33 | GaussianThermostat::GaussianThermostat() :
|
---|
34 | E(0),G(0),
|
---|
35 | ScaleTempStep(25)
|
---|
36 | {}
|
---|
37 |
|
---|
38 | GaussianThermostat::~GaussianThermostat()
|
---|
39 | {}
|
---|
40 |
|
---|
41 | const char *ThermostatTraits<GaussianThermostat>::name = "Gaussian";
|
---|
42 |
|
---|
43 | std::string ThermostatTraits<GaussianThermostat>::getName(){
|
---|
44 | return ThermostatTraits<GaussianThermostat>::name;
|
---|
45 | }
|
---|
46 |
|
---|
47 | Thermostat *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 |
|
---|
54 | double GaussianThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){
|
---|
55 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
56 | }
|
---|
57 |
|
---|
58 | double GaussianThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){
|
---|
59 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
60 | }
|
---|
61 |
|
---|
62 | double GaussianThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::set) atoms){
|
---|
63 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
64 | }
|
---|
65 |
|
---|
66 | template <class ForwardIterator>
|
---|
67 | double 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 |
|
---|
84 | template <class ForwardIterator>
|
---|
85 | void 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 |
|
---|
98 | double GaussianThermostat::getE() const{
|
---|
99 | return E;
|
---|
100 | }
|
---|
101 |
|
---|
102 | double GaussianThermostat::getG() const{
|
---|
103 | return G;
|
---|
104 | }
|
---|
105 |
|
---|
106 | std::string GaussianThermostat::name(){
|
---|
107 | return ThermostatTraits<GaussianThermostat>::name;
|
---|
108 | }
|
---|
109 |
|
---|
110 | std::string GaussianThermostat::writeParams(){
|
---|
111 | std::stringstream sstr;
|
---|
112 | sstr << ScaleTempStep;
|
---|
113 | return sstr.str();
|
---|
114 | }
|
---|