1#ifndef R1D_SWEEP_PARAMETER_H
2#define R1D_SWEEP_PARAMETER_H
11#include <util/containers/DArray.h>
12#include <util/containers/GArray.h>
15#include <pscf/sweep/ParameterType.h>
130 { systemPtr_ = &system; }
138 { parameterTypesPtr_ = &array; }
152 {
return parameterTypeId_; }
158 {
return (parameterTypeId_ != -1); }
170 void update(
double newVal);
175 std::string
type()
const;
222 template <
class Archive>
223 void serialize(Archive ar,
const unsigned int version);
228 enum ParamType {
Block, Chi, Kuhn, Phi_Polymer, Phi_Solvent,
229 Mu_Polymer, Mu_Solvent,
Solvent, Cell_Param,
254 int parameterTypeId_;
261 void readParamType(std::istream& in);
273 void set_(
double newVal);
286 template <
class Archive>
291 for (
int i = 0; i < nId_; ++i) {
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.
Dynamically allocatable contiguous array template.
An automatically growable array, analogous to a std::vector.
void serializeEnum(Archive &ar, T &data, const unsigned int version=0)
Serialize an enumeration value.
PSCF package top-level namespace.
Utility classes for scientific computation.
Declaration of a specialized sweep parameter type.