Simpatico  v1.10
NucleationExternal.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 "NucleationExternal.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  C_(),
24  periodicity_(),
25  interfaceWidth_(),
26  nucleationClip_(),
27  bias_(),
28  boundaryPtr_(0),
29  nAtomType_(0),
30  isInitialized_(false)
31  { setClassName("NucleationExternal"); }
32 
33  /*
34  * Copy constructor.
35  */
37  : externalParameter_(other.externalParameter_),
38  nWaveVectors_(other.nWaveVectors_),
39  C_(other.C_),
40  periodicity_(other.periodicity_),
41  interfaceWidth_(other.interfaceWidth_),
42  nucleationClip_(other.nucleationClip_),
43  bias_(other.bias_),
44  boundaryPtr_(other.boundaryPtr_),
45  nAtomType_(other.nAtomType_),
46  isInitialized_(other.isInitialized_)
47  {
48  prefactor_.allocate(nAtomType_);
49  for (int i=0; i < nAtomType_; ++i) {
50  prefactor_[i] = other.prefactor_[i];
51  }
52  waveVectors_.allocate(nWaveVectors_);
53  for (int j=0; j < Dimension; ++j) {
54  for (int i=0; i < nWaveVectors_; ++i) {
55  waveVectors_[i][j] = other.waveVectors_[i][j];
56  }
57  }
58  phases_.allocate(nWaveVectors_);
59  for (int i=0; i < nWaveVectors_; ++i) {
60  phases_[i] = other.phases_[i];
61  }
62  for (int i=0; i < Dimension; ++i) {
63  shift_[i] = other.shift_[i];
64  }
65  }
66 
67  /*
68  * Assignment operator.
69  */
71  {
72  externalParameter_ = other.externalParameter_;
73  nWaveVectors_ = other.nWaveVectors_;
74  C_ = other.C_;
75  periodicity_ = other.periodicity_;
76  interfaceWidth_ = other.interfaceWidth_;
77  nucleationClip_ = other.nucleationClip_;
78  bias_ = other.bias_;
79  boundaryPtr_ = other.boundaryPtr_;
80  nAtomType_ = other.nAtomType_;
81  isInitialized_ = other.isInitialized_;
82  for (int i=0; i < nAtomType_; ++i) {
83  prefactor_[i] = other.prefactor_[i];
84  }
85  for (int j=0; j < Dimension; ++j) {
86  for (int i=0; i < nWaveVectors_; ++i) {
87  waveVectors_[i][j] = other.waveVectors_[i][j];
88  }
89  }
90  phases_.allocate(nWaveVectors_);
91  for (int i=0; i < nWaveVectors_; ++i) {
92  phases_[i] = other.phases_[i];
93  }
94  for (int i=0; i < Dimension; ++i) {
95  shift_[i] = other.shift_[i];
96  }
97  return *this;
98  }
99 
100  /*
101  * Set nAtomType
102  */
103  void NucleationExternal::setNAtomType(int nAtomType)
104  {
105  if (nAtomType <= 0) {
106  UTIL_THROW("nAtomType <= 0");
107  }
108  if (nAtomType > MaxAtomType) {
109  UTIL_THROW("nAtomType > NucleationExternal::MaxAtomType");
110  }
111  nAtomType_ = nAtomType;
112  }
113 
115  {
116  // Preconditions
117  if (!isInitialized_) {
118  UTIL_THROW("NucleationExternal potential is not initialized");
119  }
120 
121  externalParameter_ = externalParameter;
122  }
123 
124 
125  /*
126  * Set pointer to the Boundary.
127  */
129  { boundaryPtr_ = &boundary; }
130 
131  /*
132  * Read potential parameters from file.
133  */
134  void NucleationExternal::readParameters(std::istream &in)
135  {
136  if (nAtomType_ == 0) {
137  UTIL_THROW("nAtomType must be set before readParam");
138  }
139  if (!boundaryPtr_) {
140  UTIL_THROW("Boundary must be set before readParam");
141  }
142 
143  // Read parameters
144  prefactor_.allocate(nAtomType_);
145  readDArray<double>(in, "prefactor", prefactor_, nAtomType_);
146 
147  read<double>(in, "externalParameter", externalParameter_);
148 
149  read<int>(in, "nWaveVectors", nWaveVectors_);
150  read<double>(in, "C", C_);
151  waveVectors_.allocate(nWaveVectors_);
152  readDArray<Vector>(in, "waveVectors", waveVectors_, nWaveVectors_);
153 
154  phases_.allocate(nWaveVectors_);
155  readDArray<double>(in, "phases", phases_, nWaveVectors_);
156  read<Vector>(in, "shift", shift_);
157  read<double>(in, "interfaceWidth", interfaceWidth_);
158  read<int>(in, "periodicity", periodicity_);
159  read<double>(in, "nucleationClip", nucleationClip_);
160  read<double>(in, "bias", bias_);
161 
162  isInitialized_ = true;
163  }
164 
165  /*
166  * Load internal state from an archive.
167  */
169  {
170  ar >> nAtomType_;
171  if (nAtomType_ <= 0) {
172  UTIL_THROW( "nAtomType must be positive");
173  }
174  prefactor_.allocate(nAtomType_);
175  loadDArray<double>(ar, "prefactor", prefactor_, nAtomType_);
176  loadParameter<double>(ar, "externalParameter", externalParameter_);
177  loadParameter<double>(ar, "C", C_);
178  waveVectors_.allocate(nWaveVectors_);
179  loadDArray<Vector>(ar, "waveVectors", waveVectors_, nWaveVectors_);
180  loadDArray<double>(ar, "phases", phases_, nWaveVectors_);
181  loadParameter<Vector>(ar, "shift", shift_);
182  loadParameter<double>(ar, "interfaceWidth", interfaceWidth_);
183  loadParameter<int>(ar, "periodicity", periodicity_);
184  loadParameter<double>(ar, "nucleationClip", nucleationClip_);
185  loadParameter<double>(ar, "bias", bias_);
186  isInitialized_ = true;
187  }
188 
189  /*
190  * Save internal state to an archive.
191  */
193  {
194  ar << nAtomType_;
195  ar << prefactor_;
196  ar << externalParameter_;
197  ar << C_;
198  ar << waveVectors_;
199  ar << phases_;
200  ar << shift_;
201  ar << interfaceWidth_;
202  ar << periodicity_;
203  ar << nucleationClip_;
204  ar << bias_;
205  }
206 
207  /*
208  * Set a potential energy parameter, identified by a string.
209  */
210  void NucleationExternal::set(std::string name, double value)
211  {
212  if (name == "externalParameter") {
213  externalParameter_ = value;
214  } else
215  if (name == "C") {
216  C_ = value;
217  } else
218  if (name == "interfaceWidth") {
219  interfaceWidth_ = value;
220  } else
221  if (name == "periodicity") {
222  periodicity_ = value;
223  } else {
224  UTIL_THROW("Unrecognized parameter name");
225  }
226  }
227 
228  /*
229  * Get a parameter value, identified by a string.
230  */
231  double NucleationExternal::get(std::string name) const
232  {
233  double value = 0.0;
234  if (name == "externalParameter") {
235  value = externalParameter_;
236  } else
237  if (name == "C") {
238  value = C_;
239  } else
240  if (name == "interfaceWidth") {
241  value = interfaceWidth_;
242  } else
243  if (name == "periodicity") {
244  value = periodicity_;
245  } else {
246  UTIL_THROW("Unrecognized parameter name");
247  }
248  return value;
249  }
250 
252  {
253  return externalParameter_;
254  }
255 
256  /*
257  * Return name string "NucleationExternal".
258  */
259  std::string NucleationExternal::className() const
260  { return std::string("NucleationExternal"); }
261 
262 }
const int Dimension
Dimensionality of space.
Definition: Dimension.h:19
void setNAtomType(int nAtomType)
Set nAtomType value.
An orthorhombic periodic unit cell.
NucleationExternal & operator=(const NucleationExternal &other)
Assignment.
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
std::string className() const
Return name string "NucleationExternal".
virtual void loadParameters(Serializable::IArchive &ar)
Load internal state from an archive.
void setExternalParameter(double externalParameter)
Sets external parameter.
Utility classes for scientific computation.
Definition: accumulators.mod:1
double externalParameter() const
Returns external parameter.
NucleationExternal()
Default constructor.
void readParameters(std::istream &in)
Read potential parameters, and initialize other variables.
Saving archive for binary istream.
void setClassName(const char *className)
Set class name string.
void allocate(int capacity)
Allocate the underlying C array.
Definition: DArray.h:191
void setBoundary(Boundary &boundary)
Set pointer to Boundary.
virtual void save(Serializable::OArchive &ar)
Save internal state to an archive.
A clipped cosine potential that induces ordering along directions specified by waveIntVectors, w_i.