8 #include "NucleationExternal.h" 21 : externalParameter_(),
37 : externalParameter_(other.externalParameter_),
38 nWaveVectors_(other.nWaveVectors_),
40 periodicity_(other.periodicity_),
41 interfaceWidth_(other.interfaceWidth_),
42 nucleationClip_(other.nucleationClip_),
44 boundaryPtr_(other.boundaryPtr_),
45 nAtomType_(other.nAtomType_),
46 isInitialized_(other.isInitialized_)
49 for (
int i=0; i < nAtomType_; ++i) {
50 prefactor_[i] = other.prefactor_[i];
52 waveVectors_.allocate(nWaveVectors_);
54 for (
int i=0; i < nWaveVectors_; ++i) {
55 waveVectors_[i][j] = other.waveVectors_[i][j];
59 for (
int i=0; i < nWaveVectors_; ++i) {
60 phases_[i] = other.phases_[i];
63 shift_[i] = other.shift_[i];
72 externalParameter_ = other.externalParameter_;
73 nWaveVectors_ = other.nWaveVectors_;
75 periodicity_ = other.periodicity_;
76 interfaceWidth_ = other.interfaceWidth_;
77 nucleationClip_ = other.nucleationClip_;
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];
86 for (
int i=0; i < nWaveVectors_; ++i) {
87 waveVectors_[i][j] = other.waveVectors_[i][j];
91 for (
int i=0; i < nWaveVectors_; ++i) {
92 phases_[i] = other.phases_[i];
95 shift_[i] = other.shift_[i];
105 if (nAtomType <= 0) {
108 if (nAtomType > MaxAtomType) {
109 UTIL_THROW(
"nAtomType > NucleationExternal::MaxAtomType");
111 nAtomType_ = nAtomType;
117 if (!isInitialized_) {
118 UTIL_THROW(
"NucleationExternal potential is not initialized");
129 { boundaryPtr_ = &boundary; }
136 if (nAtomType_ == 0) {
137 UTIL_THROW(
"nAtomType must be set before readParam");
140 UTIL_THROW(
"Boundary must be set before readParam");
145 readDArray<double>(in,
"prefactor", prefactor_, nAtomType_);
147 read<double>(in,
"externalParameter", externalParameter_);
149 read<int>(in,
"nWaveVectors", nWaveVectors_);
150 read<double>(in,
"C", C_);
151 waveVectors_.allocate(nWaveVectors_);
152 readDArray<Vector>(in,
"waveVectors", waveVectors_, 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_);
162 isInitialized_ =
true;
171 if (nAtomType_ <= 0) {
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;
196 ar << externalParameter_;
201 ar << interfaceWidth_;
203 ar << nucleationClip_;
210 void NucleationExternal::set(std::string name,
double value)
212 if (name ==
"externalParameter") {
213 externalParameter_ = value;
218 if (name ==
"interfaceWidth") {
219 interfaceWidth_ = value;
221 if (name ==
"periodicity") {
222 periodicity_ = value;
231 double NucleationExternal::get(std::string name)
const 234 if (name ==
"externalParameter") {
235 value = externalParameter_;
240 if (name ==
"interfaceWidth") {
241 value = interfaceWidth_;
243 if (name ==
"periodicity") {
244 value = periodicity_;
253 return externalParameter_;
260 {
return std::string(
"NucleationExternal"); }
const int Dimension
Dimensionality of space.
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.
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.
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.
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.