PSCF v1.2
rpg/fts/ramp/RampParameter.tpp
1#ifndef RPG_RAMP_PARAMETER_TPP
2#define RPG_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 <rpg/System.h>
12#include <rpg/fts/simulator/Simulator.h>
13#include <rpg/fts/perturbation/Perturbation.h>
14#include <rpg/solvers/Block.h>
15#include <rpg/solvers/Mixture.h>
16#include <rpg/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 Rpg {
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_->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 = systemPtr_->unitCell().parameters();
230 params[id(0)] = newVal;
231 systemPtr_->setUnitCell(params);
232 } else if (type_ == Lambda_Pert) {
233 UTIL_CHECK(simulatorPtr_->hasPerturbation());
234 return simulatorPtr_->perturbation().setLambda(newVal);
235 } else if (type_ == Vmonomer) {
236 systemPtr_->mixture().setVmonomer(newVal);
237 } else {
238 UTIL_THROW("This should never happen.");
239 }
240 }
241
242 template <int D>
243 template <class Archive>
244 void RampParameter<D>::serialize(Archive ar, const unsigned int version)
245 {
246 serializeEnum(ar, type_, version);
247 ar & nId_;
248 if (nId_ > 0) {
249 for (int i = 0; i < nId_; ++i) {
250 ar & id_[i];
251 }
252 }
253 ar & initial_;
254 ar & change_;
255 }
256
257 // Definitions of operators, with no explicit instantiations.
258
259 /*
260 * Inserter for reading a RampParameter from an istream.
261 */
262 template <int D>
263 std::istream& operator >> (std::istream& in,
264 RampParameter<D>& param)
265 {
266 // Read the parameter type identifier string
267 param.readParamType(in);
268
269 // Read the identifiers associated with this parameter type.
270 if (param.nId_ > 0) {
271 for (int i = 0; i < param.nId_; ++i) {
272 in >> param.id_[i];
273 }
274 }
275
276 // Read in the range in the parameter to sweep over
277 in >> param.change_;
278
279 return in;
280 }
281
282 /*
283 * Extractor for writing a RampParameter to ostream.
284 */
285 template <int D>
286 std::ostream& operator << (std::ostream& out,
287 RampParameter<D> const & param)
288 {
289 param.writeParamType(out);
290 out << " ";
291 if (param.nId_ > 0) {
292 for (int i = 0; i < param.nId_; ++i) {
293 out << param.id(i);
294 out << " ";
295 }
296 }
297 out << param.change_;
298
299 return out;
300 }
301
302}
303}
304#endif
Block within a branched polymer.
Class for storing data about an individual ramp parameter.
int id(int i) const
Get id for a sub-object or element to which this is applied.
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 serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
void getInitial()
Get and store initial value this parameters.
void setSimulator(Simulator< D > &simulator)
Set the simulator and system associated with this object.
Field theoretic simulator (base class).
Definition rpg/System.h:41
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