//////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2008 The Regents of the University of California // // This file is part of Qbox // // Qbox is distributed under the terms of the GNU General Public License // as published by the Free Software Foundation, either version 2 of // the License, or (at your option) any later version. // See the file COPYING in the root directory of this distribution // or . // //////////////////////////////////////////////////////////////////////////////// // // MDIonicStepper.h: // //////////////////////////////////////////////////////////////////////////////// // $Id: MDIonicStepper.h,v 1.13 2010-04-16 22:41:55 fgygi Exp $ // // IonicStepper is used in the following way // // input: r0,v0 // // compute energy e0(r0) and forces f0(r0) // for ( k=0; kcompute_r(e0,f0) // { // computes rp using r0, v0 and f0 // restores constraints on rp using rp and r0 // updates rm<-r0, r0<-rp and update atomset positions // } // // compute f0(r0) // // stepper->compute_v(e0,f0) // { // computes v0 using r0,rm,f0 // restores constraints on v0 using r0, v0 // modifies velocities using the thermostat (rescaling) // updates atomset velocities // } // } // r0,v0,f0 consistent at this point // #ifndef MDIONICSTEPPER_H #define MDIONICSTEPPER_H #include "IonicStepper.h" class MDIonicStepper : public IonicStepper { private: double th_temp_; double th_time_; double th_width_; double ekin_; double ekin_stepper_; double eta_; std::string thermostat_; void compute_ekin(void); public: MDIonicStepper(Sample& s) : IonicStepper(s) { thermostat_ = s.ctrl.thermostat; th_temp_ = s.ctrl.th_temp; th_time_ = s.ctrl.th_time; th_width_ = s.ctrl.th_width; eta_ = 0.0; ekin_ = 0.0; ekin_stepper_ = 0.0; atoms_.get_positions(r0_); atoms_.get_velocities(v0_); compute_ekin(); } void compute_r(double e0, const std::vector >& f0); void compute_v(double e0, const std::vector >& f0); double eta(void) const { return eta_; } double ekin(void) const { return ekin_; } double ekin_stepper(void) const { return ekin_stepper_; } double temp(void) const { const double boltz = 1.0 / ( 11605.0 * 2.0 * 13.6058 ); if ( ndofs_ > 0 ) return 2.0 * ( ekin_ / boltz ) / ndofs_; else return 0.0; } }; #endif