8 #include "SimplePeriodicExternal.h" 21 : externalParameter_(),
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_)
43 for (
int i=0; i < nAtomType_; ++i) {
44 prefactor_[i] = other.prefactor_[i];
46 waveIntVectors_.allocate(nWaveVectors_);
48 for (
int i=0; i < nWaveVectors_; ++i) {
49 waveIntVectors_[i][j] = other.waveIntVectors_[i][j];
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];
70 for (
int i = 0; i < nWaveVectors_; ++i) {
71 waveIntVectors_[i][j] = other.waveIntVectors_[i][j];
85 if (nAtomType > MaxAtomType) {
86 UTIL_THROW(
"nAtomType > SimplePeriodicExternal::MaxAtomType");
88 nAtomType_ = nAtomType;
101 { boundaryPtr_ = &boundary; }
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_);
122 isInitialized_ =
true;
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;
148 ar << externalParameter_;
149 ar << waveIntVectors_;
150 ar << interfaceWidth_;
157 void SimplePeriodicExternal::set(std::string name,
double value)
159 if (name ==
"externalParameter") {
160 externalParameter_ = value;
162 if (name ==
"interfaceWidth") {
163 interfaceWidth_ = value;
165 if (name ==
"periodicity") {
166 periodicity_ = value;
175 double SimplePeriodicExternal::get(std::string name)
const 178 if (name ==
"externalParameter") {
179 value = externalParameter_;
181 if (name ==
"interfaceWidth") {
182 value = interfaceWidth_;
184 if (name ==
"periodicity") {
185 value = periodicity_;
194 {
return externalParameter_; }
200 {
return std::string(
"SimplePeriodicExternal"); }
const int Dimension
Dimensionality of space.
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.
Utility classes for scientific computation.
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.
void setClassName(const char *className)
Set class name string.
SimplePeriodicExternal()
Default constructor.
void allocate(int capacity)
Allocate the underlying C array.
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.