PSCF v1.2
rpc/fts/ramp/RampParameter.h
1#ifndef RPC_RAMP_PARAMETER_H
2#define RPC_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 Rpc {
16
17 template <int D> class Simulator;
18 template <int D> class System;
19
90 template <int D>
92 {
93
94 public:
95
100
106 RampParameter(Simulator<D>& simulator);
107
117 void setSimulator(Simulator<D>& simulator);
118
125 void getInitial();
126
132 void update(double newVal);
133
137 std::string type() const;
138
144 void writeParamType(std::ostream& out) const;
145
160 int id(int i) const
161 {
162 UTIL_CHECK(i < nId_);
163 return id_[i];
164 }
165
171 int nId() const
172 { return nId_; }
173
177 double current()
178 { return get_(); }
179
183 double initial() const
184 { return initial_; }
185
189 double change() const
190 { return change_; }
191
198 template <class Archive>
199 void serialize(Archive ar, const unsigned int version);
200
201 private:
202
204 enum ParamType { Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
205 Mu_Polymer, Mu_Solvent, Solvent, Cell_Param,
206 Lambda_Pert, Vmonomer, Null};
207
209 ParamType type_;
210
212 int nId_;
213
215 DArray<int> id_;
216
218 double initial_;
219
221 double change_;
222
224 Simulator<D>* simulatorPtr_;
225
227 System<D>* systemPtr_;
228
234 void readParamType(std::istream& in);
235
239 double get_();
240
246 void set_(double newVal);
247
248 // friends:
249
250 template <int U>
251 friend
252 std::istream& operator >> (std::istream&, RampParameter<U>&);
253
254 template <int U>
255 friend
256 std::ostream& operator << (std::ostream&, RampParameter<U> const&);
257
258 };
259
266 template <int D>
267 std::istream& operator >> (std::istream& in,
268 RampParameter<D>& param);
269
276 template <int D>
277 std::ostream& operator << (std::ostream& out,
278 RampParameter<D> const & param);
279
280}
281}
282#include "RampParameter.tpp"
283#endif
Block within a branched polymer.
Class for storing data about an individual ramp parameter.
void getInitial()
Get and store initial value this parameters.
int id(int i) const
Get id for a sub-object or element to which this is applied.
void serialize(Archive ar, const unsigned int version)
Serialize to or from an archive.
std::string type() const
Return a string representation of the parameter type.
double current()
Get the current system parameter value.
double change() const
Get the total change planned for this parameter during ramp.
void update(double newVal)
Update the corresponding parameter value in the System.
double initial() const
Get the initial system parameter value.
void writeParamType(std::ostream &out) const
Write the parameter type to an output stream.
void setSimulator(Simulator< D > &simulator)
Set the simulator and system associated with this object.
int nId() const
Number of indices associated with this type of parameter.
Field theoretic simulator (base class).
Definition rpc/System.h:38
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