[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 |
|
---|
[ad011c] | 13 | #include "CodePatterns/MemDebug.hpp"
|
---|
[d2b28f] | 14 |
|
---|
[194649] | 15 | #include "Woodcock.hpp"
|
---|
| 16 |
|
---|
[ad011c] | 17 | #include "CodePatterns/Log.hpp"
|
---|
[41a467] | 18 | #include "Element/element.hpp"
|
---|
[255829] | 19 | #include "Helpers/defs.hpp"
|
---|
[41a467] | 20 | #include "Parser/PcpParser_helper.hpp"
|
---|
[ab26c3] | 21 | #include "Thermostats/ThermoStatContainer.hpp"
|
---|
[194649] | 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);
|
---|
[47d041] | 66 | LOG(2, "Applying Woodcock thermostat...");
|
---|
[194649] | 67 | double ekin;
|
---|
| 68 | for (ForwardIterator iter = begin; iter!=end;++iter){
|
---|
[056e70] | 69 | Vector U = (*iter)->getAtomicVelocityAtStep(step);
|
---|
[6625c3] | 70 | if ((*iter)->getFixedIon() == 0){ // even FixedIon moves, only not by other's forces
|
---|
[194649] | 71 | U *= ScaleTempFactor;
|
---|
[51c3e4] | 72 | ekin += 0.5*(*iter)->getType()->getMass() * U.NormSquared();
|
---|
[194649] | 73 | }
|
---|
[056e70] | 74 | (*iter)->setAtomicVelocityAtStep(step, U);
|
---|
[194649] | 75 | }
|
---|
| 76 | }
|
---|
| 77 | return ekin;
|
---|
| 78 | }
|
---|
[579a81] | 79 |
|
---|
| 80 | std::string Woodcock::name(){
|
---|
[14c57a] | 81 | return ThermostatTraits<Woodcock>::name;
|
---|
[579a81] | 82 | }
|
---|
| 83 |
|
---|
| 84 | std::string Woodcock::writeParams(){
|
---|
| 85 | std::stringstream sstr;
|
---|
| 86 | sstr << ScaleTempStep;
|
---|
| 87 | return sstr.str();
|
---|
| 88 | }
|
---|