forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstodyn.f
26 lines (26 loc) · 948 Bytes
/
stodyn.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) 1998 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c ################################################################
c ## ##
c ## module stodyn -- SD trajectory frictional coefficients ##
c ## ##
c ################################################################
c
c
c friction global frictional coefficient for exposed particle
c fgamma atomic frictional coefficients for each atom
c use_sdarea logical flag to use surface area friction scaling
c
c
module stodyn
implicit none
real*8 friction
real*8, allocatable :: fgamma(:)
logical use_sdarea
save
end