/* -------------------------------------------------------------------------- * * OpenMM * * -------------------------------------------------------------------------- * * This is part of the OpenMM molecular simulation toolkit. * * See https://openmm.org/development. * * * * Portions copyright (c) 2008-2026 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 "openmm/Force.h" #include "openmm/OpenMMException.h" #include "openmm/AmoebaGeneralizedKirkwoodForce.h" #include "openmm/internal/AmoebaGeneralizedKirkwoodForceImpl.h" using namespace OpenMM; AmoebaGeneralizedKirkwoodForce::AmoebaGeneralizedKirkwoodForce() : solventDielectric(78.3), soluteDielectric(1.0), dielectricOffset(0.009), includeCavityTerm(1), probeRadius(0.14), tanhRescaling(false), beta0(0.9563), beta1(0.2578), beta2(0.0810), descreenOffset(0.0) { surfaceAreaFactor = -6.0* 3.1415926535*0.0216*1000.0*0.4184; } int AmoebaGeneralizedKirkwoodForce::getNumParticles() const { return particles.size(); } int AmoebaGeneralizedKirkwoodForce::addParticle(double charge, double radius, double scalingFactor) { particles.push_back(ParticleInfo(charge, radius, scalingFactor, radius, 0.0)); return particles.size()-1; } int AmoebaGeneralizedKirkwoodForce::addParticle(double charge, double radius, double scalingFactor, double descreenRadius, double neckFactor) { particles.push_back(ParticleInfo(charge, radius, scalingFactor, descreenRadius, neckFactor)); return particles.size()-1; } void AmoebaGeneralizedKirkwoodForce::getParticleParameters(int index, double& charge, double& radius, double& scalingFactor, double& descreenRadius, double& neckFactor) const { charge = particles[index].charge; radius = particles[index].radius; scalingFactor = particles[index].scalingFactor; descreenRadius = particles[index].descreenRadius; neckFactor = particles[index].neckFactor; } void AmoebaGeneralizedKirkwoodForce::setParticleParameters(int index, double charge, double radius, double scalingFactor, double descreenRadius, double neckFactor) { particles[index].charge = charge; particles[index].radius = radius; particles[index].scalingFactor = scalingFactor; particles[index].descreenRadius = descreenRadius; particles[index].neckFactor = neckFactor; } double AmoebaGeneralizedKirkwoodForce::getDielectricOffset() const { return dielectricOffset; } void AmoebaGeneralizedKirkwoodForce::setDielectricOffset(double inputDielectricOffset) { dielectricOffset = inputDielectricOffset; } int AmoebaGeneralizedKirkwoodForce::getIncludeCavityTerm() const { return includeCavityTerm; } void AmoebaGeneralizedKirkwoodForce::setIncludeCavityTerm(int inputIncludeCavityTerm) { includeCavityTerm = inputIncludeCavityTerm; } double AmoebaGeneralizedKirkwoodForce::getProbeRadius() const { return probeRadius; } void AmoebaGeneralizedKirkwoodForce::setProbeRadius(double inputProbeRadius) { probeRadius = inputProbeRadius; } double AmoebaGeneralizedKirkwoodForce::getSurfaceAreaFactor() const { return surfaceAreaFactor; } void AmoebaGeneralizedKirkwoodForce::setSurfaceAreaFactor(double inputSurfaceAreaFactor) { surfaceAreaFactor = inputSurfaceAreaFactor; } double AmoebaGeneralizedKirkwoodForce::getDescreenOffset() const { return descreenOffset; } void AmoebaGeneralizedKirkwoodForce::setDescreenOffset(double inputDescreenOffet) { descreenOffset = inputDescreenOffet; } ForceImpl* AmoebaGeneralizedKirkwoodForce::createImpl() const { return new AmoebaGeneralizedKirkwoodForceImpl(*this); } void AmoebaGeneralizedKirkwoodForce::updateParametersInContext(Context& context) { dynamic_cast(getImplInContext(context)).updateParametersInContext(getContextImpl(context)); }