Source code for intermol.forces.fourier_dihedral_type

import simtk.unit as units

from intermol.decorators import accepts_compatible_units
from abstract_dihedral_type import AbstractDihedralType


[docs]class FourierDihedralType(AbstractDihedralType): __slots__ = ['c1', 'c2', 'c3', 'c4', 'c5', 'improper'] @accepts_compatible_units(None, None, None, None, c1=units.kilojoules_per_mole, c2=units.kilojoules_per_mole, c3=units.kilojoules_per_mole, c4=units.kilojoules_per_mole, c5=units.kilojoules_per_mole, improper=None) def __init__(self, bondingtype1, bondingtype2, bondingtype3, bondingtype4, c1=0.0 * units.kilojoules_per_mole, c2=0.0 * units.kilojoules_per_mole, c3=0.0 * units.kilojoules_per_mole, c4=0.0 * units.kilojoules_per_mole, c5=0.0 * units.kilojoules_per_mole, improper=False): AbstractDihedralType.__init__(self, bondingtype1, bondingtype2, bondingtype3, bondingtype4, improper) self.c1 = c1 self.c2 = c2 self.c3 = c3 self.c4 = c4 self.c5 = c5
[docs]class FourierDihedral(FourierDihedralType): """ stub documentation """ def __init__(self, atom1, atom2, atom3, atom4, bondingtype1=None, bondingtype2=None, bondingtype3=None, bondingtype4=None, c1=0.0 * units.kilojoules_per_mole, c2=0.0 * units.kilojoules_per_mole, c3=0.0 * units.kilojoules_per_mole, c4=0.0 * units.kilojoules_per_mole, c5=0.0 * units.kilojoules_per_mole, improper=False): self.atom1 = atom1 self.atom2 = atom2 self.atom3 = atom3 self.atom4 = atom4 FourierDihedralType.__init__(self, bondingtype1, bondingtype2, bondingtype3, bondingtype4, c1=c1, c2=c2, c3=c3, c4=c4, c5=c5, improper=improper)