Simpatico  v1.10
LinearSG.cpp
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2014, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "LinearSG.h"
9 #ifdef UTIL_MPI
10 #include <mcMd/simulation/McMd_mpi.h>
11 #endif
12 
13 namespace McMd
14 {
15 
16  using namespace Util;
17 
18  /*
19  * Constructor.
20  */
22  : Linear(),
24  beadTypeIds0_(),
25  beadTypeIds1_()
26  #ifdef SIMP_ANGLE
27  , angleType_(NullIndex)
28  #endif
29  #ifdef SIMP_DIHEDRAL
30  , dihedralType_(NullIndex)
31  #endif
32  {
33  setMutatorPtr(this);
34  setClassName("LinearSG");
35  }
36 
37  /*
38  * Destructor.
39  */
41  {}
42 
43  /*
44  * Call general Species::readParameters() .
45  */
46  void LinearSG::readParameters(std::istream& in)
47  {
49  }
50 
51 
52  /*
53  * Read atom structure and two sets of atom type ids.
54  */
55  void LinearSG::readSpeciesParam(std::istream& in)
56  {
57  read<int>(in,"nAtom", nAtom_);
58  read<int>(in, "bondType", bondType_);
59  nBond_ = nAtom_ - 1;
60  #ifdef SIMP_ANGLE
61  hasAngles_ = 0; // Default value
62  nAngle_ = 0;
63  readOptional<int>(in, "hasAngles", hasAngles_);
64  if (hasAngles_) {
65  if (nAtom_ < 3) {
66  UTIL_THROW("Error: Cannot have angles with nAtom < 3");
67  }
68  nAngle_ = nAtom_ - 2;
69  read<int>(in, "angleType", angleType_);
70  }
71  #endif
72  #ifdef SIMP_DIHEDRAL
73  hasAngles_ = 0; // Default value
74  nDihedral_ = 0; // Default value
75  readOptional<int>(in, "hasDihedrals", hasDihedrals_);
76  if (hasDihedrals_) {
77  if (nAtom_ < 4) {
78  UTIL_THROW("Error: Cannot have angles with nAtom < 4");
79  }
80  nDihedral_ = nAtom_ - 3;
81  read<int>(in, "angleType", angleType_);
82  }
83  #endif
84  buildLinear();
85 
86  read<Pair <int> >(in, "typeIds", typeIds_);
87  beadTypeIds0_.allocate(nAtom_);
88  beadTypeIds1_.allocate(nAtom_);
89  readDArray<int>(in, "identities0", beadTypeIds0_, nAtom_);
90  readDArray<int>(in, "identities1", beadTypeIds1_, nAtom_);
91 
92  read<double>(in, "weightRatio", weightRatio_);
93 
95 
96  // Set statistical weights
97  double sum = weightRatio_ + 1.0;
98  mutator().setWeight(0, weightRatio_/sum);
99  mutator().setWeight(1, 1.0/sum);
100  }
101 
103  {
104  loadParameter<int>(ar,"nAtom", nAtom_);
105  loadParameter<int>(ar,"bondType",bondType_);
106  nBond_ = nAtom_ - 1;
107 
108  #ifdef SIMP_ANGLE
109  hasAngles_ = 0;
110  loadParameter<int>(ar,"hasAngles", hasAngles_, false);
111  if (hasAngles_) {
112  nAngle_ = nBond_ - 1;
113  if (nAngle_ > 0) {
114  loadParameter<int>(ar,"angleType", angleType_);
115  }
116  } else {
117  nAngle_ = 0;
118  }
119  #endif
120 
121  #ifdef SIMP_DIHEDRAL
122  hasDihedrals_ = 0;
123  loadParameter<int>(ar,"hasDihedrals", hasDihedrals_, false);
124  if (hasDihedrals_) {
125  if (nAtom_ > 3) {
126  nDihedral_ = nAtom_ - 3;
127  } else {
128  nDihedral_ = 0;
129  }
130  if (nDihedral_ > 0) {
131  loadParameter<int>(ar, "dihedralType", dihedralType_);
132  }
133  } else {
134  nDihedral_ = 0;
135  }
136  #endif
137 
138  buildLinear();
139 
140  loadParameter<Pair <int> >(ar, "typeIds", typeIds_);
141 
142  ar & beadTypeIds0_;
143  ar & beadTypeIds1_;
144 
145  loadParameter<double>(ar, "weightRatio", weightRatio_);
147 
148  // Set statistical weights
149  double sum = weightRatio_ + 1.0;
150  mutator().setWeight(0, weightRatio_/sum);
151  mutator().setWeight(1, 1.0/sum);
152  }
153 
154  /*
155  * Save internal state to an archive.
156  */
158  {
159  ar << moleculeCapacity_;
160  ar << nAtom_;
161  ar << bondType_;
162  #ifdef SIMP_ANGLE
164  if (hasAngles_ && nAngle_ > 0) {
165  ar << angleType_;
166  }
167  #endif
168  #ifdef SIMP_DIHEDRAL
170  if (hasDihedrals_ && nDihedral_ > 0) {
171  ar << dihedralType_;
172  }
173  #endif
174  ar << typeIds_;
175  ar << beadTypeIds0_;
176  ar << beadTypeIds1_;
177  ar << weightRatio_;
178  }
179 
180  /*
181  * Return NullIndex for every atom.
182  * Set initial typeIds
183  * Used by Linear::buildLinear().
184  */
185  int LinearSG::calculateAtomTypeId(int index) const
186  { return NullIndex; }
187 
188  /*
189  * Return 0 for every bond.
190  *
191  * Used by Linear::buildLinear().
192  */
193  int LinearSG::calculateBondTypeId(int index) const
194  { return bondType_; }
195 
196  #ifdef SIMP_ANGLE
197  /*
198  * Return 0 for every angle.
199  *
200  * Used by Linear::buildLinear().
201  */
202  int LinearSG::calculateAngleTypeId(int index) const
203  { return angleType_; }
204  #endif
205 
206  #ifdef SIMP_DIHEDRAL
207  /*
208  * Return 0 for every dihedral.
209  *
210  * Used by Linear::buildLinear().
211  */
213  { return dihedralType_; }
214  #endif
215 
216  /*
217  * Change the type of a specific molecule.
218  */
219  void LinearSG::setMoleculeState(Molecule& molecule, int stateId)
220  {
221  int nAtom = molecule.nAtom();
222  DArray<int> beadIdentities;
223  for (int i = 0; i < nAtom; ++i) {
224  if (stateId == 0) {
225  beadIdentities = beadTypeIds0_;
226  } else {
227  beadIdentities = beadTypeIds1_;
228  }
229  molecule.atom(i).setTypeId(beadIdentities[i]);
230  }
231  setMoleculeStateId(molecule, stateId);
232  }
233 
234 }
virtual void readParameters(std::istream &in)
Read parameters and initialize.
Definition: LinearSG.cpp:46
int nAtom() const
Get number of atoms per molecule for this Species.
int moleculeCapacity_
Number of molecules associated with the species.
void setMutatorPtr(McMd::SpeciesMutator *mutatorPtr)
Set pointer to associated McMd::SpeciesMutator for a mutable species.
void allocateSpeciesMutator(int nMolecule, int nState)
Allocate arrays of molecule state ids and statistical weights.
void setMoleculeStateId(const Molecule &molecule, int stateId)
Set the state id of a specific molecule.
virtual void setMoleculeState(Molecule &molecule, int stateId)
Set the type of all atoms in the molecule.
Definition: LinearSG.cpp:219
void setWeight(int stateId, double weight)
Set the statistical weight associated with a specific state.
virtual int calculateBondTypeId(int index) const
Return same bond type for any bond in any chain.
Definition: LinearSG.cpp:193
Mix-in class for mutable subclasses of Species.
int hasAngles_
Does this chain have angle potentials (0 = false, 1 = true).
Definition: Linear.h:57
static const int NullIndex
Null (unknown) value for any non-negative index.
int nAtom_
Number of atoms per molecule.
Saving / output archive for binary ostream.
virtual void loadSpeciesParam(Serializable::IArchive &ar)
Load species structure from an Archive.
Definition: LinearSG.cpp:102
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
virtual int calculateDihedralTypeId(int index) const
Return same dihedral type for any dihedral in any chain.
Definition: LinearSG.cpp:212
Utility classes for scientific computation.
Definition: accumulators.mod:1
int nDihedral_
Number of dihedrals per molecule.
int nAngle_
Number of angles per molecule.
virtual void readParameters(std::istream &in)
Read parameters and initialize structure for this species.
void setTypeId(int typeId)
Set the atomic type index.
Saving archive for binary istream.
virtual void readSpeciesParam(std::istream &in)
Read nAtom, a pair of atom type ids and weightRatio.
Definition: LinearSG.cpp:55
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
virtual int calculateAtomTypeId(int index) const
Return the same type for any particle in any chain.
Definition: LinearSG.cpp:185
LinearSG()
Constructor.
Definition: LinearSG.cpp:21
int hasDihedrals_
Does this chain have dihedral potentials (0 = false, 1 = true).
Definition: Linear.h:64
void buildLinear()
Build the chemical structure for a linear molecule.
Definition: Linear.cpp:39
void setClassName(const char *className)
Set class name string.
const Atom & atom(int localId) const
Get a specific Atom in this Molecule.
int capacity() const
Maximum allowed number of molecules for this Species.
void allocate(int capacity)
Allocate the underlying C array.
Definition: DArray.h:191
virtual ~LinearSG()
Destructor.
Definition: LinearSG.cpp:40
A physical molecule (a set of covalently bonded Atoms).
McMd::SpeciesMutator & mutator()
Return the species mutator object by reference.
virtual int calculateAngleTypeId(int index) const
Return same angle type for any angle in any chain.
Definition: LinearSG.cpp:202
static void saveOptional(Serializable::OArchive &ar, Type &value, bool isActive)
Save an optional parameter value to an output archive.
Definition: Parameter.h:224
virtual void save(Serializable::OArchive &ar)
Save internal state to an archive.
Definition: LinearSG.cpp:157
int nBond_
Number of bonds per molecule.
A Species of linear polymers (abstract).
Definition: Linear.h:36
int nAtom() const
Get the number of Atoms in this Molecule.