PSCF v1.2
rpc/scft/sweep/BasisFieldState.h
1#ifndef RPC_BASIS_FIELD_STATE_H
2#define RPC_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 Rpc
16{
17
18 using namespace Util;
19
23 template <int D>
24 class BasisFieldState : public FieldState<D, DArray<double> >
25 {
26 public:
27
32
39
44
50 void allocate();
51
57 void read(const std::string & filename);
58
64 void write(const std::string & filename);
65
71 void getSystemState();
72
78 void setSystemState(bool isFlexible);
79
80 // Inherited member functions
87
88 };
89
90 #ifndef RPC_BASIS_FIELD_STATE_TPP
91 // Suppress implicit instantiation
92 extern template class BasisFieldState<1>;
93 extern template class BasisFieldState<2>;
94 extern template class BasisFieldState<3>;
95 #endif
96
97} // namespace Rpc
98} // namespace Pscf
99#endif
FieldState for fields in symmetry-adapted basis format.
void write(const std::string &filename)
Write state to file.
void setSystemState(bool isFlexible)
Set the state of the associated system to this state.
void read(const std::string &filename)
Read state from file.
void getSystemState()
Copy the current state of the associated system.
Record of a state of a System (fields + unit cell).
const DArray< double > & field(int monomerId) const
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Dynamically allocatable contiguous array template.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.