Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92401241
nti.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 20, 00:23
Size
715 B
Mime Type
text/x-python
Expires
Fri, Nov 22, 00:23 (2 d)
Engine
blob
Format
Raw Data
Handle
22343292
Attached To
rLAMMPS lammps
nti.py
View Options
#!/usr/bin/env python
# nti.py - integrate compute fep results using the trapezoidal rule
import
sys
,
math
if
len
(
sys
.
argv
)
<
3
:
print
"Thermodynamic Integration with Numerical Derivative"
print
"Trapezoidal integration of compute_fep results at equally-spaced points"
print
"usage: nti.py temperature hderiv < fep.lmp"
sys
.
exit
()
hderiv
=
float
(
sys
.
argv
[
2
])
line
=
sys
.
stdin
.
readline
()
while
line
.
startswith
(
"#"
):
line
=
sys
.
stdin
.
readline
()
tok
=
line
.
split
()
lo
=
float
(
tok
[
1
])
i
=
0
sum
=
0.0
for
line
in
sys
.
stdin
:
tok
=
line
.
split
()
hi
=
float
(
tok
[
1
])
sum
+=
(
hi
+
lo
)
/
(
2
*
hderiv
)
lo
=
hi
i
+=
1
print
sum
/
i
# int_0^1: divide by i == multiply by delta
Event Timeline
Log In to Comment