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
724e498b
Commit
724e498b
authored
Mar 26, 2012
by
Peter Eastman
Browse files
Created StateDataReporter
parent
ca9cf05f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
138 additions
and
0 deletions
+138
-0
wrappers/python/simtk/openmm/app/__init__.py
wrappers/python/simtk/openmm/app/__init__.py
+1
-0
wrappers/python/simtk/openmm/app/statedatareporter.py
wrappers/python/simtk/openmm/app/statedatareporter.py
+137
-0
No files found.
wrappers/python/simtk/openmm/app/__init__.py
View file @
724e498b
...
@@ -20,6 +20,7 @@ from amberinpcrdfile import AmberInpcrdFile
...
@@ -20,6 +20,7 @@ from amberinpcrdfile import AmberInpcrdFile
from
dcdfile
import
DCDFile
from
dcdfile
import
DCDFile
from
dcdreporter
import
DCDReporter
from
dcdreporter
import
DCDReporter
from
modeller
import
Modeller
from
modeller
import
Modeller
from
statedatareporter
import
StateDataReporter
# Enumerated values
# Enumerated values
...
...
wrappers/python/simtk/openmm/app/statedatareporter.py
0 → 100644
View file @
724e498b
"""
statedatareporter.py: Outputs data about a simulation
"""
__author__
=
"Peter Eastman"
__version__
=
"1.0"
import
simtk.openmm
as
mm
import
simtk.unit
as
unit
from
simtk.openmm.app
import
PDBFile
class
StateDataReporter
(
object
):
"""StateDataReporter outputs information about a simulation, such as energy and temperature, to a file.
To use it, create a StateDataReporter, then add it to the Simulation's list of reporters. The set of
data to write is configurable using boolean flags passed to the constructor. By default the data is
written in comma-separated-value (CSV) format, but you can specify a different separator to use.
"""
def
__init__
(
self
,
file
,
reportInterval
,
step
=
True
,
time
=
True
,
potentialEnergy
=
False
,
kineticEnergy
=
False
,
totalEnergy
=
False
,
temperature
=
False
,
volume
=
False
,
density
=
False
,
separator
=
','
):
"""Create a StateDataReporter.
Parameters:
- file (string or file) The file to write to, specified as a file name or file object
- reportInterval (int) The interval (in time steps) at which to write frames
- step (boolean=True) Whether to write the current step index to the file
- time (boolean=True) Whether to write the current time to the file
- potentialEnergy (boolean=False) Whether to write the potential energy to the file
- kineticEnergy (boolean=False) Whether to write the kinetic energy to the file
- totalEnergy (boolean=False) Whether to write the total energy to the file
- temperature(boolean=False) Whether to write the instantaneous temperature to the file
- volume (boolean=False) Whether to write the periodic box volume to the file
- density (boolean=False) Whether to write the system density to the file
- separator (string=',') The separator to use between columns in the file
"""
self
.
_reportInterval
=
reportInterval
self
.
_openedFile
=
isinstance
(
file
,
str
)
if
self
.
_openedFile
:
self
.
_out
=
open
(
file
,
'w'
)
else
:
self
.
_out
=
file
self
.
_step
=
step
self
.
_time
=
time
self
.
_potentialEnergy
=
potentialEnergy
self
.
_kineticEnergy
=
kineticEnergy
self
.
_totalEnergy
=
totalEnergy
self
.
_temperature
=
temperature
self
.
_volume
=
volume
self
.
_density
=
density
self
.
_separator
=
separator
self
.
_needEnergy
=
potentialEnergy
or
kineticEnergy
or
totalEnergy
or
temperature
self
.
_hasInitialized
=
False
def
describeNextReport
(
self
,
simulation
):
"""Get information about the next report this object will generate.
Parameters:
- simulation (Simulation) The Simulation to generate a report for
Returns: A five element tuple. The first element is the number of steps until the
next report. The remaining elements specify whether that report will require
positions, velocities, forces, and energies respectively.
"""
steps
=
self
.
_reportInterval
-
simulation
.
currentStep
%
self
.
_reportInterval
return
(
steps
,
False
,
False
,
False
,
self
.
_needEnergy
)
def
report
(
self
,
simulation
,
state
):
"""Generate a report.
Parameters:
- simulation (Simulation) The Simulation to generate a report for
- state (State) The current state of the simulation
"""
if
not
self
.
_hasInitialized
:
system
=
simulation
.
system
if
self
.
_temperature
:
# Compute the number of degrees of freedom.
dof
=
0
for
i
in
range
(
system
.
getNumParticles
()):
if
system
.
getParticleMass
(
i
)
>
0
*
unit
.
dalton
:
dof
+=
3
dof
-=
system
.
getNumConstraints
()
if
any
(
type
(
system
.
getForce
(
i
))
==
mm
.
CMMotionRemover
for
i
in
range
(
system
.
getNumForces
())):
dof
-=
3
self
.
_dof
=
dof
if
self
.
_density
:
# Compute the total system mass.
self
.
_totalMass
=
0
*
unit
.
dalton
for
i
in
range
(
system
.
getNumParticles
()):
self
.
_totalMass
+=
system
.
getParticleMass
(
i
)
# Write the headers.
headers
=
[]
if
self
.
_step
:
headers
.
append
(
'Step'
)
if
self
.
_time
:
headers
.
append
(
'Time (ps)'
)
if
self
.
_potentialEnergy
:
headers
.
append
(
'Potential Energy (kJ/mole)'
)
if
self
.
_kineticEnergy
:
headers
.
append
(
'Kinetic Energy (kJ/mole)'
)
if
self
.
_totalEnergy
:
headers
.
append
(
'Total Energy (kJ/mole)'
)
if
self
.
_temperature
:
headers
.
append
(
'Temperature (K)'
)
if
self
.
_volume
:
headers
.
append
(
'Box Volume (nm^3)'
)
if
self
.
_density
:
headers
.
append
(
'Density (amu/nm^3)'
)
print
>>
self
.
_out
,
'#"%s"'
%
(
'"'
+
self
.
_separator
+
'"'
).
join
(
headers
)
self
.
_hasInitialized
=
True
# Write the values.
values
=
[]
box
=
state
.
getPeriodicBoxVectors
()
volume
=
box
[
0
][
0
]
*
box
[
1
][
1
]
*
box
[
2
][
2
]
if
self
.
_step
:
values
.
append
(
simulation
.
currentStep
)
if
self
.
_time
:
values
.
append
(
state
.
getTime
().
value_in_unit
(
unit
.
picosecond
))
if
self
.
_potentialEnergy
:
values
.
append
(
state
.
getPotentialEnergy
().
value_in_unit
(
unit
.
kilojoules_per_mole
))
if
self
.
_kineticEnergy
:
values
.
append
(
state
.
getKineticEnergy
().
value_in_unit
(
unit
.
kilojoules_per_mole
))
if
self
.
_totalEnergy
:
values
.
append
((
state
.
getKineticEnergy
()
+
state
.
getPotentialEnergy
()).
value_in_unit
(
unit
.
kilojoules_per_mole
))
if
self
.
_temperature
:
values
.
append
((
2
*
state
.
getKineticEnergy
()
/
(
self
.
_dof
*
0.00831451
)).
value_in_unit
(
unit
.
kilojoules_per_mole
))
if
self
.
_volume
:
values
.
append
(
volume
.
value_in_unit
(
unit
.
nanometer
**
3
))
if
self
.
_density
:
values
.
append
((
self
.
_totalMass
/
volume
).
value_in_unit
(
unit
.
dalton
/
unit
.
nanometer
**
3
))
print
>>
self
.
_out
,
self
.
_separator
.
join
(
str
(
v
)
for
v
in
values
)
def
__del__
(
self
):
if
self
.
_openedFile
:
self
.
_out
.
close
()
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