| 1 | /*
|
|---|
| 2 | * Langevin.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 "Langevin.hpp"
|
|---|
| 16 | #include "element.hpp"
|
|---|
| 17 | #include "config.hpp"
|
|---|
| 18 | #include "CodePatterns/Verbose.hpp"
|
|---|
| 19 | #include "CodePatterns/Log.hpp"
|
|---|
| 20 | #include "ThermoStatContainer.hpp"
|
|---|
| 21 |
|
|---|
| 22 | #include <boost/random/mersenne_twister.hpp>
|
|---|
| 23 | #include <boost/random/normal_distribution.hpp>
|
|---|
| 24 | #include <boost/random/variate_generator.hpp>
|
|---|
| 25 |
|
|---|
| 26 | #include "RandomNumbers/RandomNumberGeneratorFactory.hpp"
|
|---|
| 27 | #include "RandomNumbers/RandomNumberGenerator.hpp"
|
|---|
| 28 |
|
|---|
| 29 | Langevin::Langevin(double _TempFrequency,double _alpha) :
|
|---|
| 30 | TempFrequency(_TempFrequency),
|
|---|
| 31 | alpha(_alpha),
|
|---|
| 32 | rng_engine(new boost::mt19937),
|
|---|
| 33 | rng_distribution(NULL)
|
|---|
| 34 | {}
|
|---|
| 35 |
|
|---|
| 36 | Langevin::Langevin() :
|
|---|
| 37 | TempFrequency(2.5),
|
|---|
| 38 | alpha(0.),
|
|---|
| 39 | rng_engine(new boost::mt19937),
|
|---|
| 40 | rng_distribution(NULL)
|
|---|
| 41 | {}
|
|---|
| 42 |
|
|---|
| 43 | Langevin::~Langevin()
|
|---|
| 44 | {
|
|---|
| 45 | delete rng_engine;
|
|---|
| 46 | delete rng_distribution;
|
|---|
| 47 | }
|
|---|
| 48 |
|
|---|
| 49 | const char *ThermostatTraits<Langevin>::name = "Langevin";
|
|---|
| 50 |
|
|---|
| 51 | std::string ThermostatTraits<Langevin>::getName(){
|
|---|
| 52 | return ThermostatTraits<Langevin>::name;
|
|---|
| 53 | }
|
|---|
| 54 |
|
|---|
| 55 | Thermostat *ThermostatTraits<Langevin>::make(class ConfigFileBuffer * const fb){
|
|---|
| 56 | double TempFrequency;
|
|---|
| 57 | double alpha;
|
|---|
| 58 | const int verbose = 0;
|
|---|
| 59 | ParseForParameter(verbose,fb,"Thermostat", 0, 2, 1, double_type, &TempFrequency, 1, critical); // read gamma
|
|---|
| 60 | if (ParseForParameter(verbose,fb,"Thermostat", 0, 3, 1, double_type, &alpha, 1, optional)) {
|
|---|
| 61 | DoLog(2) && (Log() << Verbose(2) << "Extended Stochastic Thermostat detected with interpolation coefficient " << alpha << "." << endl);
|
|---|
| 62 | } else {
|
|---|
| 63 | alpha = 1.;
|
|---|
| 64 | }
|
|---|
| 65 | return new Langevin(TempFrequency,alpha);
|
|---|
| 66 | }
|
|---|
| 67 |
|
|---|
| 68 | double Langevin::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){
|
|---|
| 69 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
|---|
| 70 | }
|
|---|
| 71 |
|
|---|
| 72 | double Langevin::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){
|
|---|
| 73 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
|---|
| 74 | }
|
|---|
| 75 |
|
|---|
| 76 | double Langevin::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::set) atoms){
|
|---|
| 77 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | template <class ForwardIterator>
|
|---|
| 81 | double Langevin::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin, ForwardIterator end){
|
|---|
| 82 | DoLog(2) && (Log() << Verbose(2) << "Applying Langevin thermostat..." << endl);
|
|---|
| 83 | RandomNumberGenerator &random = RandomNumberGeneratorFactory::getInstance().makeRandomNumberGenerator("mt19937", "normal_distribution");
|
|---|
| 84 | const double rng_min = random.min();
|
|---|
| 85 | const double rng_max = random.max();
|
|---|
| 86 | double ekin=0;
|
|---|
| 87 | for(ForwardIterator iter=begin;iter!=end;++iter){
|
|---|
| 88 | double sigma = sqrt(getContainer().TargetTemp/(*iter)->getType()->getMass()); // sigma = (k_b T)/m (Hartree/atomicmass = atomiclength/atomictime)
|
|---|
| 89 | rng_distribution = new boost::normal_distribution<>(0,sigma);
|
|---|
| 90 | boost::variate_generator<boost::mt19937&, boost::normal_distribution<> > rng(*rng_engine, *rng_distribution);
|
|---|
| 91 | Vector U = (*iter)->getAtomicVelocityAtStep(step);
|
|---|
| 92 | if ((*iter)->getFixedIon() == 0) { // even FixedIon moves, only not by other's forces
|
|---|
| 93 | // throw a dice to determine whether it gets hit by a heat bath particle
|
|---|
| 94 | if (((((random()/(rng_max-rng_min)))*TempFrequency) < 1.)) {
|
|---|
| 95 | DoLog(3) && (Log() << Verbose(3) << "Particle " << (**iter) << " was hit (sigma " << sigma << "): " << U.Norm() << " -> ");
|
|---|
| 96 | // pick three random numbers from a Boltzmann distribution around the desired temperature T for each momenta axis
|
|---|
| 97 | for (int d=0; d<NDIM; d++) {
|
|---|
| 98 | U[d] = rng();
|
|---|
| 99 | }
|
|---|
| 100 | DoLog(2) && (Log() << Verbose(2) << U.Norm() << endl);
|
|---|
| 101 | }
|
|---|
| 102 | ekin += 0.5*(*iter)->getType()->getMass() * U.NormSquared();
|
|---|
| 103 | }
|
|---|
| 104 | (*iter)->setAtomicVelocityAtStep(step, U);
|
|---|
| 105 | delete rng_distribution;
|
|---|
| 106 | rng_distribution = NULL;
|
|---|
| 107 | }
|
|---|
| 108 | return ekin;
|
|---|
| 109 | }
|
|---|
| 110 |
|
|---|
| 111 | std::string Langevin::name(){
|
|---|
| 112 | return ThermostatTraits<Langevin>::name;
|
|---|
| 113 | }
|
|---|
| 114 |
|
|---|
| 115 | std::string Langevin::writeParams(){
|
|---|
| 116 | stringstream sstr;
|
|---|
| 117 | sstr << TempFrequency << "\t" << alpha;
|
|---|
| 118 | return sstr.str();
|
|---|
| 119 | }
|
|---|