PSCF v1.2
rpg/scft/sweep/BasisFieldState.tpp
1#ifndef RPG_BASIS_FIELD_STATE_TPP
2#define RPG_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 <rpg/System.h>
14#include <prdc/crystal/Basis.h>
15#include <util/global.h>
16
17namespace Pscf {
18namespace Rpg
19{
20
21 using namespace Util;
22 using namespace Pscf::Prdc;
23
24 /*
25 * Default constructor.
26 */
27 template <int D>
31
32 /*
33 * Constructor.
34 */
35 template <int D>
37 : FieldState<D, DArray<double> >(system)
38 {}
39
40 /*
41 * Destructor.
42 */
43 template <int D>
46
47 /*
48 * Allocate all fields.
49 */
50 template <int D>
52 {
53 // Precondition
54 UTIL_CHECK(hasSystem());
55
56 int nMonomer = system().mixture().nMonomer();
57 UTIL_CHECK(nMonomer > 0);
58 if (fields().isAllocated()) {
59 UTIL_CHECK(fields().capacity() == nMonomer);
60 } else {
61 fields().allocate(nMonomer);
62 }
63
64 int nBasis = system().basis().nBasis();
65 UTIL_CHECK(nBasis > 0);
66 for (int i = 0; i < nMonomer; ++i) {
67 if (field(i).isAllocated()) {
68 UTIL_CHECK(field(i).capacity() == nBasis);
69 } else {
70 field(i).allocate(nBasis);
71 }
72 }
73
74 }
75
79 template <int D>
80 void BasisFieldState<D>::read(const std::string & filename)
81 {
82 allocate();
83 system().fieldIo().readFieldsBasis(filename, fields(), unitCell());
84 }
85
89 template <int D>
90 void BasisFieldState<D>::write(const std::string & filename)
91 {
92 system().fieldIo().writeFieldsBasis(filename, fields(), unitCell());
93 }
94
95 /*
96 * Get current state of associated System.
97 */
98 template <int D>
100 {
101 // Get system unit cell
102 unitCell() = system().unitCell();
103 // Get system wFields
104 allocate();
105 int nMonomer = system().mixture().nMonomer();
106 int nBasis = system().basis().nBasis();
107 int i, j;
108 for (i = 0; i < nMonomer; ++i) {
109 DArray<double>& stateField = field(i);
110 const DArray<double>& systemField = system().w().basis(i);
111 for (j = 0; j < nBasis; ++j) {
112 stateField[j] = systemField[j];
113 }
114 }
115
116 }
117
118 /*
119 * Set System state to current state of the BasisFieldState object.
120 */
121 template <int D>
122 void BasisFieldState<D>::setSystemState(bool newCellParams)
123 {
124 system().setWBasis(fields());
125
126 if (newCellParams) {
127 system().setUnitCell(unitCell());
128 }
129
130 }
131
132} // namespace Rpg
133} // namespace Pscf
134#endif
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).
Main class for calculations that represent one system.
Definition rpg/System.h:107
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
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.