PSCF v1.2
rpc/scft/sweep/SweepParameter.h
1#ifndef RPC_SWEEP_PARAMETER_H
2#define RPC_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 <iostream>
12#include <string>
13#include <pscf/sweep/ParameterType.h>
14
15namespace Pscf {
16namespace Rpc {
17
18 template <int D> class System;
19
103 template <int D>
105 {
106
107 public:
108
113
119 SweepParameter(System<D>& system);
120
129 void setSystem(System<D>& 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
166 void getInitial();
167
173 void update(double newVal);
174
178 std::string type() const;
179
185 void writeParamType(std::ostream& out) const;
186
201 int id(int i) const
202 {
203 UTIL_CHECK(i < nId_);
204 return id_[i];
205 }
206
212 int nId() const
213 { return nId_; }
214
218 double current()
219 { return get_(); }
220
224 double initial() const
225 { return initial_; }
226
230 double change() const
231 { return change_; }
232
239 template <class Archive>
240 void serialize(Archive ar, const unsigned int version);
241
242 private:
243
245 enum ParamType { Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
246 Mu_Polymer, Mu_Solvent, Solvent, Cell_Param,
247 Special, Null};
248
250 ParamType type_;
251
253 int nId_;
254
256 DArray<int> id_;
257
259 double initial_;
260
262 double change_;
263
265 System<D>* systemPtr_;
266
268 GArray<ParameterType>* parameterTypesPtr_;
269
271 int parameterTypeId_;
272
278 void readParamType(std::istream& in);
279
283 double get_();
284
290 void set_(double newVal);
291
292 // friends:
293
294 template <int U>
295 friend
296 std::istream& operator >> (std::istream&, SweepParameter<U>&);
297
298 template <int U>
299 friend
300 std::ostream& operator << (std::ostream&, SweepParameter<U> const&);
301
302 };
303
310 template <int D>
311 std::istream& operator >> (std::istream& in,
312 SweepParameter<D>& param);
313
320 template <int D>
321 std::ostream& operator << (std::ostream& out,
322 SweepParameter<D> const & param);
323
324}
325}
326#include "SweepParameter.tpp"
327#endif
Block within a branched polymer.
Solver and descriptor for a solvent species.
Class for storing data about an individual sweep parameter.
bool isSpecialized() const
Is this SweepParameter a specialized parameter type?
double current()
Get the current system parameter value.
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 setParameterTypesArray(GArray< ParameterType > &array)
Set the pointer to the array of specialized sweep parameter types.
void setSystem(System< D > &system)
Set the system associated with this object.
void getInitial()
Get and store initial value of this parameter.
std::string type() const
Return a string representation of the parameter type.
double change() const
Get the total change planned for this parameter during sweep.
int nId() const
Number of indices associated with this type of parameter.
int parameterTypeId() const
Get the array index for the specialized sweep parameter.
double initial() const
Get the initial system parameter value.
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.
Definition rpc/System.h:100
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
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
Declaration of a specialized sweep parameter type.