1#ifndef RPC_RAMP_PARAMETER_TPP
2#define RPC_RAMP_PARAMETER_TPP
11#include <rpc/System.h>
12#include <rpc/fts/simulator/Simulator.h>
13#include <rpc/fts/perturbation/Perturbation.h>
14#include <rpc/solvers/Block.h>
15#include <rpc/solvers/Mixture.h>
16#include <rpc/solvers/Polymer.h>
17#include <prdc/crystal/UnitCell.h>
18#include <pscf/inter/Interaction.h>
19#include <util/containers/FSArray.h>
54 simulatorPtr_(&simulator),
55 systemPtr_(&(simulator.system()))
65 simulatorPtr_ = &simulator;
66 systemPtr_ = &(simulator.
system());
77 std::transform(buffer.begin(), buffer.end(),
78 buffer.begin(), ::tolower);
80 if (buffer ==
"block" || buffer ==
"block_length") {
83 }
else if (buffer ==
"chi") {
86 }
else if (buffer ==
"kuhn") {
89 }
else if (buffer ==
"phi_polymer") {
92 }
else if (buffer ==
"phi_solvent") {
95 }
else if (buffer ==
"mu_polymer") {
98 }
else if (buffer ==
"mu_solvent") {
101 }
else if (buffer ==
"solvent" || buffer ==
"solvent_size") {
104 }
else if (buffer ==
"cell_param") {
107 }
else if (buffer ==
"lambda_pert") {
110 }
else if (buffer ==
"v_monomer") {
114 UTIL_THROW(
"Invalid RampParameter::ParamType value");
117 if (id_.isAllocated()) id_.deallocate();
136 { initial_ = get_(); }
151 if (type_ ==
Block) {
153 }
else if (type_ == Chi) {
155 }
else if (type_ == Kuhn) {
157 }
else if (type_ == Phi_Polymer) {
158 return "phi_polymer";
159 }
else if (type_ == Phi_Solvent) {
160 return "phi_solvent";
161 }
else if (type_ == Mu_Polymer) {
163 }
else if (type_ == Mu_Solvent) {
166 return "solvent_size";
167 }
else if (type_ == Cell_Param) {
169 }
else if (type_ == Lambda_Pert) {
170 return "lambda_pert";
171 }
else if (type_ == Vmonomer) {
181 if (type_ ==
Block) {
182 return systemPtr_->mixture().polymer(
id(0)).block(
id(1)).length();
183 }
else if (type_ == Chi) {
184 return systemPtr_->interaction().chi(
id(0),
id(1));
185 }
else if (type_ == Kuhn) {
186 return systemPtr_->mixture().monomer(
id(0)).kuhn();
187 }
else if (type_ == Phi_Polymer) {
188 return systemPtr_->mixture().polymer(
id(0)).phi();
189 }
else if (type_ == Phi_Solvent) {
190 return systemPtr_->mixture().solvent(
id(0)).phi();
191 }
else if (type_ == Mu_Polymer) {
192 return systemPtr_->mixture().polymer(
id(0)).mu();
193 }
else if (type_ == Mu_Solvent) {
194 return systemPtr_->mixture().solvent(
id(0)).mu();
195 }
else if (type_ == Solvent) {
196 return systemPtr_->mixture().solvent(
id(0)).size();
197 }
else if (type_ == Cell_Param) {
198 return systemPtr_->domain().unitCell().parameter(
id(0));
199 }
else if (type_ == Lambda_Pert) {
201 return simulatorPtr_->perturbation().lambda();
202 }
else if (type_ == Vmonomer) {
203 return systemPtr_->mixture().vMonomer();
210 void RampParameter<D>::set_(
double newVal)
212 if (type_ == Block) {
213 systemPtr_->mixture().polymer(
id(0)).block(
id(1)).setLength(newVal);
214 }
else if (type_ == Chi) {
215 systemPtr_->interaction().setChi(
id(0),
id(1), newVal);
216 }
else if (type_ == Kuhn) {
217 systemPtr_->mixture().setKuhn(
id(0), newVal);
218 }
else if (type_ == Phi_Polymer) {
219 systemPtr_->mixture().polymer(
id(0)).setPhi(newVal);
220 }
else if (type_ == Phi_Solvent) {
221 systemPtr_->mixture().solvent(
id(0)).setPhi(newVal);
222 }
else if (type_ == Mu_Polymer) {
223 systemPtr_->mixture().polymer(
id(0)).setMu(newVal);
224 }
else if (type_ == Mu_Solvent) {
225 systemPtr_->mixture().solvent(
id(0)).setMu(newVal);
226 }
else if (type_ == Solvent) {
227 systemPtr_->mixture().solvent(
id(0)).setSize(newVal);
228 }
else if (type_ == Cell_Param) {
230 = systemPtr_->domain().unitCell().parameters();
231 params[id(0)] = newVal;
232 systemPtr_->setUnitCell(params);
233 }
else if (type_ == Lambda_Pert) {
235 return simulatorPtr_->perturbation().setLambda(newVal);
236 }
else if (type_ == Vmonomer) {
237 systemPtr_->mixture().setVmonomer(newVal);
244 template <
class Archive>
250 for (
int i = 0; i < nId_; ++i) {
268 param.readParamType(in);
271 if (param.nId_ > 0) {
272 for (
int i = 0; i < param.nId_; ++i) {
292 if (param.nId_ > 0) {
293 for (
int i = 0; i < param.nId_; ++i) {
298 out << param.change_;
Block within a branched polymer.
Class for storing data about an individual ramp parameter.
RampParameter()
Default constructor.
void getInitial()
Get and store initial value this parameters.
int id(int i) const
Get id for a sub-object or element to which this is applied.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
std::string type() const
Return a string representation of the parameter type.
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 setSimulator(Simulator< D > &simulator)
Set the simulator and system associated with this object.
Field theoretic simulator (base class).
System< D > & system()
Get parent system by reference.
Solver and descriptor for a solvent species.
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.