PSCF v1.2
rpc/fts/ramp/RampParameter.tpp
1#ifndef RPC_RAMP_PARAMETER_TPP
2#define RPC_RAMP_PARAMETER_TPP
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
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>
20#include <util/global.h>
21#include <algorithm>
22#include <iomanip>
23
24namespace Pscf {
25namespace Rpc {
26
27 using namespace Util;
28 using namespace Pscf::Prdc;
29
30 /*
31 * Default constructor.
32 */
33 template <int D>
35 : type_(RampParameter<D>::Null),
36 nId_(0),
37 id_(),
38 initial_(0.0),
39 change_(0.0),
40 simulatorPtr_(0),
41 systemPtr_(0)
42 {}
43
44 /*
45 * Constructor, creates association with simulator and system.
46 */
47 template <int D>
49 : type_(RampParameter<D>::Null),
50 nId_(0),
51 id_(),
52 initial_(0.0),
53 change_(0.0),
54 simulatorPtr_(&simulator),
55 systemPtr_(&(simulator.system()))
56 {}
57
58
59 /*
60 * Set the simulator and system associated with this object.
61 */
62 template <int D>
64 {
65 simulatorPtr_ = &simulator;
66 systemPtr_ = &(simulator.system());
67 }
68
69 /*
70 * Read type, set nId and allocate id_ array.
71 */
72 template <int D>
73 void RampParameter<D>::readParamType(std::istream& in)
74 {
75 std::string buffer;
76 in >> buffer;
77 std::transform(buffer.begin(), buffer.end(),
78 buffer.begin(), ::tolower);
79
80 if (buffer == "block" || buffer == "block_length") {
81 type_ = Block;
82 nId_ = 2; // polymer and block identifiers
83 } else if (buffer == "chi") {
84 type_ = Chi;
85 nId_ = 2; // two monomer type identifiers
86 } else if (buffer == "kuhn") {
87 type_ = Kuhn;
88 nId_ = 1; // monomer type identifier
89 } else if (buffer == "phi_polymer") {
90 type_ = Phi_Polymer;
91 nId_ = 1; // species identifier.
92 } else if (buffer == "phi_solvent") {
93 type_ = Phi_Solvent;
94 nId_ = 1; // species identifier.
95 } else if (buffer == "mu_polymer") {
96 type_ = Mu_Polymer;
97 nId_ = 1; // species identifier.
98 } else if (buffer == "mu_solvent") {
99 type_ = Mu_Solvent;
100 nId_ = 1; // species identifier.
101 } else if (buffer == "solvent" || buffer == "solvent_size") {
102 type_ = Solvent;
103 nId_ = 1; // species identifier.
104 } else if (buffer == "cell_param") {
105 type_ = Cell_Param;
106 nId_ = 1; // lattice parameter identifier.
107 } else if (buffer == "lambda_pert") {
108 type_ = Lambda_Pert;
109 nId_ = 0; // No associated index
110 } else if (buffer == "v_monomer") {
111 type_ = Vmonomer;
112 nId_ = 0; // No associated index
113 } else {
114 UTIL_THROW("Invalid RampParameter::ParamType value");
115 }
116
117 if (id_.isAllocated()) id_.deallocate();
118 if (nId_ > 0) {
119 id_.allocate(nId_);
120 }
121
122 }
123
124 /*
125 * Write type enum value
126 */
127 template <int D>
128 void RampParameter<D>::writeParamType(std::ostream& out) const
129 { out << type(); }
130
131 /*
132 * Get initial (current) values of swept parameters from parent system.
133 */
134 template <int D>
136 { initial_ = get_(); }
137
138 /*
139 * Set new values of swept parameters in the parent system.
140 */
141 template <int D>
142 void RampParameter<D>::update(double newVal)
143 { set_(newVal); }
144
145 /*
146 * Get string representation of type enum value.
147 */
148 template <int D>
149 std::string RampParameter<D>::type() const
150 {
151 if (type_ == Block) {
152 return "block";
153 } else if (type_ == Chi) {
154 return "chi";
155 } else if (type_ == Kuhn) {
156 return "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) {
162 return "mu_polymer";
163 } else if (type_ == Mu_Solvent) {
164 return "mu_solvent";
165 } else if (type_ == Solvent) {
166 return "solvent_size";
167 } else if (type_ == Cell_Param) {
168 return "cell_param";
169 } else if (type_ == Lambda_Pert) {
170 return "lambda_pert";
171 } else if (type_ == Vmonomer) {
172 return "vMonomer";
173 } else {
174 UTIL_THROW("This should never happen.");
175 }
176 }
177
178 template <int D>
180 {
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) {
200 UTIL_CHECK(simulatorPtr_->hasPerturbation());
201 return simulatorPtr_->perturbation().lambda();
202 } else if (type_ == Vmonomer) {
203 return systemPtr_->mixture().vMonomer();
204 }else {
205 UTIL_THROW("This should never happen.");
206 }
207 }
208
209 template <int D>
210 void RampParameter<D>::set_(double newVal)
211 {
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) {
229 FSArray<double,6> params
230 = systemPtr_->domain().unitCell().parameters();
231 params[id(0)] = newVal;
232 systemPtr_->setUnitCell(params);
233 } else if (type_ == Lambda_Pert) {
234 UTIL_CHECK(simulatorPtr_->hasPerturbation());
235 return simulatorPtr_->perturbation().setLambda(newVal);
236 } else if (type_ == Vmonomer) {
237 systemPtr_->mixture().setVmonomer(newVal);
238 } else {
239 UTIL_THROW("This should never happen.");
240 }
241 }
242
243 template <int D>
244 template <class Archive>
245 void RampParameter<D>::serialize(Archive ar, const unsigned int version)
246 {
247 serializeEnum(ar, type_, version);
248 ar & nId_;
249 if (nId_ > 0) {
250 for (int i = 0; i < nId_; ++i) {
251 ar & id_[i];
252 }
253 }
254 ar & initial_;
255 ar & change_;
256 }
257
258 // Definitions of operators, with no explicit instantiations.
259
260 /*
261 * Inserter for reading a RampParameter from an istream.
262 */
263 template <int D>
264 std::istream& operator >> (std::istream& in,
265 RampParameter<D>& param)
266 {
267 // Read the parameter type identifier string
268 param.readParamType(in);
269
270 // Read the identifiers associated with this parameter type.
271 if (param.nId_ > 0) {
272 for (int i = 0; i < param.nId_; ++i) {
273 in >> param.id_[i];
274 }
275 }
276
277 // Read in the range in the parameter to sweep over
278 in >> param.change_;
279
280 return in;
281 }
282
283 /*
284 * Extractor for writing a RampParameter to ostream.
285 */
286 template <int D>
287 std::ostream& operator << (std::ostream& out,
288 RampParameter<D> const & param)
289 {
290 param.writeParamType(out);
291 out << " ";
292 if (param.nId_ > 0) {
293 for (int i = 0; i < param.nId_; ++i) {
294 out << param.id(i);
295 out << " ";
296 }
297 }
298 out << param.change_;
299
300 return out;
301 }
302
303}
304}
305#endif
Block within a branched polymer.
Class for storing data about an individual ramp parameter.
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).
Definition rpc/System.h:38
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.
Definition rpg/System.h:28
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
void serializeEnum(Archive &ar, T &data, const unsigned int version=0)
Serialize an enumeration value.
Definition serialize.h:59
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Definition Pair.h:44
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Definition Pair.h:57