1#ifndef RPG_SWEEP_PARAMETER_TPP
2#define RPG_SWEEP_PARAMETER_TPP
11#include <rpg/System.h>
12#include <rpg/solvers/Mixture.h>
13#include <rpg/solvers/Polymer.h>
14#include <rpg/solvers/Block.h>
16#include <prdc/crystal/UnitCell.h>
18#include <pscf/inter/Interaction.h>
19#include <pscf/sweep/ParameterModifier.h>
20#include <util/containers/FSArray.h>
43 parameterTypesPtr_(0),
58 parameterTypesPtr_(0),
70 std::transform(buffer.begin(), buffer.end(),
71 buffer.begin(), ::tolower);
73 if (buffer ==
"block" || buffer ==
"block_length") {
76 }
else if (buffer ==
"chi") {
79 }
else if (buffer ==
"kuhn") {
82 }
else if (buffer ==
"phi_polymer") {
85 }
else if (buffer ==
"phi_solvent") {
88 }
else if (buffer ==
"mu_polymer") {
91 }
else if (buffer ==
"mu_solvent") {
94 }
else if (buffer ==
"solvent" || buffer ==
"solvent_size") {
97 }
else if (buffer ==
"cell_param") {
103 for (
int i = 0; i < parameterTypesPtr_->size(); i++) {
105 if (buffer == pType.name) {
108 parameterTypeId_ = i;
115 msg =
"Invalid SweepParameter::ParamType value: " + buffer;
120 if (id_.isAllocated()) id_.deallocate();
141 return (*parameterTypesPtr_)[parameterTypeId_];
168 if (type_ ==
Block) {
170 }
else if (type_ == Chi) {
172 }
else if (type_ == Kuhn) {
174 }
else if (type_ == Phi_Polymer) {
175 return "phi_polymer";
176 }
else if (type_ == Phi_Solvent) {
177 return "phi_solvent";
178 }
else if (type_ == Mu_Polymer) {
180 }
else if (type_ == Mu_Solvent) {
183 return "solvent_size";
184 }
else if (type_ == Cell_Param) {
186 }
else if (type_ == Special) {
187 return parameterType().name;
196 if (type_ ==
Block) {
197 return systemPtr_->mixture().polymer(
id(0)).block(
id(1)).length();
198 }
else if (type_ == Chi) {
199 return systemPtr_->interaction().chi(
id(0),
id(1));
200 }
else if (type_ == Kuhn) {
201 return systemPtr_->mixture().monomer(
id(0)).kuhn();
202 }
else if (type_ == Phi_Polymer) {
203 return systemPtr_->mixture().polymer(
id(0)).phi();
204 }
else if (type_ == Phi_Solvent) {
205 return systemPtr_->mixture().solvent(
id(0)).phi();
206 }
else if (type_ == Mu_Polymer) {
207 return systemPtr_->mixture().polymer(
id(0)).mu();
208 }
else if (type_ == Mu_Solvent) {
209 return systemPtr_->mixture().solvent(
id(0)).mu();
210 }
else if (type_ == Solvent) {
211 return systemPtr_->mixture().solvent(
id(0)).size();
212 }
else if (type_ == Cell_Param) {
213 return systemPtr_->unitCell().parameter(
id(0));
214 }
else if (type_ == Special) {
216 std::string name = parameterType().name;
224 void SweepParameter<D>::set_(
double newVal)
226 if (type_ == Block) {
227 systemPtr_->mixture().polymer(
id(0)).block(
id(1)).setLength(newVal);
228 }
else if (type_ == Chi) {
229 systemPtr_->interaction().setChi(
id(0),
id(1), newVal);
230 }
else if (type_ == Kuhn) {
231 systemPtr_->mixture().setKuhn(
id(0), newVal);
232 }
else if (type_ == Phi_Polymer) {
233 systemPtr_->mixture().polymer(
id(0)).setPhi(newVal);
234 }
else if (type_ == Phi_Solvent) {
235 systemPtr_->mixture().solvent(
id(0)).setPhi(newVal);
236 }
else if (type_ == Mu_Polymer) {
237 systemPtr_->mixture().polymer(
id(0)).setMu(newVal);
238 }
else if (type_ == Mu_Solvent) {
239 systemPtr_->mixture().solvent(
id(0)).setMu(newVal);
240 }
else if (type_ == Solvent) {
241 systemPtr_->mixture().solvent(
id(0)).setSize(newVal);
242 }
else if (type_ == Cell_Param) {
244 params[id(0)] = newVal;
245 systemPtr_->setUnitCell(params);
246 }
else if (type_ == Special) {
248 std::string name = parameterType().name;
256 template <
class Archive>
261 for (
int i = 0; i < nId_; ++i) {
281 param.readParamType(in);
283 for (
int i = 0; i < param.nId_; ++i) {
304 for (
int i = 0; i < param.nId_; ++i) {
308 out << param.change_;
Base class allowing subclasses to define sweepable parameters.
virtual void setParameter(std::string name, DArray< int > ids, double value, bool &success)
Set the value of a specialized sweep parameter.
virtual double getParameter(std::string name, DArray< int > ids, bool &success) const
Get the value of a specialized sweep parameter.
Block within a branched polymer.
Solver and descriptor for a solvent species.
Class for storing data about an individual sweep parameter.
void getInitial()
Store the pre-sweep value of the corresponding parameter.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
int id(int i) const
Get a id for a sub-object or element to which this is applied.
SweepParameter()
Default constructor.
void update(double newVal)
Update the corresponding parameter value in the system.
std::string type() const
Return a string representation of the parameter type.
ParameterType & parameterType() const
Get the ParameterType object for a specialized sweep parameter.
Main class for calculations that represent one system.
A fixed capacity (static) contiguous array with a variable logical size.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
void serializeEnum(Archive &ar, T &data, const unsigned int version=0)
Serialize an enumeration value.
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Declaration of a specialized sweep parameter type.