PSCF v1.2
rpg/fts/ramp/RampParameter.h
1#ifndef RPG_RAMP_PARAMETER_H
2#define RPG_RAMP_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
14namespace Pscf {
15namespace Rpg {
16
17 template <int D> class Simulator;
18 template <int D> class System;
19
84 template <int D>
86 {
87
88 public:
89
94
100 RampParameter(Simulator<D>& simulator);
101
111 void setSimulator(Simulator<D>& simulator);
112
119 void getInitial();
120
126 void update(double newVal);
127
131 std::string type() const;
132
138 void writeParamType(std::ostream& out) const;
139
154 int id(int i) const
155 {
156 UTIL_CHECK(i < nId_);
157 return id_[i];
158 }
159
165 int nId() const
166 { return nId_; }
167
171 double current()
172 { return get_(); }
173
177 double initial() const
178 { return initial_; }
179
183 double change() const
184 { return change_; }
185
192 template <class Archive>
193 void serialize(Archive ar, const unsigned int version);
194
195 private:
196
198 enum ParamType { Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
199 Mu_Polymer, Mu_Solvent, Solvent, Cell_Param,
200 Lambda_Pert, Vmonomer, Null};
201
203 ParamType type_;
204
206 int nId_;
207
209 DArray<int> id_;
210
212 double initial_;
213
215 double change_;
216
218 Simulator<D>* simulatorPtr_;
219
221 System<D>* systemPtr_;
222
228 void readParamType(std::istream& in);
229
233 double get_();
234
240 void set_(double newVal);
241
242 // friends:
243
244 template <int U>
245 friend
246 std::istream& operator >> (std::istream&, RampParameter<U>&);
247
248 template <int U>
249 friend
250 std::ostream& operator << (std::ostream&, RampParameter<U> const&);
251
252 };
253
260 template <int D>
261 std::istream& operator >> (std::istream& in,
262 RampParameter<D>& param);
263
270 template <int D>
271 std::ostream& operator << (std::ostream& out,
272 RampParameter<D> const & param);
273
274}
275}
276#include "RampParameter.tpp"
277#endif
Block within a branched polymer.
Class for storing data about an individual ramp parameter.
int nId() const
Number of indices associated with this type of 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.
double change() const
Get the total change planned for this parameter during ramp.
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 serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
double initial() const
Get the initial system parameter value.
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
Solver and descriptor for a solvent species.
Dynamically allocatable contiguous array template.
#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