Simpatico  v1.10
Ring.cpp
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "Ring.h"
9 
10 namespace Simp
11 {
12 
13  using namespace Util;
14 
15  /*
16  * Constructor.
17  */
19  : Species()
20  {}
21 
22  /*
23  * Destructor.
24  */
26  {}
27 
28  /*
29  * Build the chemical structure of a flexible loop molecule.
30  */
32  {
33  // Preconditions
34  if (nAtom() < 3)
35  UTIL_THROW("nAtom < 3");
36  if (nBond() != nAtom())
37  UTIL_THROW("nBond != nAtom");
38  #ifdef SIMP_ANGLE
39  if (nAngle() != nAtom())
40  UTIL_THROW("nAngle != nAtom");
41  #endif
42  #ifdef SIMP_DIHEDRAL
43  if (nDihedral() != nAtom())
44  UTIL_THROW("nDihedral != nAtom");
45  #endif
46 
47 
48  int i;
49 
50  allocate();
51 
52  // Set Atom Type Ids
53  for (i=0; i < nAtom(); ++i) {
55  }
56 
57  // Build Bonds.
58  for (i=0; i < nBond(); ++i) {
59  makeBond(i, i, (i+1)%nAtom(), calculateBondTypeId(i));
60  }
61 
62  #ifdef SIMP_ANGLE
63  // Build Angles.
64  for (i = 0; i < nAngle(); ++i) {
65  makeAngle(i, i, (i+1)%nAtom(), (i+2)%nAtom(), calculateAngleTypeId(i));
66  }
67  #endif
68 
69  #ifdef SIMP_DIHEDRAL
70  // Build Dihedrals.
71  for (i = 0; i < nDihedral(); ++i) {
72  makeDihedral(i, i, (i+1)%nAtom(), (i+2)%nAtom(), (i+3)%nAtom(),
74  }
75  #endif
76 
77  }
78 
79 }
void setAtomType(int atomId, int atomType)
Set the type for one atom in a generic molecule of this Species.
int nAtom() const
Get number of atoms per molecule for this Species.
Ring()
Constructor.
Definition: Ring.cpp:18
void buildRing()
Build the chemical structure for a ring molecule.
Definition: Ring.cpp:31
Classes used by all simpatico molecular simulations.
int nDihedral() const
Get number of dihedrals per molecule for this Species.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
void makeDihedral(int dihedralId, int atomId1, int atomId2, int atomId3, int atomId4, int dihedralType)
Add a dihedral to the chemical structure of a generic molecule.
Utility classes for scientific computation.
Definition: accumulators.mod:1
virtual int calculateAtomTypeId(int index) const =0
Return the atom type id for a specific atom.
void makeBond(int bondId, int atomId1, int atomId2, int bondType)
Add a bond to the chemical structure of a generic molecule.
virtual int calculateAngleTypeId(int index) const =0
Return the angle type id for a specific angle.
virtual int calculateDihedralTypeId(int index) const =0
Return the dihedral type id for a specific dihedral.
virtual int calculateBondTypeId(int index) const =0
Return the bond type id for a specific bond.
void makeAngle(int angleId, int atomId1, int atomId2, int atomId3, int angleType)
Add an angle to the chemical structure of a generic molecule.
virtual ~Ring()
Destructor.
Definition: Ring.cpp:25
void allocate()
Allocate chemical structure arrays.
A Species represents a set of chemically similar molecules.
int nBond() const
Get number of bonds per molecule for this Species.
int nAngle() const
Get number of angles per molecule for this Species.