Define a three-body potential energy function corresponding to the CHARMM angle style
where \(K, \theta_0, K_{\text{ub}}, r_{\text{ub}}\) are coefficients that must be set to define the interaction between atoms \(i, j, k\) .
Angles and types can be defined directly within the python input script, read from a LAMMPS data file (using the LAMMPS reader utility), read from a NAMD input file (using the NAMD reader utility) or read from a restart file.
Setting angle types and angles from within the Python environment is done with simple invocations. Parameters with = may be given in any order and are also optionally specified. For example, if an existing angle type has already been set, it is unneccessary to specify its parameters again when creating an angle for three atoms.
setAngleTypeCoefs(k=...,theta0=...,kub=...,rub=...,type=...)
createAngle(a,b,c,k=...,theta0=...,kub=...,rub=...,type=...)
Arguments
Adding the fix
#Add Fix for CHARMM angle style
anglePot = FixAngleCHARMM(state,'anglePot')
Setting angle type coefficients in python
#Setting angle types
anglePot.setAngleTypeCoefs(k=100.0,theta0=2*pi/3.,type=0)
Defining an angle type in python
#Creating an angle between atoms 1,2,3
a=1 # index for atom 1
b=2 # index for atom 2
c=3 # index for atom 3
d=3 # index for atom 4
anglePot.createAngle(a,b,c,type=0)
# create angle and implicitly create type
anglePot.createAngle(b,c,d,k=80.0,theta0=pi*100./180.,kub=10.0,rub=1.0,type=1)
Activating the fix
#Activate fix
state.activateFix(anglePot)
angle_coeff type k theta0 kub rub