forked from TinkerTools/tinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathewald.f
30 lines (30 loc) · 1.07 KB
/
ewald.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
27
28
29
30
c
c
c ###################################################
c ## COPYRIGHT (C) 2001 by Jay William Ponder ##
c ## All Rights Reserved ##
c ###################################################
c
c ################################################################
c ## ##
c ## module ewald -- Ewald summation parameters and options ##
c ## ##
c ################################################################
c
c
c aewald current value of Ewald convergence coefficient
c aeewald Ewald convergence coefficient for electrostatics
c apewald Ewald convergence coefficient for polarization
c adewald Ewald convergence coefficient for dispersion
c boundary Ewald boundary condition; none, tinfoil or vacuum
c
c
module ewald
implicit none
real*8 aewald
real*8 aeewald
real*8 apewald
real*8 adewald
character*7 boundary
save
end