| [194649] | 1 | /*
 | 
|---|
 | 2 |  * Woodcock.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 | 
 | 
|---|
 | 13 | #include "Helpers/MemDebug.hpp"
 | 
|---|
 | 14 | 
 | 
|---|
| [194649] | 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 | 
 | 
|---|
| [579a81] | 23 | #include <sstream>
 | 
|---|
 | 24 | 
 | 
|---|
 | 25 | Woodcock::Woodcock(int _ScaleTempStep) :
 | 
|---|
 | 26 |   ScaleTempStep(_ScaleTempStep)
 | 
|---|
| [194649] | 27 | {}
 | 
|---|
 | 28 | 
 | 
|---|
| [3e4162] | 29 | Woodcock::Woodcock() :
 | 
|---|
 | 30 |   ScaleTempStep(25)
 | 
|---|
 | 31 | {}
 | 
|---|
 | 32 | 
 | 
|---|
| [194649] | 33 | Woodcock::~Woodcock()
 | 
|---|
 | 34 | {}
 | 
|---|
 | 35 | 
 | 
|---|
| [14c57a] | 36 | const char *ThermostatTraits<Woodcock>::name = "Woodcock";
 | 
|---|
 | 37 | 
 | 
|---|
 | 38 | std::string ThermostatTraits<Woodcock>::getName(){
 | 
|---|
 | 39 |   return ThermostatTraits<Woodcock>::name;
 | 
|---|
 | 40 | }
 | 
|---|
| [579a81] | 41 | 
 | 
|---|
| [14c57a] | 42 | Thermostat *ThermostatTraits<Woodcock>::make(class ConfigFileBuffer * const fb){
 | 
|---|
| [c0c650] | 43 |   int ScaleTempStep;
 | 
|---|
 | 44 |   const int verbose = 0;
 | 
|---|
 | 45 |   ParseForParameter(verbose,fb,"Thermostat", 0, 2, 1, int_type, &ScaleTempStep, 1, critical); // read scaling frequency
 | 
|---|
| [14c57a] | 46 |   return new Woodcock(ScaleTempStep);
 | 
|---|
| [c0c650] | 47 | }
 | 
|---|
 | 48 | 
 | 
|---|
| [579a81] | 49 | double Woodcock::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 Woodcock::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 Woodcock::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 Woodcock::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin,ForwardIterator end){
 | 
|---|
| [194649] | 63 |   double ekin=0;
 | 
|---|
| [579a81] | 64 |   if ((ScaleTempStep > 0) && ((step-1) % ScaleTempStep == 0)) {
 | 
|---|
 | 65 |     double ScaleTempFactor = sqrt(getContainer().TargetTemp/ActualTemp);
 | 
|---|
| [194649] | 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;
 | 
|---|
| [51c3e4] | 72 |         ekin += 0.5*(*iter)->getType()->getMass() * U.NormSquared();
 | 
|---|
| [194649] | 73 |       }
 | 
|---|
 | 74 |     }
 | 
|---|
 | 75 |   }
 | 
|---|
 | 76 |   return ekin;
 | 
|---|
 | 77 | }
 | 
|---|
| [579a81] | 78 | 
 | 
|---|
 | 79 | std::string Woodcock::name(){
 | 
|---|
| [14c57a] | 80 |   return ThermostatTraits<Woodcock>::name;
 | 
|---|
| [579a81] | 81 | }
 | 
|---|
 | 82 | 
 | 
|---|
 | 83 | std::string Woodcock::writeParams(){
 | 
|---|
 | 84 |   std::stringstream sstr;
 | 
|---|
 | 85 |   sstr << ScaleTempStep;
 | 
|---|
 | 86 |   return sstr.str();
 | 
|---|
 | 87 | }
 | 
|---|