Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
683963b2
Commit
683963b2
authored
Feb 06, 2020
by
peastman
Browse files
Implemented switchDistance option for GromacsTopFile
parent
b994ed24
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletion
+28
-1
wrappers/python/simtk/openmm/app/gromacstopfile.py
wrappers/python/simtk/openmm/app/gromacstopfile.py
+14
-1
wrappers/python/tests/TestGromacsTopFile.py
wrappers/python/tests/TestGromacsTopFile.py
+14
-0
No files found.
wrappers/python/simtk/openmm/app/gromacstopfile.py
View file @
683963b2
...
...
@@ -592,7 +592,8 @@ class GromacsTopFile(object):
top
.
addBond
(
atoms
[
int
(
fields
[
0
])
-
1
],
atoms
[
int
(
fields
[
1
])
-
1
])
def
createSystem
(
self
,
nonbondedMethod
=
ff
.
NoCutoff
,
nonbondedCutoff
=
1.0
*
unit
.
nanometer
,
constraints
=
None
,
rigidWater
=
True
,
implicitSolvent
=
None
,
soluteDielectric
=
1.0
,
solventDielectric
=
78.5
,
ewaldErrorTolerance
=
0.0005
,
removeCMMotion
=
True
,
hydrogenMass
=
None
):
constraints
=
None
,
rigidWater
=
True
,
implicitSolvent
=
None
,
soluteDielectric
=
1.0
,
solventDielectric
=
78.5
,
ewaldErrorTolerance
=
0.0005
,
removeCMMotion
=
True
,
hydrogenMass
=
None
,
switchDistance
=
None
):
"""Construct an OpenMM System representing the topology described by this
top file.
...
...
@@ -627,6 +628,9 @@ class GromacsTopFile(object):
The mass to use for hydrogen atoms bound to heavy atoms. Any mass
added to a hydrogen is subtracted from the heavy atom to keep their
total mass the same.
switchDistance : float=None
The distance at which the potential energy switching function is turned on for
Lennard-Jones interactions. If this is None, no switching function will be used.
Returns
-------
...
...
@@ -1091,6 +1095,9 @@ class GromacsTopFile(object):
nb
.
setNonbondedMethod
(
methodMap
[
nonbondedMethod
])
nb
.
setCutoffDistance
(
nonbondedCutoff
)
nb
.
setEwaldErrorTolerance
(
ewaldErrorTolerance
)
if
switchDistance
is
not
None
:
nb
.
setUseSwitchingFunction
(
True
)
nb
.
setSwitchingDistance
(
switchDistance
)
if
self
.
_defaults
[
1
]
in
(
'1'
,
'3'
):
methodMap
=
{
ff
.
NoCutoff
:
mm
.
CustomNonbondedForce
.
NoCutoff
,
ff
.
CutoffNonPeriodic
:
mm
.
CustomNonbondedForce
.
CutoffNonPeriodic
,
...
...
@@ -1100,6 +1107,9 @@ class GromacsTopFile(object):
ff
.
LJPME
:
mm
.
CustomNonbondedForce
.
CutoffPeriodic
}
lj
.
setNonbondedMethod
(
methodMap
[
nonbondedMethod
])
lj
.
setCutoffDistance
(
nonbondedCutoff
)
if
switchDistance
is
not
None
:
lj
.
setUseSwitchingFunction
(
True
)
lj
.
setSwitchingDistance
(
switchDistance
)
if
has_nbfix_terms
:
if
self
.
_defaults
[
1
]
!=
'2'
:
...
...
@@ -1175,6 +1185,9 @@ class GromacsTopFile(object):
cforce
.
setCutoffDistance
(
nonbondedCutoff
)
else
:
raise
ValueError
(
'Unrecognized nonbonded method'
)
if
switchDistance
is
not
None
:
cforce
.
setUseSwitchingFunction
(
True
)
cforce
.
setSwitchingDistance
(
switchDistance
)
for
i
in
lj_idx_list
:
cforce
.
addParticle
((
i
-
1
,))
# adjust for indexing from 0
...
...
wrappers/python/tests/TestGromacsTopFile.py
View file @
683963b2
...
...
@@ -93,6 +93,20 @@ class TestGromacsTopFile(unittest.TestCase):
cutoff_distance
=
force
.
getCutoffDistance
()
self
.
assertEqual
(
cutoff_distance
,
cutoff_check
)
def
test_SwitchingFunction
(
self
):
"""Test using a switching function."""
for
filename
in
(
'systems/implicit.top'
,
'systems/ionic.top'
):
top
=
GromacsTopFile
(
filename
)
for
distance
in
(
None
,
0.8
*
nanometers
):
system
=
top
.
createSystem
(
nonbondedMethod
=
CutoffNonPeriodic
,
switchDistance
=
distance
)
for
f
in
system
.
getForces
():
if
isinstance
(
f
,
NonbondedForce
)
or
isinstance
(
f
,
CustomNonbondedForce
):
if
distance
is
None
:
self
.
assertFalse
(
f
.
getUseSwitchingFunction
())
else
:
self
.
assertTrue
(
f
.
getUseSwitchingFunction
())
self
.
assertEqual
(
distance
,
f
.
getSwitchingDistance
())
def
test_EwaldErrorTolerance
(
self
):
"""Test to make sure the ewaldErrorTolerance parameter is passed correctly."""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment