PSCF v1.2
rpc/fts/simulator/SimState.h
1#ifndef RPC_SIM_STATE_H
2#define RPC_SIM_STATE_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
12#include <prdc/cpu/RField.h>
13#include <util/containers/DArray.h>
14
15namespace Pscf {
16namespace Rpc {
17
18 using namespace Util;
19 using namespace Prdc::Cpu;
20
34 template <int D>
35 struct SimState
36 {
37
38 public:
39
40 // Public member functions
41
45 SimState();
46
50 ~SimState();
51
58 void allocate(int nMonomer, IntVec<D> const & dimensions);
59
60 // Public data members
61
69
78
87
95
98
101
104
107
110
113
116
119
122
123 };
124
125 #ifndef RPC_SIM_STATE_TPP
126 // Suppress implicit instantiation
127 extern template struct SimState<1>;
128 extern template struct SimState<2>;
129 extern template struct SimState<3>;
130 #endif
131
132}
133}
134#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Dynamically allocatable contiguous array template.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
SimState stores the state used by an FTS simulation.
bool hasData
Does this object currently store data?
double fieldHamiltonian
Quadratic field contribution to Hamiltonian value.
bool needsHamiltonian
True iff Hamiltonian components need to be saved.
DArray< RField< D > > cc
Eigenvector components of c fields on a real space grid.
bool needsDc
True iff dc fields need to be saved.
void allocate(int nMonomer, IntVec< D > const &dimensions)
Allocate memory for fields.
DArray< RField< D > > dc
Functional derivatives of the Hamiltonian on a real space grid.
double idealHamiltonian
Ideal gas contribution to Hamiltonian.
DArray< RField< D > > wc
Chemical potential fields, r-grid format, indexed by eigenvector.
bool needsCc
True iff cc fields need to be saved.
bool isAllocated
Has memory been allocated for the fields?
double perturbationHamiltonian
Perturbation to Hamiltonian value (if any).
DArray< RField< D > > w
Chemical potential fields, r-grid format, indexed by monomer.
double hamiltonian
Field theoretic Hamiltonian value (total).