/* Portions copyright (c) 2009 Stanford University and Simbios. * Contributors: Peter Eastman * * 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 #include #include "SimTKOpenMMCommon.h" #include "SimTKOpenMMUtilities.h" #include "ReferenceForce.h" #include "ReferenceCustomGBIxn.h" using std::map; using std::set; using std::string; using std::stringstream; using std::vector; using namespace OpenMM; /**--------------------------------------------------------------------------------------- ReferenceCustomGBIxn constructor --------------------------------------------------------------------------------------- */ ReferenceCustomGBIxn::ReferenceCustomGBIxn(const vector& valueExpressions, const vector > valueDerivExpressions, const vector > valueGradientExpressions, const vector& valueNames, const vector& valueTypes, const vector& energyExpressions, const vector > energyDerivExpressions, const vector > energyGradientExpressions, const vector& energyTypes, const vector& parameterNames) : cutoff(false), periodic(false), valueExpressions(valueExpressions), valueDerivExpressions(valueDerivExpressions), valueGradientExpressions(valueGradientExpressions), valueNames(valueNames), valueTypes(valueTypes), energyExpressions(energyExpressions), energyDerivExpressions(energyDerivExpressions), energyGradientExpressions(energyGradientExpressions), energyTypes(energyTypes), paramNames(parameterNames) { // --------------------------------------------------------------------------------------- // static const char* methodName = "\nReferenceCustomGBIxn::ReferenceCustomGBIxn"; // --------------------------------------------------------------------------------------- for (int i = 0; i < (int) paramNames.size(); i++) { for (int j = 1; j < 3; j++) { stringstream name; name << paramNames[i] << j; particleParamNames.push_back(name.str()); } } for (int i = 0; i < (int) valueNames.size(); i++) { for (int j = 1; j < 3; j++) { stringstream name; name << valueNames[i] << j; particleValueNames.push_back(name.str()); } } } /**--------------------------------------------------------------------------------------- ReferenceCustomGBIxn destructor --------------------------------------------------------------------------------------- */ ReferenceCustomGBIxn::~ReferenceCustomGBIxn() { // --------------------------------------------------------------------------------------- // static const char* methodName = "\nReferenceCustomGBIxn::~ReferenceCustomGBIxn"; // --------------------------------------------------------------------------------------- } /**--------------------------------------------------------------------------------------- Set the force to use a cutoff. @param distance the cutoff distance @param neighbors the neighbor list to use --------------------------------------------------------------------------------------- */ void ReferenceCustomGBIxn::setUseCutoff(RealOpenMM distance, const OpenMM::NeighborList& neighbors) { cutoff = true; cutoffDistance = distance; neighborList = &neighbors; } /**--------------------------------------------------------------------------------------- Set the force to use periodic boundary conditions. This requires that a cutoff has also been set, and the smallest side of the periodic box is at least twice the cutoff distance. @param vectors the vectors defining the periodic box --------------------------------------------------------------------------------------- */ void ReferenceCustomGBIxn::setPeriodic(RealVec* vectors) { if (cutoff) { assert(vectors[0][0] >= 2.0*cutoffDistance); assert(vectors[1][1] >= 2.0*cutoffDistance); assert(vectors[2][2] >= 2.0*cutoffDistance); } periodic = true; periodicBoxVectors[0] = vectors[0]; periodicBoxVectors[1] = vectors[1]; periodicBoxVectors[2] = vectors[2]; } void ReferenceCustomGBIxn::calculateIxn(int numberOfAtoms, vector& atomCoordinates, RealOpenMM** atomParameters, const vector >& exclusions, map& globalParameters, vector& forces, RealOpenMM* totalEnergy) const { // First calculate the computed values. int numValues = valueTypes.size(); vector > values(numValues); for (int valueIndex = 0; valueIndex < numValues; valueIndex++) { if (valueTypes[valueIndex] == OpenMM::CustomGBForce::SingleParticle) calculateSingleParticleValue(valueIndex, numberOfAtoms, atomCoordinates, values, globalParameters, atomParameters); else if (valueTypes[valueIndex] == OpenMM::CustomGBForce::ParticlePair) calculateParticlePairValue(valueIndex, numberOfAtoms, atomCoordinates, atomParameters, values, globalParameters, exclusions, true); else calculateParticlePairValue(valueIndex, numberOfAtoms, atomCoordinates, atomParameters, values, globalParameters, exclusions, false); } // Now calculate the energy and its derivates. vector > dEdV(numValues, vector(numberOfAtoms, (RealOpenMM) 0)); for (int termIndex = 0; termIndex < (int) energyExpressions.size(); termIndex++) { if (energyTypes[termIndex] == OpenMM::CustomGBForce::SingleParticle) calculateSingleParticleEnergyTerm(termIndex, numberOfAtoms, atomCoordinates, values, globalParameters, atomParameters, forces, totalEnergy, dEdV); else if (energyTypes[termIndex] == OpenMM::CustomGBForce::ParticlePair) calculateParticlePairEnergyTerm(termIndex, numberOfAtoms, atomCoordinates, atomParameters, values, globalParameters, exclusions, true, forces, totalEnergy, dEdV); else calculateParticlePairEnergyTerm(termIndex, numberOfAtoms, atomCoordinates, atomParameters, values, globalParameters, exclusions, false, forces, totalEnergy, dEdV); } // Apply the chain rule to evaluate forces. calculateChainRuleForces(numberOfAtoms, atomCoordinates, atomParameters, values, globalParameters, exclusions, forces, dEdV); } void ReferenceCustomGBIxn::calculateSingleParticleValue(int index, int numAtoms, vector& atomCoordinates, vector >& values, const map& globalParameters, RealOpenMM** atomParameters) const { values[index].resize(numAtoms); map variables = globalParameters; for (int i = 0; i < numAtoms; i++) { variables["x"] = atomCoordinates[i][0]; variables["y"] = atomCoordinates[i][1]; variables["z"] = atomCoordinates[i][2]; for (int j = 0; j < (int) paramNames.size(); j++) variables[paramNames[j]] = atomParameters[i][j]; for (int j = 0; j < index; j++) variables[valueNames[j]] = values[j][i]; values[index][i] = (RealOpenMM) valueExpressions[index].evaluate(variables); } } void ReferenceCustomGBIxn::calculateParticlePairValue(int index, int numAtoms, vector& atomCoordinates, RealOpenMM** atomParameters, vector >& values, const map& globalParameters, const vector >& exclusions, bool useExclusions) const { values[index].resize(numAtoms); for (int i = 0; i < numAtoms; i++) values[index][i] = (RealOpenMM) 0.0; if (cutoff) { // Loop over all pairs in the neighbor list. for (int i = 0; i < (int) neighborList->size(); i++) { OpenMM::AtomPair pair = (*neighborList)[i]; if (useExclusions && exclusions[pair.first].find(pair.second) != exclusions[pair.first].end()) continue; calculateOnePairValue(index, pair.first, pair.second, atomCoordinates, atomParameters, globalParameters, values); calculateOnePairValue(index, pair.second, pair.first, atomCoordinates, atomParameters, globalParameters, values); } } else { // Perform an O(N^2) loop over all atom pairs. for (int i = 0; i < numAtoms; i++) { for (int j = i+1; j < numAtoms; j++) { if (useExclusions && exclusions[i].find(j) != exclusions[i].end()) continue; calculateOnePairValue(index, i, j, atomCoordinates, atomParameters, globalParameters, values); calculateOnePairValue(index, j, i, atomCoordinates, atomParameters, globalParameters, values); } } } } void ReferenceCustomGBIxn::calculateOnePairValue(int index, int atom1, int atom2, vector& atomCoordinates, RealOpenMM** atomParameters, const map& globalParameters, vector >& values) const { RealOpenMM deltaR[ReferenceForce::LastDeltaRIndex]; if (periodic) ReferenceForce::getDeltaRPeriodic(atomCoordinates[atom2], atomCoordinates[atom1], periodicBoxVectors, deltaR); else ReferenceForce::getDeltaR(atomCoordinates[atom2], atomCoordinates[atom1], deltaR); RealOpenMM r = deltaR[ReferenceForce::RIndex]; if (cutoff && r >= cutoffDistance) return; map variables = globalParameters; for (int i = 0; i < (int) paramNames.size(); i++) { variables[particleParamNames[i*2]] = atomParameters[atom1][i]; variables[particleParamNames[i*2+1]] = atomParameters[atom2][i]; } variables["r"] = r; for (int i = 0; i < index; i++) { variables[particleValueNames[i*2]] = values[i][atom1]; variables[particleValueNames[i*2+1]] = values[i][atom2]; } values[index][atom1] += (RealOpenMM) valueExpressions[index].evaluate(variables); } void ReferenceCustomGBIxn::calculateSingleParticleEnergyTerm(int index, int numAtoms, vector& atomCoordinates, const vector >& values, const map& globalParameters, RealOpenMM** atomParameters, vector& forces, RealOpenMM* totalEnergy, vector >& dEdV) const { map variables = globalParameters; for (int i = 0; i < numAtoms; i++) { variables["x"] = atomCoordinates[i][0]; variables["y"] = atomCoordinates[i][1]; variables["z"] = atomCoordinates[i][2]; for (int j = 0; j < (int) paramNames.size(); j++) variables[paramNames[j]] = atomParameters[i][j]; for (int j = 0; j < (int) valueNames.size(); j++) variables[valueNames[j]] = values[j][i]; if (totalEnergy != NULL) *totalEnergy += (RealOpenMM) energyExpressions[index].evaluate(variables); for (int j = 0; j < (int) valueNames.size(); j++) dEdV[j][i] += (RealOpenMM) energyDerivExpressions[index][j].evaluate(variables); forces[i][0] -= (RealOpenMM) energyGradientExpressions[index][0].evaluate(variables); forces[i][1] -= (RealOpenMM) energyGradientExpressions[index][1].evaluate(variables); forces[i][2] -= (RealOpenMM) energyGradientExpressions[index][2].evaluate(variables); } } void ReferenceCustomGBIxn::calculateParticlePairEnergyTerm(int index, int numAtoms, vector& atomCoordinates, RealOpenMM** atomParameters, const vector >& values, const map& globalParameters, const vector >& exclusions, bool useExclusions, vector& forces, RealOpenMM* totalEnergy, vector >& dEdV) const { if (cutoff) { // Loop over all pairs in the neighbor list. for (int i = 0; i < (int) neighborList->size(); i++) { OpenMM::AtomPair pair = (*neighborList)[i]; if (useExclusions && exclusions[pair.first].find(pair.second) != exclusions[pair.first].end()) continue; calculateOnePairEnergyTerm(index, pair.first, pair.second, atomCoordinates, atomParameters, globalParameters, values, forces, totalEnergy, dEdV); } } else { // Perform an O(N^2) loop over all atom pairs. for (int i = 0; i < numAtoms; i++) { for (int j = i+1; j < numAtoms; j++) { if (useExclusions && exclusions[i].find(j) != exclusions[i].end()) continue; calculateOnePairEnergyTerm(index, i, j, atomCoordinates, atomParameters, globalParameters, values, forces, totalEnergy, dEdV); } } } } void ReferenceCustomGBIxn::calculateOnePairEnergyTerm(int index, int atom1, int atom2, vector& atomCoordinates, RealOpenMM** atomParameters, const map& globalParameters, const vector >& values, vector& forces, RealOpenMM* totalEnergy, vector >& dEdV) const { // Compute the displacement. RealOpenMM deltaR[ReferenceForce::LastDeltaRIndex]; if (periodic) ReferenceForce::getDeltaRPeriodic(atomCoordinates[atom2], atomCoordinates[atom1], periodicBoxVectors, deltaR); else ReferenceForce::getDeltaR(atomCoordinates[atom2], atomCoordinates[atom1], deltaR); RealOpenMM r = deltaR[ReferenceForce::RIndex]; if (cutoff && r >= cutoffDistance) return; // Record variables for evaluating expressions. map variables = globalParameters; for (int i = 0; i < (int) paramNames.size(); i++) { variables[particleParamNames[i*2]] = atomParameters[atom1][i]; variables[particleParamNames[i*2+1]] = atomParameters[atom2][i]; } variables["r"] = r; for (int i = 0; i < (int) valueNames.size(); i++) { variables[particleValueNames[i*2]] = values[i][atom1]; variables[particleValueNames[i*2+1]] = values[i][atom2]; } // Evaluate the energy and its derivatives. if (totalEnergy != NULL) *totalEnergy += (RealOpenMM) energyExpressions[index].evaluate(variables); RealOpenMM dEdR = (RealOpenMM) energyDerivExpressions[index][0].evaluate(variables); dEdR *= 1/r; for (int i = 0; i < 3; i++) { forces[atom1][i] -= dEdR*deltaR[i]; forces[atom2][i] += dEdR*deltaR[i]; } for (int i = 0; i < (int) valueNames.size(); i++) { dEdV[i][atom1] += (RealOpenMM) energyDerivExpressions[index][2*i+1].evaluate(variables); dEdV[i][atom2] += (RealOpenMM) energyDerivExpressions[index][2*i+2].evaluate(variables); } } void ReferenceCustomGBIxn::calculateChainRuleForces(int numAtoms, vector& atomCoordinates, RealOpenMM** atomParameters, const vector >& values, const map& globalParameters, const vector >& exclusions, vector& forces, vector >& dEdV) const { if (cutoff) { // Loop over all pairs in the neighbor list. for (int i = 0; i < (int) neighborList->size(); i++) { OpenMM::AtomPair pair = (*neighborList)[i]; bool isExcluded = (exclusions[pair.first].find(pair.second) != exclusions[pair.first].end()); calculateOnePairChainRule(pair.first, pair.second, atomCoordinates, atomParameters, globalParameters, values, forces, dEdV, isExcluded); calculateOnePairChainRule(pair.second, pair.first, atomCoordinates, atomParameters, globalParameters, values, forces, dEdV, isExcluded); } } else { // Perform an O(N^2) loop over all atom pairs. for (int i = 0; i < numAtoms; i++) { for (int j = i+1; j < numAtoms; j++) { bool isExcluded = (exclusions[i].find(j) != exclusions[i].end()); calculateOnePairChainRule(i, j, atomCoordinates, atomParameters, globalParameters, values, forces, dEdV, isExcluded); calculateOnePairChainRule(j, i, atomCoordinates, atomParameters, globalParameters, values, forces, dEdV, isExcluded); } } } // Compute chain rule terms for computed values that depend explicitly on particle coordinates. map variables = globalParameters; for (int i = 0; i < numAtoms; i++) { variables["x"] = atomCoordinates[i][0]; variables["y"] = atomCoordinates[i][1]; variables["z"] = atomCoordinates[i][2]; vector dVdX(valueDerivExpressions.size(), 0.0); vector dVdY(valueDerivExpressions.size(), 0.0); vector dVdZ(valueDerivExpressions.size(), 0.0); for (int j = 0; j < (int) paramNames.size(); j++) variables[paramNames[j]] = atomParameters[i][j]; for (int j = 1; j < (int) valueNames.size(); j++) { variables[valueNames[j-1]] = values[j-1][i]; for (int k = 1; k < j; k++) { RealOpenMM dVdV = (RealOpenMM) valueDerivExpressions[j][k].evaluate(variables); dVdX[j] += dVdV*dVdX[k]; dVdY[j] += dVdV*dVdY[k]; dVdZ[j] += dVdV*dVdZ[k]; } dVdX[j] += (RealOpenMM) valueGradientExpressions[j][0].evaluate(variables); dVdY[j] += (RealOpenMM) valueGradientExpressions[j][1].evaluate(variables); dVdZ[j] += (RealOpenMM) valueGradientExpressions[j][2].evaluate(variables); forces[i][0] -= dEdV[j][i]*dVdX[j]; forces[i][1] -= dEdV[j][i]*dVdY[j]; forces[i][2] -= dEdV[j][i]*dVdZ[j]; } } } void ReferenceCustomGBIxn::calculateOnePairChainRule(int atom1, int atom2, vector& atomCoordinates, RealOpenMM** atomParameters, const map& globalParameters, const vector >& values, vector& forces, vector >& dEdV, bool isExcluded) const { // Compute the displacement. RealOpenMM deltaR[ReferenceForce::LastDeltaRIndex]; if (periodic) ReferenceForce::getDeltaRPeriodic(atomCoordinates[atom2], atomCoordinates[atom1], periodicBoxVectors, deltaR); else ReferenceForce::getDeltaR(atomCoordinates[atom2], atomCoordinates[atom1], deltaR); RealOpenMM r = deltaR[ReferenceForce::RIndex]; if (cutoff && r >= cutoffDistance) return; // Record variables for evaluating expressions. map variables = globalParameters; for (int i = 0; i < (int) paramNames.size(); i++) { variables[particleParamNames[i*2]] = atomParameters[atom1][i]; variables[particleParamNames[i*2+1]] = atomParameters[atom2][i]; } variables["r"] = r; variables[particleValueNames[0]] = values[0][atom1]; variables[particleValueNames[1]] = values[0][atom2]; // Evaluate the derivative of each parameter with respect to position and apply forces. RealOpenMM rinv = 1/r; deltaR[0] *= rinv; deltaR[1] *= rinv; deltaR[2] *= rinv; vector dVdR1(valueDerivExpressions.size(), 0.0); vector dVdR2(valueDerivExpressions.size(), 0.0); if (!isExcluded || valueTypes[0] != OpenMM::CustomGBForce::ParticlePair) { dVdR1[0] = (RealOpenMM) valueDerivExpressions[0][0].evaluate(variables);; dVdR2[0] = -dVdR1[0]; for (int i = 0; i < 3; i++) { forces[atom1][i] -= dEdV[0][atom1]*dVdR1[0]*deltaR[i]; forces[atom2][i] -= dEdV[0][atom1]*dVdR2[0]*deltaR[i]; } } variables = globalParameters; for (int i = 0; i < (int) paramNames.size(); i++) variables[paramNames[i]] = atomParameters[atom1][i]; variables[valueNames[0]] = values[0][atom1]; for (int i = 1; i < (int) valueNames.size(); i++) { variables[valueNames[i]] = values[i][atom1]; variables["x"] = atomCoordinates[atom1][0]; variables["y"] = atomCoordinates[atom1][1]; variables["z"] = atomCoordinates[atom1][2]; for (int j = 0; j < i; j++) { RealOpenMM dVdV = (RealOpenMM) valueDerivExpressions[i][j].evaluate(variables); dVdR1[i] += dVdV*dVdR1[j]; dVdR2[i] += dVdV*dVdR2[j]; } for (int k = 0; k < 3; k++) { forces[atom1][k] -= dEdV[i][atom1]*dVdR1[i]*deltaR[k]; forces[atom2][k] -= dEdV[i][atom1]*dVdR2[i]*deltaR[k]; } } }