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