/* Portions copyright (c) 2011-2015 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 "SimTKOpenMMUtilities.h" #include "ReferenceVirtualSites.h" #include "ReferenceCustomDynamics.h" #include "openmm/OpenMMException.h" #include "openmm/internal/ContextImpl.h" #include "openmm/internal/ForceImpl.h" #include "lepton/Operation.h" #include "lepton/ParsedExpression.h" #include "lepton/Parser.h" #include #include using namespace std; using namespace OpenMM; /**--------------------------------------------------------------------------------------- ReferenceCustomDynamics constructor @param numberOfAtoms number of atoms @param integrator the integrator definition to use --------------------------------------------------------------------------------------- */ ReferenceCustomDynamics::ReferenceCustomDynamics(int numberOfAtoms, const CustomIntegrator& integrator) : ReferenceDynamics(numberOfAtoms, integrator.getStepSize(), 0.0), integrator(integrator) { sumBuffer.resize(numberOfAtoms); oldPos.resize(numberOfAtoms); stepType.resize(integrator.getNumComputations()); stepVariable.resize(integrator.getNumComputations()); for (int i = 0; i < integrator.getNumComputations(); i++) { string expression; integrator.getComputationStep(i, stepType[i], stepVariable[i], expression); } kineticEnergyExpression = Lepton::Parser::parse(integrator.getKineticEnergyExpression()).optimize().createProgram(); kineticEnergyNeedsForce = false; for (int i = 0; i < kineticEnergyExpression.getNumOperations(); i++) { const Lepton::Operation& op = kineticEnergyExpression.getOperation(i); if (op.getId() == Lepton::Operation::VARIABLE && op.getName() == "f") kineticEnergyNeedsForce = true; } } /**--------------------------------------------------------------------------------------- ReferenceCustomDynamics destructor --------------------------------------------------------------------------------------- */ ReferenceCustomDynamics::~ReferenceCustomDynamics() { } /**--------------------------------------------------------------------------------------- Update -- driver routine for performing Custom dynamics update of coordinates and velocities @param context the context this integrator is updating @param numberOfAtoms number of atoms @param atomCoordinates atom coordinates @param velocities velocities @param forces forces @param masses atom masses @param globals a map containing values of global variables @param forcesAreValid whether the current forces are valid or need to be recomputed --------------------------------------------------------------------------------------- */ void ReferenceCustomDynamics::update(ContextImpl& context, int numberOfAtoms, vector& atomCoordinates, vector& velocities, vector& forces, vector& masses, map& globals, vector >& perDof, bool& forcesAreValid, RealOpenMM tolerance) { int numSteps = stepType.size(); globals.insert(context.getParameters().begin(), context.getParameters().end()); oldPos = atomCoordinates; if (invalidatesForces.size() == 0) { // Some initialization can't be done in the constructor, since we need a ContextImpl from which to get the list of // Context parameters. Instead, we do it the first time this method is called. vector forceGroup; vector > expressions; CustomIntegratorUtilities::analyzeComputations(context, integrator, expressions, comparisons, blockEnd, invalidatesForces, needsForces, needsEnergy, computeBothForceAndEnergy, forceGroup); stepExpressions.resize(expressions.size()); for (int i = 0; i < numSteps; i++) { for (int j = 0; j < (int) expressions[i].size(); j++) stepExpressions[i].push_back(expressions[i][j].createProgram()); if (stepType[i] == CustomIntegrator::WhileBlockStart) blockEnd[blockEnd[i]] = i; // Record where to branch back to. } // Record the variable names and flags for the force and energy in each step. forceGroupFlags.resize(numSteps, -1); forceName.resize(numSteps, "f"); energyName.resize(numSteps, "energy"); vector forceGroupName; vector energyGroupName; for (int i = 0; i < 32; i++) { stringstream fname; fname << "f" << i; forceGroupName.push_back(fname.str()); stringstream ename; ename << "energy" << i; energyGroupName.push_back(ename.str()); } for (int i = 0; i < numSteps; i++) { if (needsForces[i] && forceGroup[i] > -1) forceName[i] = forceGroupName[forceGroup[i]]; if (needsEnergy[i] && forceGroup[i] > -1) energyName[i] = energyGroupName[forceGroup[i]]; if (forceGroup[i] > -1) forceGroupFlags[i] = 1< variables = globals; variables["uniform"] = SimTKOpenMMUtilities::getUniformlyDistributedRandomNumber(); variables["gaussian"] = SimTKOpenMMUtilities::getNormallyDistributedRandomNumber(); globals[stepVariable[step]] = stepExpressions[step][0].evaluate(variables); break; } case CustomIntegrator::ComputePerDof: { vector* results = NULL; if (stepVariable[step] == "x") results = &atomCoordinates; else if (stepVariable[step] == "v") results = &velocities; else { for (int j = 0; j < integrator.getNumPerDofVariables(); j++) if (stepVariable[step] == integrator.getPerDofVariableName(j)) results = &perDof[j]; } if (results == NULL) throw OpenMMException("Illegal per-DOF output variable: "+stepVariable[step]); computePerDof(numberOfAtoms, *results, atomCoordinates, velocities, forces, masses, globals, perDof, stepExpressions[step][0], forceName[step]); break; } case CustomIntegrator::ComputeSum: { computePerDof(numberOfAtoms, sumBuffer, atomCoordinates, velocities, forces, masses, globals, perDof, stepExpressions[step][0], forceName[step]); RealOpenMM sum = 0.0; for (int j = 0; j < numberOfAtoms; j++) if (masses[j] != 0.0) sum += sumBuffer[j][0]+sumBuffer[j][1]+sumBuffer[j][2]; globals[stepVariable[step]] = sum; break; } case CustomIntegrator::ConstrainPositions: { getReferenceConstraintAlgorithm()->apply(oldPos, atomCoordinates, inverseMasses, tolerance); oldPos = atomCoordinates; break; } case CustomIntegrator::ConstrainVelocities: { getReferenceConstraintAlgorithm()->applyToVelocities(oldPos, velocities, inverseMasses, tolerance); break; } case CustomIntegrator::UpdateContextState: { recordChangedParameters(context, globals); context.updateContextState(); globals.insert(context.getParameters().begin(), context.getParameters().end()); break; } case CustomIntegrator::IfBlockStart: { if (!evaluateCondition(step, globals)) nextStep = blockEnd[step]+1; break; } case CustomIntegrator::WhileBlockStart: { if (!evaluateCondition(step, globals)) nextStep = blockEnd[step]+1; break; } case CustomIntegrator::BlockEnd: { if (blockEnd[step] != -1) nextStep = blockEnd[step]; // Return to the start of a while block. break; } } if (invalidatesForces[step]) forcesAreValid = false; step = nextStep; } ReferenceVirtualSites::computePositions(context.getSystem(), atomCoordinates); incrementTimeStep(); recordChangedParameters(context, globals); } void ReferenceCustomDynamics::computePerDof(int numberOfAtoms, vector& results, const vector& atomCoordinates, const vector& velocities, const vector& forces, const vector& masses, const map& globals, const vector >& perDof, const Lepton::ExpressionProgram& expression, const std::string& forceName) { // Loop over all degrees of freedom. map variables = globals; for (int i = 0; i < numberOfAtoms; i++) { if (masses[i] != 0.0) { variables["m"] = masses[i]; for (int j = 0; j < 3; j++) { // Compute the expression. variables["x"] = atomCoordinates[i][j]; variables["v"] = velocities[i][j]; variables[forceName] = forces[i][j]; variables["uniform"] = SimTKOpenMMUtilities::getUniformlyDistributedRandomNumber(); variables["gaussian"] = SimTKOpenMMUtilities::getNormallyDistributedRandomNumber(); for (int k = 0; k < (int) perDof.size(); k++) variables[integrator.getPerDofVariableName(k)] = perDof[k][i][j]; results[i][j] = expression.evaluate(variables); } } } } bool ReferenceCustomDynamics::evaluateCondition(int step, map& globals) { map variables = globals; variables["uniform"] = SimTKOpenMMUtilities::getUniformlyDistributedRandomNumber(); variables["gaussian"] = SimTKOpenMMUtilities::getNormallyDistributedRandomNumber(); double lhs = stepExpressions[step][0].evaluate(variables); double rhs = stepExpressions[step][1].evaluate(variables); switch (comparisons[step]) { case CustomIntegratorUtilities::EQUAL: return (lhs == rhs); case CustomIntegratorUtilities::LESS_THAN: return (lhs < rhs); case CustomIntegratorUtilities::GREATER_THAN: return (lhs > rhs); case CustomIntegratorUtilities::NOT_EQUAL: return (lhs != rhs); case CustomIntegratorUtilities::LESS_THAN_OR_EQUAL: return (lhs <= rhs); case CustomIntegratorUtilities::GREATER_THAN_OR_EQUAL: return (lhs >= rhs); } throw OpenMMException("ReferenceCustomDynamics: Invalid comparison operator"); } /** * Check which context parameters have changed and register them with the context. */ void ReferenceCustomDynamics::recordChangedParameters(OpenMM::ContextImpl& context, std::map& globals) { for (map::const_iterator iter = context.getParameters().begin(); iter != context.getParameters().end(); ++iter) { string name = iter->first; double value = globals[name]; if (value != iter->second) context.setParameter(name, globals[name]); } } /**--------------------------------------------------------------------------------------- Compute the kinetic energy of the system. @param context the context this integrator is updating @param numberOfAtoms number of atoms @param atomCoordinates atom coordinates @param velocities velocities @param forces forces @param masses atom masses @param globals a map containing values of global variables @param perDof the values of per-DOF variables @param forcesAreValid whether the current forces are valid or need to be recomputed --------------------------------------------------------------------------------------- */ double ReferenceCustomDynamics::computeKineticEnergy(OpenMM::ContextImpl& context, int numberOfAtoms, std::vector& atomCoordinates, std::vector& velocities, std::vector& forces, std::vector& masses, std::map& globals, std::vector >& perDof, bool& forcesAreValid) { globals.insert(context.getParameters().begin(), context.getParameters().end()); if (kineticEnergyNeedsForce) { energy = context.calcForcesAndEnergy(true, true, -1); forcesAreValid = true; } computePerDof(numberOfAtoms, sumBuffer, atomCoordinates, velocities, forces, masses, globals, perDof, kineticEnergyExpression, "f"); RealOpenMM sum = 0.0; for (int j = 0; j < numberOfAtoms; j++) if (masses[j] != 0.0) sum += sumBuffer[j][0]+sumBuffer[j][1]+sumBuffer[j][2]; return sum; }