-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathtest_pot_twist.py
More file actions
92 lines (78 loc) · 5.25 KB
/
test_pot_twist.py
File metadata and controls
92 lines (78 loc) · 5.25 KB
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
#!/usr/bin/env python3
# test_pot_twist.py
#------------------------------------------------------------------------------------------------#
# This software was written in 2016/17 #
# by Michael P. Allen <m.p.allen@warwick.ac.uk>/<m.p.allen@bristol.ac.uk> #
# and Dominic J. Tildesley <d.tildesley7@gmail.com> ("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. #
#------------------------------------------------------------------------------------------------#
"""Angle-torsion potential and forces."""
import numpy as np
n = 4 # Four-atom potential
print('test_pot_twist module')
print('Returns potential and force for polymer angle-torsion')
print(n,'-atom potential',sep='')
def force ( r ):
"""Returns potential pot and numpy array f of shape (n,3), same as input argument.
Demonstrates the calculation of forces from the polymer angle-twisting potential.
We choose to make the polymer the minimum length needed for testing.
Written for ease of comparison with the text rather than efficiency!
"""
assert r.shape == (n,3), 'Incorrect shape of r'
d = np.zeros_like(r) # Create d vectors (bonds)
d[1:n,:] = r[1:n,:] - r[0:n-1,:] # Compute d vectors (zero index not used)
# Store C coefficients in a matrix
# In the general case we would not need to calculate every pair
# and also we would make use of the symmetry cc[a,b]=cc[b,a]
cc = np.zeros((n,n),dtype=np.float64) # Create C array (scalar products)
for a in range(1,n):
for b in range(1,n):
cc[a,b]=np.dot(d[a,:],d[b,:]) # Compute C array (zero indices not used)
# Store D coefficients in a matrix
# In the general case we would not need to calculate every pair
# and also we would make use of the symmetry dd[a,b]=dd[b,a]
dd = np.zeros((n,n),dtype=np.float64) # Create D array
for a in range(1,n):
for b in range(1,n):
dd[a,b]=cc[a,a]*cc[b,b] - cc[a,b]**2 # Compute D array (zero indices not used)
a = n-1 # For this test there is just one angle
# Here is the potential as a function of cos(phi)
# For testing we use the simplest form: v= -cos(phi)
# The notation matches that used in the appendix
prefac = 1.0 / np.sqrt(dd[a,a-1]*dd[a-1,a-2])
fac = (cc[a,a-1]*cc[a-1,a-2]-cc[a,a-2]*cc[a-1,a-1])
pot = prefac * fac # This is -cos(phi)
# Here we include the derivative of the potential with respect to cos(phi) in the prefactor
# For this simple case it is -1, so the forces are simply gradients of cos(phi) as in the text
f = np.empty_like(r) # create force array
fac1 = fac/dd[a,a-1]
fac2 = fac/dd[a-1,a-2]
f[a,:] = -prefac * ( cc[a-1,a-2]*d[a-1,:] - cc[a-1,a-1]*d[a-2,:]
-fac1 * ( cc[a-1,a-1]*d[a,:] - cc[a,a-1]*d[a-1,:] ) )
f[a-1,:] = -prefac * ( cc[a-1,a-2]*d[a,:] - cc[a-1,a-2]*d[a-1,:]
+ cc[a,a-1]*d[a-2,:] + cc[a-1,a-1]*d[a-2,:] - 2.0*cc[a,a-2]*d[a-1,:]
-fac2 * ( cc[a-2,a-2]*d[a-1,:] - cc[a-1,a-2]*d[a-2,:] )
-fac1 * ( cc[a,a]*d[a-1,:] - cc[a-1,a-1]*d[a,:] - cc[a,a-1]*d[a,:] + cc[a,a-1]*d[a-1,:]) )
f[a-2,:] = -prefac * ( -cc[a-1,a-2]*d[a,:] + cc[a,a-1]*d[a-1,:]
-cc[a,a-1]*d[a-2,:] - cc[a-1,a-1]*d[a,:] + 2.0*cc[a,a-2]*d[a-1,:]
-fac2 * ( cc[a-1,a-1]*d[a-2,:] - cc[a-2,a-2]*d[a-1,:] - cc[a-1,a-2]*d[a-1,:] + cc[a-1,a-2]*d[a-2,:] )
-fac1 * ( -cc[a,a]*d[a-1,:] + cc[a,a-1]*d[a,:] ) )
f[a-3,:] = -prefac * ( -cc[a,a-1]*d[a-1,:] + cc[a-1,a-1]*d[a,:]
-fac2 * ( -cc[a-1,a-1]*d[a-2,:] + cc[a-1,a-2]*d[a-1,:] ) )
return pot, f