1#ifndef RPC_SWEEP_PARAMETER_TPP
2#define RPC_SWEEP_PARAMETER_TPP
11#include <rpc/solvers/Block.h>
12#include <rpc/solvers/Mixture.h>
13#include <rpc/solvers/Polymer.h>
14#include <rpc/System.h>
15#include <prdc/crystal/UnitCell.h>
16#include <pscf/inter/Interaction.h>
17#include <pscf/sweep/ParameterModifier.h>
19#include <util/containers/FSArray.h>
40 parameterTypesPtr_(0),
55 parameterTypesPtr_(0),
67 std::transform(buffer.begin(), buffer.end(),
68 buffer.begin(), ::tolower);
70 if (buffer ==
"block" || buffer ==
"block_length") {
73 }
else if (buffer ==
"chi") {
76 }
else if (buffer ==
"kuhn") {
79 }
else if (buffer ==
"phi_polymer") {
82 }
else if (buffer ==
"phi_solvent") {
85 }
else if (buffer ==
"mu_polymer") {
88 }
else if (buffer ==
"mu_solvent") {
91 }
else if (buffer ==
"solvent" || buffer ==
"solvent_size") {
94 }
else if (buffer ==
"cell_param") {
100 for (
int i = 0; i < parameterTypesPtr_->size(); i++) {
102 if (buffer == pType.name) {
105 parameterTypeId_ = i;
112 msg =
"Invalid SweepParameter::ParamType value: " + buffer;
117 if (id_.isAllocated()) id_.deallocate();
136 return (*parameterTypesPtr_)[parameterTypeId_];
144 { initial_ = get_(); }
159 if (type_ ==
Block) {
161 }
else if (type_ == Chi) {
163 }
else if (type_ == Kuhn) {
165 }
else if (type_ == Phi_Polymer) {
166 return "phi_polymer";
167 }
else if (type_ == Phi_Solvent) {
168 return "phi_solvent";
169 }
else if (type_ == Mu_Polymer) {
171 }
else if (type_ == Mu_Solvent) {
174 return "solvent_size";
175 }
else if (type_ == Cell_Param) {
177 }
else if (type_ == Special) {
178 return parameterType().name;
187 if (type_ ==
Block) {
188 return systemPtr_->mixture().polymer(
id(0)).block(
id(1)).length();
189 }
else if (type_ == Chi) {
190 return systemPtr_->interaction().chi(
id(0),
id(1));
191 }
else if (type_ == Kuhn) {
192 return systemPtr_->mixture().monomer(
id(0)).kuhn();
193 }
else if (type_ == Phi_Polymer) {
194 return systemPtr_->mixture().polymer(
id(0)).phi();
195 }
else if (type_ == Phi_Solvent) {
196 return systemPtr_->mixture().solvent(
id(0)).phi();
197 }
else if (type_ == Mu_Polymer) {
198 return systemPtr_->mixture().polymer(
id(0)).mu();
199 }
else if (type_ == Mu_Solvent) {
200 return systemPtr_->mixture().solvent(
id(0)).mu();
201 }
else if (type_ == Solvent) {
202 return systemPtr_->mixture().solvent(
id(0)).size();
203 }
else if (type_ == Cell_Param) {
204 return systemPtr_->domain().unitCell().parameter(
id(0));
205 }
else if (type_ == Special) {
207 std::string name = parameterType().name;
215 void SweepParameter<D>::set_(
double newVal)
217 if (type_ == Block) {
218 systemPtr_->mixture().polymer(
id(0)).block(
id(1)).setLength(newVal);
219 }
else if (type_ == Chi) {
220 systemPtr_->interaction().setChi(
id(0),
id(1), newVal);
221 }
else if (type_ == Kuhn) {
222 systemPtr_->mixture().setKuhn(
id(0), newVal);
223 }
else if (type_ == Phi_Polymer) {
224 systemPtr_->mixture().polymer(
id(0)).setPhi(newVal);
225 }
else if (type_ == Phi_Solvent) {
226 systemPtr_->mixture().solvent(
id(0)).setPhi(newVal);
227 }
else if (type_ == Mu_Polymer) {
228 systemPtr_->mixture().polymer(
id(0)).setMu(newVal);
229 }
else if (type_ == Mu_Solvent) {
230 systemPtr_->mixture().solvent(
id(0)).setMu(newVal);
231 }
else if (type_ == Solvent) {
232 systemPtr_->mixture().solvent(
id(0)).setSize(newVal);
233 }
else if (type_ == Cell_Param) {
235 = systemPtr_->domain().unitCell().parameters();
236 params[id(0)] = newVal;
237 systemPtr_->setUnitCell(params);
238 }
else if (type_ == Special) {
240 std::string name = parameterType().name;
248 template <
class Archive>
253 for (
int i = 0; i < nId_; ++i) {
270 param.readParamType(in);
273 for (
int i = 0; i < param.nId_; ++i) {
291 for (
int i = 0; i < param.nId_; ++i) {
295 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 update(double newVal)
Update the corresponding parameter value in the System.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
void getInitial()
Get and store initial value of this parameter.
std::string type() const
Return a string representation of the parameter type.
SweepParameter()
Default constructor.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
ParameterType & parameterType() const
Get the ParameterType object for a specialized sweep parameter.
int id(int i) const
Get id for a sub-object or element to which this is applied.
Main class for SCFT or PS-FTS simulation of 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.