#ifndef OPENMM_HARMONICBONDFORCE_H_ #define OPENMM_HARMONICBONDFORCE_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) 2008-2016 Stanford University and the Authors. * * Authors: Peter Eastman * * Contributors: * * * * 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 "Force.h" #include "Vec3.h" #include #include #include "internal/windowsExport.h" namespace OpenMM { /** * This class implements an interaction between pairs of particles that varies harmonically with the distance * between them. To use it, create a HarmonicBondForce object then call addBond() once for each bond. After * a bond has been added, you can modify its force field parameters by calling setBondParameters(). This will * have no effect on Contexts that already exist unless you call updateParametersInContext(). */ class OPENMM_EXPORT HarmonicBondForce : public Force { public: /** * Create a HarmonicBondForce. */ HarmonicBondForce(); /** * Get the number of harmonic bond stretch terms in the potential function */ int getNumBonds() const { return bonds.size(); } /** * Add a bond term to the force field. * * @param particle1 the index of the first particle connected by the bond * @param particle2 the index of the second particle connected by the bond * @param length the equilibrium length of the bond, measured in nm * @param k the harmonic force constant for the bond, measured in kJ/mol/nm^2 * @return the index of the bond that was added */ int addBond(int particle1, int particle2, double length, double k); /** * Get the force field parameters for a bond term. * * @param index the index of the bond for which to get parameters * @param[out] particle1 the index of the first particle connected by the bond * @param[out] particle2 the index of the second particle connected by the bond * @param[out] length the equilibrium length of the bond, measured in nm * @param[out] k the harmonic force constant for the bond, measured in kJ/mol/nm^2 */ void getBondParameters(int index, int& particle1, int& particle2, double& length, double& k) const; /** * Set the force field parameters for a bond term. * * @param index the index of the bond for which to set parameters * @param particle1 the index of the first particle connected by the bond * @param particle2 the index of the second particle connected by the bond * @param length the equilibrium length of the bond, measured in nm * @param k the harmonic force constant for the bond, measured in kJ/mol/nm^2 */ void setBondParameters(int index, int particle1, int particle2, double length, double k); /** * Update the per-bond parameters in a Context to match those stored in this Force object. This method provides * an efficient method to update certain parameters in an existing Context without needing to reinitialize it. * Simply call setBondParameters() to modify this object's parameters, then call updateParametersInContext() * to copy them over to the Context. * * The only information this method updates is the values of per-bond parameters. The set of particles involved * in a bond cannot be changed, nor can new bonds be added. */ void updateParametersInContext(Context& context); /** * Set whether this force should apply periodic boundary conditions when calculating displacements. * Usually this is not appropriate for bonded forces, but there are situations when it can be useful. */ void setUsesPeriodicBoundaryConditions(bool periodic); /** * Returns whether or not this force makes use of periodic boundary * conditions. * * @returns true if force uses PBC and false otherwise */ bool usesPeriodicBoundaryConditions() const; protected: ForceImpl* createImpl() const; private: class BondInfo; std::vector bonds; bool usePeriodic; }; /** * This is an internal class used to record information about a bond. * @private */ class HarmonicBondForce::BondInfo { public: int particle1, particle2; double length, k; BondInfo() { particle1 = particle2 = -1; length = k = 0.0; } BondInfo(int particle1, int particle2, double length, double k) : particle1(particle1), particle2(particle2), length(length), k(k) { } }; } // namespace OpenMM #endif /*OPENMM_HARMONICBONDFORCE_H_*/