PSCF v1.2
r1d/sweep/SweepParameter.h
1#ifndef R1D_SWEEP_PARAMETER_H
2#define R1D_SWEEP_PARAMETER_H
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 <util/containers/DArray.h>
12#include <util/containers/GArray.h>
13#include <iostream>
14#include <string>
15#include <pscf/sweep/ParameterType.h>
16
17using namespace Util;
18
19namespace Pscf {
20namespace R1d {
21
22 class System;
23
105 {
106
107 public:
108
113
119 SweepParameter(System& system);
120
129 void setSystem(System& system)
130 { systemPtr_ = &system; }
131
138 { parameterTypesPtr_ = &array; }
139
147
151 int parameterTypeId() const
152 { return parameterTypeId_; }
153
157 bool isSpecialized() const
158 { return (parameterTypeId_ != -1); }
159
163 void getInitial();
164
170 void update(double newVal);
171
175 std::string type() const;
176
182 void writeParamType(std::ostream& out) const;
183
195 int id(int i) const
196 { return id_[i];}
197
201 double current()
202 { return get_(); }
203
207 double initial() const
208 { return initial_; }
209
213 double change() const
214 { return change_; }
215
222 template <class Archive>
223 void serialize(Archive ar, const unsigned int version);
224
225 private:
226
228 enum ParamType { Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
229 Mu_Polymer, Mu_Solvent, Solvent, Cell_Param,
230 Special, Null};
231
233 ParamType type_;
234
236 int nId_;
237
239 DArray<int> id_;
240
242 double initial_;
243
245 double change_;
246
248 System* systemPtr_;
249
251 GArray<ParameterType>* parameterTypesPtr_;
252
254 int parameterTypeId_;
255
261 void readParamType(std::istream& in);
262
266 double get_();
267
273 void set_(double newVal);
274
275 // friends:
276
277 friend
278 std::istream& operator >> (std::istream&, SweepParameter&);
279
280 friend
281 std::ostream&
282 operator << (std::ostream&, SweepParameter const &);
283
284 };
285
286 template <class Archive>
287 void SweepParameter::serialize(Archive ar, const unsigned int version)
288 {
289 serializeEnum(ar, type_, version);
290 ar & nId_;
291 for (int i = 0; i < nId_; ++i) {
292 ar & id_[i];
293 }
294 ar & initial_;
295 ar & change_;
296 }
297
298}
299}
300#endif
Block within a branched polymer.
Solver and descriptor for a solvent species.
Class for storing data about an individual sweep parameter.
void setParameterTypesArray(GArray< ParameterType > &array)
Set the pointer to the array of specialized sweep parameter types.
double change() const
Return the total change planned for this parameter during sweep.
friend std::ostream & operator<<(std::ostream &, SweepParameter const &)
Extractor for writing a SweepParameter to ostream.
int parameterTypeId() const
Get the array index for the specialized sweep parameter.
double current()
Return the current system parameter value.
std::string type() const
Return a string representation of the parameter type.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
SweepParameter()
Default constructor.
bool isSpecialized() const
Is this SweepParameter a specialized parameter type?
void setSystem(System &system)
Set the system associated with this object.
void getInitial()
Store the pre-sweep value of the corresponding parameter.
double initial() const
Return the initial system parameter value.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
int id(int i) const
Get a id for a sub-object or element to which this is applied.
friend std::istream & operator>>(std::istream &, SweepParameter &)
Inserter for reading a SweepParameter from an istream.
ParameterType & parameterType() const
Get the ParameterType object for a specialized sweep parameter.
void update(double newVal)
Update the corresponding parameter value in the system.
Main class in SCFT simulation of one system.
Definition r1d/System.h:65
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
void serializeEnum(Archive &ar, T &data, const unsigned int version=0)
Serialize an enumeration value.
Definition serialize.h:59
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
Declaration of a specialized sweep parameter type.