PSCF v1.2
rpg/scft/sweep/BasisFieldState.h
1#ifndef RPG_BASIS_FIELD_STATE_H
2#define RPG_BASIS_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 "FieldState.h"
12#include <string>
13
14namespace Pscf {
15namespace Rpg
16{
17
18 using namespace Util;
19 using namespace Pscf::Prdc;
20 using namespace Pscf::Prdc::Cuda;
21
25 template <int D>
26 class BasisFieldState : public FieldState<D, DArray<double> >
27 {
28 public:
29
34
41
46
52 void allocate();
53
59 void read(const std::string & filename);
60
66 void write(const std::string & filename);
67
73 void getSystemState();
74
80 void setSystemState(bool newCellParams);
81
82 // Inherited member functions
89
90 };
91
92 #ifndef RPG_BASIS_FIELD_STATE_TPP
93 // Suppress implicit instantiation
94 extern template class BasisFieldState<1>;
95 extern template class BasisFieldState<2>;
96 extern template class BasisFieldState<3>;
97 #endif
98
99} // namespace Rpg
100} // namespace Pscf
101#endif
FieldState for fields in symmetry-adapted basis format.
void getSystemState()
Copy the current state of the associated system.
void read(const std::string &filename)
Read state from file.
void setSystemState(bool newCellParams)
Set the state of the associated system to this state.
void write(const std::string &filename)
Write state to file.
Record of a state of a System (fields + unit cell).
const DArray< double > & field(int monomerId) const
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.