NMLIntegrator.h 5.83 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#ifndef OPENMM_NMLIntegrator_H_
#define OPENMM_NMLIntegrator_H_

/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
 * This is part of the OpenMM molecular simulation toolkit originating from   *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org.               *
 *                                                                            *
 * Portions copyright (c) 2009 Stanford University and the Authors.           *
 * Authors: Chris Sweet                                                       *
 * Contributors: Christopher Bruns                                            *
 *                                                                            *
 * Permission is hereby granted, free of charge, to any person obtaining a    *
 * copy of this software and associated documentation files (the "Software"), *
 * to deal in the Software without restriction, including without limitation  *
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,   *
 * and/or sell copies of the Software, and to permit persons to whom the      *
 * Software is furnished to do so, subject to the following conditions:       *
 *                                                                            *
 * The above copyright notice and this permission notice shall be included in *
 * all copies or substantial portions of the Software.                        *
 *                                                                            *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   *
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    *
 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,    *
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR      *
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE  *
 * USE OR OTHER DEALINGS IN THE SOFTWARE.                                     *
 * -------------------------------------------------------------------------- */

#include "openmm/Integrator.h"
#include "openmm/Kernel.h"
#include "openmm/internal/windowsExport.h"
#include "EigenvectorInfo.h"

namespace OpenMM {

/**
 * This is an Integrator which simulates a System using Langevin dynamics.
 */

class OPENMM_EXPORT NMLIntegrator : public Integrator {
public:
    /**
     * Create a NMLIntegrator.
     *
     * @param temperature    the temperature of the heat bath (in Kelvin)
     * @param frictionCoeff  the friction coefficient which couples the system to the heat bath
     * @param stepSize       the step size with which to integrator the system (in picoseconds)
     */
    NMLIntegrator(double temperature, double frictionCoeff, double stepSize, ProtoMol::EigenvectorInfo* projectionVectorInfo );
    /**
     * Get the temperature of the heat bath (in Kelvin).
     */
    double getTemperature() const {
        return temperature;
    }
    /**
     * Set the temperature of the heat bath (in Kelvin).
     */
    void setTemperature(double temp) {
        temperature = temp;
    }
    /**
     * Get the friction coefficient which determines how strongly the system is coupled to
     * the heat bath.
     */
    double getFriction() const {
        return friction;
    }
    /**
     * Set the friction coefficient which determines how strongly the system is coupled to
     * the heat bath.
     */
    void setFriction(double coeff) {
        friction = coeff;
    }


	  void setProjectionVectorInfo( ProtoMol::EigenvectorInfo* inVectorInfo ){
		  mProjectionVectorInfo = inVectorInfo;
	  }

	  ProtoMol::EigenvectorInfo* getProjectionVectorInfo() const{
		  return mProjectionVectorInfo;
	  }

    unsigned int getNumProjectionVectors() const{
      //return mProjectionVectorInfo->myNumEigenvectors;
      return mProjectionVectorInfo->myNumUsedEigenvectors;
    }

    double getMinimumLimit() const{
      return mProjectionVectorInfo->myMinimumLimit *  4.184; //Kcal->KJ
    }

    bool getProjVecChanged() const{      
      return mProjectionVectorInfo->myEigVecChanged;
    }

    double* getProjectionVectors() const{      
      return mProjectionVectorInfo->myEigenvectors;
    }

    void setProjVecChanged(bool inChanged){		  
      mProjectionVectorInfo->myEigVecChanged = inChanged;
    }

    double getMaxEigenvalue() const{
        //return max eigenvalue (f^2) in 1/ps from 1/charmm
      return mProjectionVectorInfo->myMaxEigenvalue * 
        (1000.0 / 48.88821290839616) * (1000.0 / 48.88821290839616) //(1/charmm to 1/ps)^2
        * 100.0; //(Angstron to nm [inverse])^2
    }

    /**
     * Advance a simulation through time by taking a series of time steps.
     *
     * @param steps   the number of time steps to take
     */
    void step(int steps);
    
    //Minimizer
    void minimize(int maxsteps);
    
protected:
    /**
     * This will be called by the OpenMMContext when it is created.  It informs the Integrator
     * of what context it will be integrating, and gives it a chance to do any necessary initialization.
     * It will also get called again if the application calls reinitialize() on the OpenMMContext.
     */
    void initialize(ContextImpl& context);
    /**
     * Get the names of all Kernels used by this Integrator.
     */
    std::vector<std::string> getKernelNames();
private:
	  ProtoMol::EigenvectorInfo* mProjectionVectorInfo;

    double temperature, friction;
    ContextImpl* context;
    Kernel kernel;
};

} // namespace OpenMM

#endif /*OPENMM_NMLIntegrator_H_*/