📄 energy.h
字号:
//// energy.h//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB. If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifndef _chemistry_molecule_energy_h#define _chemistry_molecule_energy_h#ifdef __GNUC__#pragma interface#endif#include <iostream>#include <math/optimize/function.h>#include <math/optimize/conv.h>#include <chemistry/molecule/molecule.h>#include <chemistry/molecule/coor.h>#include <chemistry/molecule/hess.h>namespace sc {/** The MolecularEnergy abstract class inherits from the Function class.It computes the energy of the molecule as a function of the geometry. Thecoordinate system used can be either internal or cartesian. */class MolecularEnergy: public Function { private: RefSCDimension moldim_; // the number of cartesian variables Ref<MolecularCoor> mc_; Ref<Molecule> mol_; Ref<MolecularHessian> hess_; Ref<MolecularHessian> guesshess_; RefSCVector cartesian_gradient_; RefSymmSCMatrix cartesian_hessian_; /// Whether to do intermediate theckpointing of this object bool ckpt_; /// Name of the file into which to checkpoint this object char *ckpt_file_; /// How often this object should be checkpointed (only matters in iterative methods) int ckpt_freq_; protected: Ref<PointGroup> initial_pg_; void failure(const char *); /// This is just a wrapper around set_value(). virtual void set_energy(double); /** These are passed gradients and hessian in cartesian coordinates. The gradient and hessian in internal coordinates are computed. */ virtual void set_gradient(RefSCVector&); virtual void set_hessian(RefSymmSCMatrix&); void x_to_molecule(); void molecule_to_x(); int print_molecule_when_changed_; public: MolecularEnergy(const MolecularEnergy&); /** The KeyVal constructor. <dl> <dt><tt>molecule</tt><dd> A Molecule object. There is no default. <dt><tt>coor</tt><dd> A MolecularCoor object that describes the coordinates. If this is not given cartesian coordinates will be used. For convenience, two keywords needed by the MolecularCoor object are automatically provided: natom3 and matrixkit. <dt><tt>value_accuracy</tt><dd> Sets the accuracy to which values are computed. The default is 1.0e-6 atomic units. <dt><tt>gradient_accuracy</tt><dd> Sets the accuracy to which gradients are computed. The default is 1.0e-6 atomic units. <dt><tt>hessian_accuracy</tt><dd> Sets the accuracy to which hessians are computed. The default is 1.0e-4 atomic units. <dt><tt>print_molecule_when_changed</tt><dd> If true, then whenever the molecule's coordinates are updated they will be printed. The default is true. <dt><tt>checkpoint</tt><dd> If true, then this object will be checkpointed during its evaluation. Not all implementations of <tt>MolecularEnergy</tt> support checkpointing. The default is false. <dt><tt>checkpoint_file</tt><dd> Specifies the name of the file into which this object will be checkpointed. Default is "<inpubasename>.ckpt", where "<inputbasename>" is the name of the input file without ".in". <dt><tt>checkpoint_freq</tt><dd> Specifies how often this object to be checkpointed. Only matters for objects which are computed iteratively. Default is 1. </dl> */ MolecularEnergy(const Ref<KeyVal>&); MolecularEnergy(StateIn&); ~MolecularEnergy(); void save_data_state(StateOut&); /// Set up checkpointing void set_checkpoint(); void set_checkpoint_file(const char*); void set_checkpoint_freq(int freq); /// Check if need to checkpoint bool if_to_checkpoint() const; const char* checkpoint_file() const; int checkpoint_freq() const; MolecularEnergy & operator=(const MolecularEnergy&); /// A wrapper around value(); virtual double energy(); virtual Ref<Molecule> molecule() const; virtual RefSCDimension moldim() const; void guess_hessian(RefSymmSCMatrix&); RefSymmSCMatrix inverse_hessian(RefSymmSCMatrix&); /** If a molecule hessian object is given, it will be used to provide a hessian. */ RefSymmSCMatrix hessian(); int hessian_implemented() const; void set_x(const RefSCVector&); /// Return the cartesian coordinates. RefSCVector get_cartesian_x(); /// Return the cartesian gradient. RefSCVector get_cartesian_gradient(); /// Return the cartesian hessian. RefSymmSCMatrix get_cartesian_hessian(); Ref<MolecularCoor> molecularcoor() { return mc_; } /** Call this if you have changed the molecular symmetry of the molecule contained by this MolecularEnergy. */ virtual void symmetry_changed(); Ref<NonlinearTransform> change_coordinates(); /// Nicely print n x 3 data that are stored in a vector. void print_natom_3(const RefSCVector &, const char *t=0, std::ostream&o=ExEnv::out0()) const; void print_natom_3(double **, const char *t=0, std::ostream&o=ExEnv::out0()) const; void print_natom_3(double *, const char *t=0, std::ostream&o=ExEnv::out0()) const; virtual void print(std::ostream& = ExEnv::out0()) const;};class SumMolecularEnergy: public MolecularEnergy { protected: int n_; Ref<MolecularEnergy> *mole_; double *coef_; void compute(); public: SumMolecularEnergy(const Ref<KeyVal> &); SumMolecularEnergy(StateIn&); ~SumMolecularEnergy(); void save_data_state(StateOut&); int value_implemented() const; int gradient_implemented() const; int hessian_implemented() const; void set_x(const RefSCVector&);};/* The MolEnergyConvergence class derives from the Convergence class. TheMolEnergyConvergence class allows the user to request that cartesiancoordinates be used in evaluating the convergence criteria. This isuseful, since the internal coordinates can be somewhat arbitary. If theoptimization is constrained, then the fixed internal coordinates will beprojected out of the cartesian gradients. The input is similar to that forConvergence class with the exception that giving none of the convergencecriteria keywords is the same as providing the following input to theKeyVal constructor:<pre> conv<MolEnergyConvergence>: ( max_disp = 1.0e-4 max_grad = 1.0e-4 graddisp = 1.0e-4 )</pre>For MolEnergyConverence to work, the Function object given to the Optimizerobject must derive from MolecularEnergy.*/class MolEnergyConvergence: public Convergence { protected: Ref<MolecularEnergy> mole_; int cartesian_; void set_defaults(); public: // Standard constructors and destructor. MolEnergyConvergence(); MolEnergyConvergence(StateIn&); /** The KeyVal constructor. In addition to the keywords read by Convergence, the following keywords are examined: <dl> <dt><tt>energy</tt><dd> The MolecularEnergy object. This is required. <dt><tt>cartesian</tt><dd> If true, cartesian displacements and gradients will be compared to the convergence criteria. The default is true. </dl> */ MolEnergyConvergence(const Ref<KeyVal>&); virtual ~MolEnergyConvergence(); void save_data_state(StateOut&); // Set the current gradient and position information. These //will possibly grab the cartesian infomation if we have a //MolecularEnergy. void get_grad(const Ref<Function> &); void get_x(const Ref<Function> &); void set_nextx(const RefSCVector &); // Return nonzero if the optimization has converged. int converged();};}#endif// Local Variables:// mode: c++// c-file-style: "CLJ"// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -