[194649] | 1 | /*
|
---|
| 2 | * Berendsen.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Aug 20, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[d2b28f] | 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[ad011c] | 13 | #include "CodePatterns/MemDebug.hpp"
|
---|
[d2b28f] | 14 |
|
---|
[194649] | 15 | #include "Berendsen.hpp"
|
---|
[41a467] | 16 |
|
---|
[ad011c] | 17 | #include "CodePatterns/Log.hpp"
|
---|
[41a467] | 18 | #include "config.hpp"
|
---|
| 19 | #include "Element/element.hpp"
|
---|
[255829] | 20 | #include "Helpers/defs.hpp"
|
---|
[41a467] | 21 | #include "Parser/PcpParser_helper.hpp"
|
---|
[ab26c3] | 22 | #include "Thermostats/ThermoStatContainer.hpp"
|
---|
[579a81] | 23 | #include "World.hpp"
|
---|
[194649] | 24 |
|
---|
[579a81] | 25 | Berendsen::Berendsen(double _TempFrequency) :
|
---|
| 26 | TempFrequency(_TempFrequency)
|
---|
[194649] | 27 | {}
|
---|
| 28 |
|
---|
[3e4162] | 29 | Berendsen::Berendsen() :
|
---|
| 30 | TempFrequency(2.5)
|
---|
| 31 | {}
|
---|
| 32 |
|
---|
[194649] | 33 | Berendsen::~Berendsen()
|
---|
| 34 | {}
|
---|
| 35 |
|
---|
[14c57a] | 36 | const char *ThermostatTraits<Berendsen>::name = "Berendsen";
|
---|
| 37 |
|
---|
| 38 | std::string ThermostatTraits<Berendsen>::getName(){
|
---|
| 39 | return ThermostatTraits<Berendsen>::name;
|
---|
| 40 | }
|
---|
[579a81] | 41 |
|
---|
[14c57a] | 42 | Thermostat *ThermostatTraits<Berendsen>::make(class ConfigFileBuffer * const fb){
|
---|
[c0c650] | 43 | double TempFrequency;
|
---|
| 44 | const int verbose = 0;
|
---|
| 45 | ParseForParameter(verbose,fb,"Thermostat", 0, 2, 1, double_type, &TempFrequency, 1, critical); // read \tau_T
|
---|
[14c57a] | 46 | return new Berendsen(TempFrequency);
|
---|
[c0c650] | 47 | }
|
---|
[579a81] | 48 |
|
---|
| 49 | double Berendsen::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){
|
---|
| 50 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
[194649] | 51 | }
|
---|
| 52 |
|
---|
[579a81] | 53 | double Berendsen::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){
|
---|
| 54 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
[194649] | 55 | }
|
---|
| 56 |
|
---|
[579a81] | 57 | double Berendsen::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::set) atoms){
|
---|
| 58 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
[194649] | 59 | }
|
---|
| 60 |
|
---|
| 61 | template <class ForwardIterator>
|
---|
[579a81] | 62 | double Berendsen::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin, ForwardIterator end){
|
---|
[47d041] | 63 | LOG(2, "Applying Berendsen-VanGunsteren thermostat...");
|
---|
[14c57a] | 64 | double ekin=0;
|
---|
[579a81] | 65 | double ScaleTempFactor = getContainer().TargetTemp/ActualTemp;
|
---|
[194649] | 66 | for(ForwardIterator iter=begin;iter!=end;++iter){
|
---|
[056e70] | 67 | Vector U = (*iter)->getAtomicVelocityAtStep(step);
|
---|
[6625c3] | 68 | if ((*iter)->getFixedIon() == 0) { // even FixedIon moves, only not by other's forces
|
---|
[579a81] | 69 | U *= sqrt(1+(World::getInstance().getConfig()->Deltat/TempFrequency)*(ScaleTempFactor-1));
|
---|
[51c3e4] | 70 | ekin += 0.5*(*iter)->getType()->getMass() * U.NormSquared();
|
---|
[194649] | 71 | }
|
---|
[056e70] | 72 | (*iter)->setAtomicVelocityAtStep(step, U);
|
---|
[194649] | 73 | }
|
---|
| 74 | return ekin;
|
---|
| 75 | }
|
---|
[579a81] | 76 |
|
---|
| 77 | std::string Berendsen::name(){
|
---|
[14c57a] | 78 | return ThermostatTraits<Berendsen>::name;
|
---|
[579a81] | 79 | }
|
---|
| 80 |
|
---|
[c0c650] | 81 | std::string Berendsen::writeParams(){
|
---|
[579a81] | 82 | stringstream sstr;
|
---|
| 83 | sstr << TempFrequency;
|
---|
| 84 | return sstr.str();
|
---|
| 85 | }
|
---|