PSCF v1.2
rpg/scft/sweep/FieldState.h
1#ifndef RPG_FIELD_STATE_H
2#define RPG_FIELD_STATE_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2021, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <prdc/crystal/UnitCell.h> // member
12#include <rpg/field/FieldIo.h> // member
13#include <util/containers/DArray.h> // member template
14
15namespace Pscf {
16namespace Rpg
17{
18
19 using namespace Util;
20 using namespace Pscf::Prdc;
21 using namespace Pscf::Prdc::Cuda;
22
23 template <int D> class System;
24
41 template <int D, class FT>
43 {
44
45 public:
46
48
49
53 FieldState();
54
63
68
75
77
79
85 const DArray<FT>& fields() const;
86
93
99 const FT& field(int monomerId) const;
100
106 FT& field(int monomerId);
107
111 const UnitCell<D>& unitCell() const;
112
117
119
120 protected:
121
125 bool hasSystem();
126
131
132 private:
133
137 DArray<FT> fields_;
138
142 UnitCell<D> unitCell_;
143
147 System<D>* systemPtr_;
148
149 };
150
151 // Public inline member functions
152
153 // Get an array of all fields (const reference)
154 template <int D, class FT>
155 inline
157 { return fields_; }
158
159 // Get an array of all fields (non-const reference)
160 template <int D, class FT>
161 inline
163 { return fields_; }
164
165 // Get field for monomer type id (const reference)
166 template <int D, class FT>
167 inline
168 FT const & FieldState<D,FT>::field(int id) const
169 { return fields_[id]; }
170
171 // Get field for monomer type id (non-const reference)
172 template <int D, class FT>
173 inline FT& FieldState<D,FT>::field(int id)
174 { return fields_[id]; }
175
176 // Get the internal Unitcell (const reference)
177 template <int D, class FT>
178 inline
180 { return unitCell_; }
181
182 // Get the internal Unitcell (non-const reference)
183 template <int D, class FT>
184 inline
186 { return unitCell_; }
187
188 // Protected inline member functions
189
190 // Has the system been set?
191 template <int D, class FT>
192 inline
194 { return (systemPtr_ != 0); }
195
196 // Get the associated System<D> object.
197 template <int D, class FT>
198 inline
200 {
201 assert(systemPtr_ != 0);
202 return *systemPtr_;
203 }
204
205 #ifndef RPG_FIELD_STATE_TPP
206 // Suppress implicit instantiation
207 extern template class FieldState< 1, DArray<double> >;
208 extern template class FieldState< 2, DArray<double> >;
209 extern template class FieldState< 3, DArray<double> >;
210 #endif
211
212} // namespace Rpg
213} // namespace Pscf
214#endif
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
Record of a state of a System (fields + unit cell).
bool hasSystem()
Has a system been set?
UnitCell< D > & unitCell()
Get the UnitCell by non-const reference.
const UnitCell< D > & unitCell() const
Get UnitCell (i.e., lattice type and parameters) by const reference.
System< D > & system()
Get associated System by reference.
const DArray< FT > & fields() const
Get array of all fields by const reference.
void setSystem(System< D > &system)
Set association with System, after default construction.
const FT & field(int monomerId) const
Get a field for a single monomer type by const reference.
FT & field(int monomerId)
Get field for a specific monomer type (non-const reference).
DArray< FT > & fields()
Get array of all chemical potential fields (non-const reference).
Main class for calculations that represent one system.
Definition rpg/System.h:107
Dynamically allocatable contiguous array template.
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
Utility classes for scientific computation.