| 1 | /*
 | 
|---|
| 2 |  * Woodcock.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 "Helpers/MemDebug.hpp"
 | 
|---|
| 14 | 
 | 
|---|
| 15 | #include "Woodcock.hpp"
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #include "element.hpp"
 | 
|---|
| 18 | #include "config.hpp"
 | 
|---|
| 19 | #include "Helpers/Verbose.hpp"
 | 
|---|
| 20 | #include "Helpers/Log.hpp"
 | 
|---|
| 21 | #include "ThermoStatContainer.hpp"
 | 
|---|
| 22 | 
 | 
|---|
| 23 | #include <sstream>
 | 
|---|
| 24 | 
 | 
|---|
| 25 | Woodcock::Woodcock(int _ScaleTempStep) :
 | 
|---|
| 26 |   ScaleTempStep(_ScaleTempStep)
 | 
|---|
| 27 | {}
 | 
|---|
| 28 | 
 | 
|---|
| 29 | Woodcock::Woodcock() :
 | 
|---|
| 30 |   ScaleTempStep(25)
 | 
|---|
| 31 | {}
 | 
|---|
| 32 | 
 | 
|---|
| 33 | Woodcock::~Woodcock()
 | 
|---|
| 34 | {}
 | 
|---|
| 35 | 
 | 
|---|
| 36 | const char *ThermostatTraits<Woodcock>::name = "Woodcock";
 | 
|---|
| 37 | 
 | 
|---|
| 38 | std::string ThermostatTraits<Woodcock>::getName(){
 | 
|---|
| 39 |   return ThermostatTraits<Woodcock>::name;
 | 
|---|
| 40 | }
 | 
|---|
| 41 | 
 | 
|---|
| 42 | Thermostat *ThermostatTraits<Woodcock>::make(class ConfigFileBuffer * const fb){
 | 
|---|
| 43 |   int ScaleTempStep;
 | 
|---|
| 44 |   const int verbose = 0;
 | 
|---|
| 45 |   ParseForParameter(verbose,fb,"Thermostat", 0, 2, 1, int_type, &ScaleTempStep, 1, critical); // read scaling frequency
 | 
|---|
| 46 |   return new Woodcock(ScaleTempStep);
 | 
|---|
| 47 | }
 | 
|---|
| 48 | 
 | 
|---|
| 49 | double Woodcock::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){
 | 
|---|
| 50 |   return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
 | 
|---|
| 51 | }
 | 
|---|
| 52 | 
 | 
|---|
| 53 | double Woodcock::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){
 | 
|---|
| 54 |   return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
 | 
|---|
| 55 | }
 | 
|---|
| 56 | 
 | 
|---|
| 57 | double Woodcock::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 Woodcock::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin,ForwardIterator end){
 | 
|---|
| 63 |   double ekin=0;
 | 
|---|
| 64 |   if ((ScaleTempStep > 0) && ((step-1) % ScaleTempStep == 0)) {
 | 
|---|
| 65 |     double ScaleTempFactor = sqrt(getContainer().TargetTemp/ActualTemp);
 | 
|---|
| 66 |     DoLog(2) && (Log() << Verbose(2) <<  "Applying Woodcock thermostat..." << endl);
 | 
|---|
| 67 |     double ekin;
 | 
|---|
| 68 |     for (ForwardIterator iter = begin; iter!=end;++iter){
 | 
|---|
| 69 |       Vector &U = (*iter)->Trajectory.U.at(step);
 | 
|---|
| 70 |       if ((*iter)->FixedIon == 0){ // even FixedIon moves, only not by other's forces
 | 
|---|
| 71 |         U *= ScaleTempFactor;
 | 
|---|
| 72 |         ekin += 0.5*(*iter)->getType()->getMass() * U.NormSquared();
 | 
|---|
| 73 |       }
 | 
|---|
| 74 |     }
 | 
|---|
| 75 |   }
 | 
|---|
| 76 |   return ekin;
 | 
|---|
| 77 | }
 | 
|---|
| 78 | 
 | 
|---|
| 79 | std::string Woodcock::name(){
 | 
|---|
| 80 |   return ThermostatTraits<Woodcock>::name;
 | 
|---|
| 81 | }
 | 
|---|
| 82 | 
 | 
|---|
| 83 | std::string Woodcock::writeParams(){
 | 
|---|
| 84 |   std::stringstream sstr;
 | 
|---|
| 85 |   sstr << ScaleTempStep;
 | 
|---|
| 86 |   return sstr.str();
 | 
|---|
| 87 | }
 | 
|---|