Simpatico  v1.10
SimplePeriodicExternal.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 "SimplePeriodicExternal.h"
9 
10 #include <iostream>
11 
12 namespace Simp
13 {
14 
15  using namespace Util;
16 
17  /*
18  * Constructor.
19  */
21  : externalParameter_(),
22  nWaveVectors_(),
23  periodicity_(),
24  interfaceWidth_(),
25  boundaryPtr_(0),
26  nAtomType_(0),
27  isInitialized_(false)
28  { setClassName("SimplePeriodicExternal"); }
29 
30  /*
31  * Copy constructor.
32  */
34  : externalParameter_(other.externalParameter_),
35  nWaveVectors_(other.nWaveVectors_),
36  periodicity_(other.periodicity_),
37  interfaceWidth_(other.interfaceWidth_),
38  boundaryPtr_(other.boundaryPtr_),
39  nAtomType_(other.nAtomType_),
40  isInitialized_(other.isInitialized_)
41  {
42  prefactor_.allocate(nAtomType_);
43  for (int i=0; i < nAtomType_; ++i) {
44  prefactor_[i] = other.prefactor_[i];
45  }
46  waveIntVectors_.allocate(nWaveVectors_);
47  for (int j=0; j < Dimension; ++j) {
48  for (int i=0; i < nWaveVectors_; ++i) {
49  waveIntVectors_[i][j] = other.waveIntVectors_[i][j];
50  }
51  }
52  }
53 
54  /*
55  * Assignment operator.
56  */
58  {
59  externalParameter_ = other.externalParameter_;
60  nWaveVectors_ = other.nWaveVectors_;
61  periodicity_ = other.periodicity_;
62  interfaceWidth_ = other.interfaceWidth_;
63  boundaryPtr_ = other.boundaryPtr_;
64  nAtomType_ = other.nAtomType_;
65  isInitialized_ = other.isInitialized_;
66  for (int i=0; i < nAtomType_; ++i) {
67  prefactor_[i] = other.prefactor_[i];
68  }
69  for (int j = 0; j < Dimension; ++j) {
70  for (int i = 0; i < nWaveVectors_; ++i) {
71  waveIntVectors_[i][j] = other.waveIntVectors_[i][j];
72  }
73  }
74  return *this;
75  }
76 
77  /*
78  * Set nAtomType
79  */
81  {
82  if (nAtomType <= 0) {
83  UTIL_THROW("nAtomType <= 0");
84  }
85  if (nAtomType > MaxAtomType) {
86  UTIL_THROW("nAtomType > SimplePeriodicExternal::MaxAtomType");
87  }
88  nAtomType_ = nAtomType;
89  }
90 
92  {
93  UTIL_CHECK (isInitialized_);
94  externalParameter_ = externalParameter;
95  }
96 
97  /*
98  * Set pointer to the Boundary.
99  */
101  { boundaryPtr_ = &boundary; }
102 
103  /*
104  * Read potential parameters from file.
105  */
107  {
108  // Preconditions
109  UTIL_CHECK(nAtomType_ > 0);
110  UTIL_CHECK(boundaryPtr_);
111 
112  // Read parameters
113  prefactor_.allocate(nAtomType_);
114  readDArray<double>(in, "prefactor", prefactor_, nAtomType_);
115  read<double>(in, "externalParameter", externalParameter_);
116  read<int>(in, "nWaveVectors", nWaveVectors_);
117  waveIntVectors_.allocate(nWaveVectors_);
118  readDArray<IntVector>(in, "waveIntVectors", waveIntVectors_, nWaveVectors_);
119  read<double>(in, "interfaceWidth", interfaceWidth_);
120  read<int>(in, "periodicity", periodicity_);
121 
122  isInitialized_ = true;
123  }
124 
125  /*
126  * Load internal state from an archive.
127  */
129  {
130  UTIL_CHECK(nAtomType_ > 0);
131  UTIL_CHECK(boundaryPtr_);
132  prefactor_.allocate(nAtomType_);
133  loadDArray<double>(ar, "prefactor", prefactor_, nAtomType_);
134  loadParameter<double>(ar, "externalParameter", externalParameter_);
135  waveIntVectors_.allocate(nWaveVectors_);
136  loadDArray<IntVector>(ar, "waveIntVectors", waveIntVectors_, nWaveVectors_);
137  loadParameter<double>(ar, "interfaceWidth", interfaceWidth_);
138  loadParameter<int>(ar, "periodicity", periodicity_);
139  isInitialized_ = true;
140  }
141 
142  /*
143  * Save internal state to an archive.
144  */
146  {
147  ar << prefactor_;
148  ar << externalParameter_;
149  ar << waveIntVectors_;
150  ar << interfaceWidth_;
151  ar << periodicity_;
152  }
153 
154  /*
155  * Set a potential energy parameter, identified by a string.
156  */
157  void SimplePeriodicExternal::set(std::string name, double value)
158  {
159  if (name == "externalParameter") {
160  externalParameter_ = value;
161  } else
162  if (name == "interfaceWidth") {
163  interfaceWidth_ = value;
164  } else
165  if (name == "periodicity") {
166  periodicity_ = value;
167  } else {
168  UTIL_THROW("Unrecognized parameter name");
169  }
170  }
171 
172  /*
173  * Get a parameter value, identified by a string.
174  */
175  double SimplePeriodicExternal::get(std::string name) const
176  {
177  double value = 0.0;
178  if (name == "externalParameter") {
179  value = externalParameter_;
180  } else
181  if (name == "interfaceWidth") {
182  value = interfaceWidth_;
183  } else
184  if (name == "periodicity") {
185  value = periodicity_;
186  } else {
187  UTIL_THROW("Unrecognized parameter name");
188  }
189  return value;
190  }
191 
192 
194  { return externalParameter_; }
195 
196  /*
197  * Return name string "SimplePeriodicExternal".
198  */
200  { return std::string("SimplePeriodicExternal"); }
201 
202 }
const int Dimension
Dimensionality of space.
Definition: Dimension.h:19
An orthorhombic periodic unit cell.
A clipped cosine potential that induces ordering along directions specified by waveIntVectors, w_i.
virtual void loadParameters(Serializable::IArchive &ar)
Load internal state from an archive.
std::string className() const
Return name string "SimplePeriodicExternal".
Classes used by all simpatico molecular simulations.
Saving / output archive for binary ostream.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
Utility classes for scientific computation.
Definition: accumulators.mod:1
double externalParameter() const
Returns external parameter.
void setNAtomType(int nAtomType)
Set nAtomType value.
void setBoundary(Boundary &boundary)
Set pointer to Boundary.
Saving archive for binary istream.
virtual void save(Serializable::OArchive &ar)
Save internal state to an archive.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition: global.h:68
void setClassName(const char *className)
Set class name string.
SimplePeriodicExternal()
Default constructor.
void allocate(int capacity)
Allocate the underlying C array.
Definition: DArray.h:191
SimplePeriodicExternal & operator=(const SimplePeriodicExternal &other)
Assignment.
void setExternalParameter(double externalParameter)
Sets external parameter.
void readParameters(std::istream &in)
Read potential parameters, and initialize other variables.