PSCF v1.2
rpg/scft/sweep/SweepParameter.h
1#ifndef RPG_SWEEP_PARAMETER_H
2#define RPG_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 Rpg {
17
18 template <int D> class System;
19
20 using namespace Pscf::Prdc;
21 using namespace Pscf::Prdc::Cuda;
22
104 template <int D>
106 {
107
108 public:
109
114
120 SweepParameter(System<D>& system);
121
130 void setSystem(System<D>& system)
131 { systemPtr_ = &system; }
132
139 { parameterTypesPtr_ = &array; }
140
148
152 int parameterTypeId() const
153 { return parameterTypeId_; }
154
158 bool isSpecialized() const
159 { return (parameterTypeId_ != -1); }
160
164 void getInitial();
165
171 void update(double newVal);
172
176 std::string type() const;
177
183 void writeParamType(std::ostream& out) const;
184
198 int id(int i) const
199 { return id_[i];}
200
204 double current()
205 { return get_(); }
206
210 double initial() const
211 { return initial_; }
212
216 double change() const
217 { return change_; }
218
225 template <class Archive>
226 void serialize(Archive ar, const unsigned int version);
227
228 private:
229
231 enum ParamType { Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
232 Mu_Polymer, Mu_Solvent, Solvent, Cell_Param,
233 Special, Null};
234
236 ParamType type_;
237
239 int nId_;
240
242 DArray<int> id_;
243
245 double initial_;
246
248 double change_;
249
251 System<D>* systemPtr_;
252
254 GArray<ParameterType>* parameterTypesPtr_;
255
257 int parameterTypeId_;
258
264 void readParamType(std::istream& in);
265
269 double get_();
270
276 void set_(double newVal);
277
278 // friends:
279
280 template <int U>
281 friend
282 std::istream& operator >> (std::istream&, SweepParameter<U>&);
283
284 template <int U>
285 friend
286 std::ostream&
287 operator << (std::ostream&, SweepParameter<U> const&);
288
289 };
290
291}
292}
293#include "SweepParameter.tpp"
294#endif
Block within a branched polymer.
Solver and descriptor for a solvent species.
Class for storing data about an individual sweep parameter.
void setSystem(System< D > &system)
Set the system associated with this object.
double current()
Return the current system parameter value.
void getInitial()
Store the pre-sweep value of the corresponding parameter.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
int id(int i) const
Get a id for a sub-object or element to which this is applied.
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.
int parameterTypeId() const
Get the array index for the specialized sweep parameter.
void update(double newVal)
Update the corresponding parameter value in the system.
double initial() const
Return the initial system parameter value.
std::string type() const
Return a string representation of the parameter type.
bool isSpecialized() const
Is this SweepParameter a specialized parameter type?
ParameterType & parameterType() const
Get the ParameterType object for a specialized sweep parameter.
Main class for calculations that represent one system.
Definition rpg/System.h:107
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Declaration of a specialized sweep parameter type.