forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurypot.f
26 lines (26 loc) · 897 Bytes
/
urypot.f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
c
c
c ###################################################
c ## COPYRIGHT (C) 2000 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c ###############################################################
c ## ##
c ## module urypot -- Urey-Bradley functional form details ##
c ## ##
c ###############################################################
c
c
c cury cubic coefficient in Urey-Bradley potential
c qury quartic coefficient in Urey-Bradley potential
c ureyunit convert Urey-Bradley energy to kcal/mole
c
c
module urypot
implicit none
real*8 cury
real*8 qury
real*8 ureyunit
save
end