[abae35] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[abae35] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[194649] | 8 | /*
|
---|
| 9 | * Woodcock.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: Aug 20, 2010
|
---|
| 12 | * Author: crueger
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[d2b28f] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
|
---|
[d2b28f] | 21 |
|
---|
[194649] | 22 | #include "Woodcock.hpp"
|
---|
| 23 |
|
---|
[ad011c] | 24 | #include "CodePatterns/Log.hpp"
|
---|
[41a467] | 25 | #include "Element/element.hpp"
|
---|
[255829] | 26 | #include "Helpers/defs.hpp"
|
---|
[41a467] | 27 | #include "Parser/PcpParser_helper.hpp"
|
---|
[ab26c3] | 28 | #include "Thermostats/ThermoStatContainer.hpp"
|
---|
[194649] | 29 |
|
---|
[579a81] | 30 | #include <sstream>
|
---|
| 31 |
|
---|
| 32 | Woodcock::Woodcock(int _ScaleTempStep) :
|
---|
| 33 | ScaleTempStep(_ScaleTempStep)
|
---|
[194649] | 34 | {}
|
---|
| 35 |
|
---|
[3e4162] | 36 | Woodcock::Woodcock() :
|
---|
| 37 | ScaleTempStep(25)
|
---|
| 38 | {}
|
---|
| 39 |
|
---|
[194649] | 40 | Woodcock::~Woodcock()
|
---|
| 41 | {}
|
---|
| 42 |
|
---|
[14c57a] | 43 | const char *ThermostatTraits<Woodcock>::name = "Woodcock";
|
---|
| 44 |
|
---|
| 45 | std::string ThermostatTraits<Woodcock>::getName(){
|
---|
| 46 | return ThermostatTraits<Woodcock>::name;
|
---|
| 47 | }
|
---|
[579a81] | 48 |
|
---|
[14c57a] | 49 | Thermostat *ThermostatTraits<Woodcock>::make(class ConfigFileBuffer * const fb){
|
---|
[c0c650] | 50 | int ScaleTempStep;
|
---|
| 51 | const int verbose = 0;
|
---|
| 52 | ParseForParameter(verbose,fb,"Thermostat", 0, 2, 1, int_type, &ScaleTempStep, 1, critical); // read scaling frequency
|
---|
[14c57a] | 53 | return new Woodcock(ScaleTempStep);
|
---|
[c0c650] | 54 | }
|
---|
| 55 |
|
---|
[579a81] | 56 | double Woodcock::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){
|
---|
| 57 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
[194649] | 58 | }
|
---|
| 59 |
|
---|
[579a81] | 60 | double Woodcock::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){
|
---|
| 61 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
[194649] | 62 | }
|
---|
| 63 |
|
---|
[579a81] | 64 | double Woodcock::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::set) atoms){
|
---|
| 65 | return doScaleAtoms(step,ActualTemp,atoms.begin(),atoms.end());
|
---|
[194649] | 66 | }
|
---|
| 67 |
|
---|
| 68 | template <class ForwardIterator>
|
---|
[579a81] | 69 | double Woodcock::doScaleAtoms(unsigned int step,double ActualTemp,ForwardIterator begin,ForwardIterator end){
|
---|
[194649] | 70 | double ekin=0;
|
---|
[579a81] | 71 | if ((ScaleTempStep > 0) && ((step-1) % ScaleTempStep == 0)) {
|
---|
| 72 | double ScaleTempFactor = sqrt(getContainer().TargetTemp/ActualTemp);
|
---|
[47d041] | 73 | LOG(2, "Applying Woodcock thermostat...");
|
---|
[194649] | 74 | double ekin;
|
---|
| 75 | for (ForwardIterator iter = begin; iter!=end;++iter){
|
---|
[056e70] | 76 | Vector U = (*iter)->getAtomicVelocityAtStep(step);
|
---|
[6625c3] | 77 | if ((*iter)->getFixedIon() == 0){ // even FixedIon moves, only not by other's forces
|
---|
[194649] | 78 | U *= ScaleTempFactor;
|
---|
[51c3e4] | 79 | ekin += 0.5*(*iter)->getType()->getMass() * U.NormSquared();
|
---|
[194649] | 80 | }
|
---|
[056e70] | 81 | (*iter)->setAtomicVelocityAtStep(step, U);
|
---|
[194649] | 82 | }
|
---|
| 83 | }
|
---|
| 84 | return ekin;
|
---|
| 85 | }
|
---|
[579a81] | 86 |
|
---|
| 87 | std::string Woodcock::name(){
|
---|
[14c57a] | 88 | return ThermostatTraits<Woodcock>::name;
|
---|
[579a81] | 89 | }
|
---|
| 90 |
|
---|
| 91 | std::string Woodcock::writeParams(){
|
---|
| 92 | std::stringstream sstr;
|
---|
| 93 | sstr << ScaleTempStep;
|
---|
| 94 | return sstr.str();
|
---|
| 95 | }
|
---|