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