PSCF v1.2
rpc/scft/sweep/BasisFieldState.tpp
1#ifndef RPC_BASIS_FIELD_STATE_TPP
2#define RPC_BASIS_FIELD_STATE_TPP
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#include "BasisFieldState.h"
12#include "FieldState.tpp"
13#include <util/global.h>
14
15namespace Pscf {
16namespace Rpc
17{
18
19 using namespace Util;
20
21 /*
22 * Default constructor.
23 */
24 template <int D>
28
29 /*
30 * Constructor.
31 */
32 template <int D>
34 : FieldState<D, DArray<double> >(system)
35 {}
36
37 /*
38 * Destructor.
39 */
40 template <int D>
43
44 /*
45 * Allocate all fields.
46 */
47 template <int D>
49 {
50 // Precondition
51 UTIL_CHECK(hasSystem());
52
53 int nMonomer = system().mixture().nMonomer();
54 UTIL_CHECK(nMonomer > 0);
55 if (fields().isAllocated()) {
56 UTIL_CHECK(fields().capacity() == nMonomer);
57 } else {
58 fields().allocate(nMonomer);
59 }
60
61 int nBasis = system().domain().basis().nBasis();
62 UTIL_CHECK(nBasis > 0);
63 for (int i = 0; i < nMonomer; ++i) {
64 if (field(i).isAllocated()) {
65 UTIL_CHECK(field(i).capacity() == nBasis);
66 } else {
67 field(i).allocate(nBasis);
68 }
69 }
70
71 }
72
73 /*
74 * Read fields in symmetry-adapted basis format.
75 */
76 template <int D>
77 void BasisFieldState<D>::read(const std::string & filename)
78 {
79 allocate();
80 FieldIo<D> const & fieldIo = system().domain().fieldIo();
81 fieldIo.readFieldsBasis(filename,
82 fields(),
83 unitCell());
84 }
85
89 template <int D>
90 void BasisFieldState<D>::write(const std::string & filename)
91 {
92 FieldIo<D> const & fieldIo = system().domain().fieldIo();
93 fieldIo.writeFieldsBasis(filename, fields(), unitCell());
94 }
95
96 /*
97 * Gjt current state of associated System.
98 */
99 template <int D>
101 {
102 // Get system wFields
103 allocate();
104 int nMonomer = system().mixture().nMonomer();
105 int nBasis = system().domain().basis().nBasis();
106 int i, j;
107 for (i = 0; i < nMonomer; ++i) {
108 DArray<double>& stateField = field(i);
109 const DArray<double>& systemField = system().w().basis(i);
110 for (j = 0; j < nBasis; ++j) {
111 stateField[j] = systemField[j];
112 }
113 }
114
115 // Get system unit cell
116 unitCell() = system().domain().unitCell();
117 }
118
119 /*
120 * Set System state to current state of the BasisFieldState object.
121 */
122 template <int D>
124 {
125 system().setWBasis(fields());
126 if (isFlexible) {
127 system().setUnitCell(unitCell());
128 }
129 }
130
131} // namespace Rpc
132} // namespace Pscf
133#endif
void readFieldsBasis(std::istream &in, DArray< DArray< double > > &fields, UnitCell< D > &unitCell) const
Read concentration or chemical potential fields from file.
void writeFieldsBasis(std::ostream &out, DArray< DArray< double > > const &fields, UnitCell< D > const &unitCell) const
Write concentration or chemical potential field components to file.
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.
File input/output operations and format conversions for fields.
Record of a state of a System (fields + unit cell).
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Dynamically allocatable contiguous array template.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.