-
Notifications
You must be signed in to change notification settings - Fork 103
/
test_pot_dd.f90
116 lines (94 loc) · 5.02 KB
/
test_pot_dd.f90
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
! test_pot_dd.f90
! dipole-dipole potential
MODULE test_pot_module
!------------------------------------------------------------------------------------------------!
! This software was written in 2016/17 !
! by Michael P. Allen <[email protected]>/<[email protected]> !
! and Dominic J. Tildesley <[email protected]> ("the authors"), !
! to accompany the book "Computer Simulation of Liquids", second edition, 2017 ("the text"), !
! published by Oxford University Press ("the publishers"). !
! !
! LICENCE !
! Creative Commons CC0 Public Domain Dedication. !
! To the extent possible under law, the authors have dedicated all copyright and related !
! and neighboring rights to this software to the PUBLIC domain worldwide. !
! This software is distributed without any warranty. !
! You should have received a copy of the CC0 Public Domain Dedication along with this software. !
! If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. !
! !
! DISCLAIMER !
! The authors and publishers make no warranties about the software, and disclaim liability !
! for all uses of the software, to the fullest extent permitted by applicable law. !
! The authors and publishers do not recommend use of this software for any purpose. !
! It is made freely available, solely to clarify points made in the text. When using or citing !
! the software, you should not imply endorsement by the authors or publishers. !
!------------------------------------------------------------------------------------------------!
USE, INTRINSIC :: iso_fortran_env, ONLY : error_unit
IMPLICIT NONE
PRIVATE
! Public routine
PUBLIC :: force
! Public data
INTEGER, PARAMETER, PUBLIC :: n = 2 ! Pair potential
CONTAINS
SUBROUTINE force ( r, e, pot, f, t )
USE maths_module, ONLY : cross_product
IMPLICIT NONE
REAL, DIMENSION(:,:), INTENT(in) :: r, e
REAL, INTENT(out) :: pot
REAL, DIMENSION(:,:), OPTIONAL, INTENT(out) :: f, t
REAL, DIMENSION(3) :: rij, sij, fij, gi, gj
REAL :: rij_mag, ci, cj, cij
REAL, PARAMETER :: tol = 1.e-6
INTEGER, PARAMETER :: i = 1, j = 2 ! notation to match appendix
! Routine to demonstrate the calculation of forces and torques from the
! dipole-dipole potential
! Written for ease of comparison with the text, rather than efficiency!
! Check dimensions to be sure
IF ( ANY ( SHAPE(r) /= [3,n] ) ) THEN
WRITE ( unit=error_unit, fmt='(a,4i15)' ) 'r shape error', SHAPE(r), 3, n
STOP 'Error in test_pot_dd'
END IF
IF ( ANY ( SHAPE(e) /= [3,n] ) ) THEN
WRITE ( unit=error_unit, fmt='(a,4i15)' ) 'e shape error', SHAPE(e), 3, n
STOP 'Error in test_pot_dd'
END IF
! Check unit vectors
IF ( ABS(SUM(e(:,i)**2)-1.0) > tol .OR. ABS(SUM(e(:,j)**2)-1.0) > tol ) THEN
WRITE ( unit=error_unit, fmt='(a)' ) 'Warning, non-unit vectors'
WRITE ( unit=error_unit, fmt='(4f10.5)' ) e(:,i), SUM(e(:,i)**2)
WRITE ( unit=error_unit, fmt='(4f10.5)' ) e(:,j), SUM(e(:,j)**2)
END IF
rij = r(:,i) - r(:,j)
rij_mag = SQRT ( SUM(rij**2) ) ! Magnitude of separation vector
sij = rij / rij_mag ! Unit vector
ci = DOT_PRODUCT ( e(:,i), sij )
cj = DOT_PRODUCT ( e(:,j), sij )
cij = DOT_PRODUCT ( e(:,i), e(:,j) )
! The dipole-dipole potential with mu_i = mu_j = 1
pot = (cij-3.0*ci*cj)/rij_mag**3
IF ( .NOT. PRESENT(f) ) RETURN
IF ( .NOT. PRESENT(t) ) THEN
WRITE ( unit=error_unit, fmt='(a)' ) 'Both f and t expected'
STOP 'Error in test_pot_dd'
END IF
IF ( ANY ( SHAPE(f) /= [3,n] ) ) THEN
WRITE ( unit=error_unit, fmt='(a,4i15)' ) 'f shape error', SHAPE(f), 3, n
STOP 'Error in test_pot_dd'
END IF
IF ( ANY ( SHAPE(t) /= [3,n] ) ) THEN
WRITE ( unit=error_unit, fmt='(a,4i15)' ) 't shape error', SHAPE(t), 3, n
STOP 'Error in test_pot_dd'
END IF
! Forces
fij = 3.0 * ( (cij-5.0*ci*cj)*sij + cj*e(:,i) + ci*e(:,j) ) / rij_mag**4
! Torque gradients
gi = ( e(:,j) - 3.0*cj*sij ) / rij_mag**3
gj = ( e(:,i) - 3.0*ci*sij ) / rij_mag**3
! Final forces and torques
f(:,i) = fij
f(:,j) = -fij
t(:,i) = -cross_product(e(:,i),gi)
t(:,j) = -cross_product(e(:,j),gj)
END SUBROUTINE force
END MODULE test_pot_module