PSCF v1.2
rpg/field/Domain.tpp
1#ifndef RPG_DOMAIN_TPP
2#define RPG_DOMAIN_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 "Domain.h"
12#include <prdc/crystal/fieldHeader.h>
13
14namespace Pscf {
15namespace Rpg {
16
17 using namespace Util;
18
19 /*
20 * Constructor.
21 */
22 template <int D>
24 : unitCell_(),
25 mesh_(),
26 basis_(),
27 fft_(),
28 fieldIo_(),
29 lattice_(UnitCell<D>::Null),
30 groupName_(""),
31 hasGroup_(false),
32 hasFileMaster_(false),
33 isInitialized_(false)
34 {
35 setClassName("Domain");
36 fieldIo_.associate(mesh_, fft_,
37 lattice_, hasGroup_, groupName_, group_, basis_);
38 }
39
40 /*
41 * Destructor.
42 */
43 template <int D>
46
47 template <int D>
49 {
50 //fieldIo_.associate(mesh_, fft_,
51 // lattice_, hasGroup_, groupName_, group_,
52 // basis_, waveList_, fileMaster);
53 fieldIo_.setFileMaster(fileMaster);
54 hasFileMaster_ = true;
55 }
56
57 /*
58 * Read parameters and initialize.
59 */
60 template <int D>
61 void Domain<D>::readParameters(std::istream& in)
62 {
63 UTIL_CHECK(hasFileMaster_);
64
65 read(in, "mesh", mesh_);
66 UTIL_CHECK(mesh().size() > 0);
67 fft_.setup(mesh_.dimensions());
68
69 // Read lattice system identifier (enumeration)
70 read(in, "lattice", lattice_);
71 unitCell_.set(lattice_);
72 UTIL_CHECK(unitCell().lattice() != UnitCell<D>::Null);
73 UTIL_CHECK(unitCell().nParameter() > 0);
74
75 // Allocate memory for WaveList
76 waveList().allocate(mesh(), unitCell());
77
78 // Optionally read group name
79 hasGroup_ = false;
80 bool hasGroupName = false;
81 hasGroupName = readOptional(in, "groupName", groupName_).isActive();
82
83 // If group name is found, construct the group
84 if (hasGroupName) {
85 // Read group symmetry operations from file
86 readGroup(groupName_, group_);
87 hasGroup_ = true;
88 }
89
90 isInitialized_ = true;
91 }
92
93 /*
94 * Initialize domain from RGridFieldHeader (alternative to param file)
95 */
96 template <int D>
97 void Domain<D>::readRGridFieldHeader(std::istream& in, int& nMonomer)
98 {
99 // Preconditions - confirm that nothing is initialized
100 UTIL_CHECK(!isInitialized_);
101 UTIL_CHECK(lattice_ == UnitCell<D>::Null);
102 UTIL_CHECK(!unitCell_.isInitialized());
103 UTIL_CHECK(!hasGroup_);
104 UTIL_CHECK(groupName_ == "");
105
106 // Read common section of standard field header
107 int ver1, ver2;
108 Pscf::Prdc::readFieldHeader(in, ver1, ver2,
109 unitCell_, groupName_, nMonomer);
110
111 // Set lattice_
112 lattice_ = unitCell_.lattice();
113 UTIL_CHECK(lattice_ != UnitCell<D>::Null);
114 UTIL_CHECK(unitCell_.isInitialized());
115
116 // Read grid dimensions
117 std::string label;
118 in >> label;
119 if (label != "mesh" && label != "ngrid") {
120 std::string msg = "\n";
121 msg += "Error reading field file:\n";
122 msg += "Expected mesh or ngrid, but found [";
123 msg += label;
124 msg += "]";
125 UTIL_THROW(msg.c_str());
126 }
127 IntVec<D> nGrid;
128 in >> nGrid;
129
130 // Initialize mesh and fft
131 if (mesh_.size() == 0) {
132 mesh_.setDimensions(nGrid);
133 fft_.setup(mesh_.dimensions());
134 }
135
136 // Allocate waveList
137 if (!waveList_.isAllocated()) {
138 waveList_.allocate(mesh_, unitCell_);
139 }
140
141 // Initialize group and basis
142 if (groupName_ != "") {
143 readGroup(groupName_, group_);
144 hasGroup_ = true;
145 basis_.makeBasis(mesh_, unitCell_, group_);
146 }
147
148 isInitialized_ = true;
149 }
150
151 /*
152 * Set the unit cell, make basis if needed.
153 */
154 template <int D>
155 void Domain<D>::setUnitCell(UnitCell<D> const & unitCell)
156 {
157 if (lattice_ == UnitCell<D>::Null) {
158 lattice_ = unitCell.lattice();
159 } else {
160 UTIL_CHECK(lattice_ == unitCell.lattice());
161 }
162 unitCell_ = unitCell;
163
164 UTIL_CHECK(waveList().isAllocated());
165 waveList().clearUnitCellData(); // reset wavelist
166
167 if (hasGroup_ && !basis_.isInitialized()) {
168 makeBasis();
169 }
170 }
171
172 /*
173 * Set the unit cell, make basis if needed.
174 */
175 template <int D>
177 FSArray<double, 6> const & parameters)
178 {
179 if (lattice_ == UnitCell<D>::Null) {
180 lattice_ = lattice;
181 } else {
182 UTIL_CHECK(lattice_ == lattice);
183 }
184 unitCell_.set(lattice, parameters);
185
186 UTIL_CHECK(waveList().isAllocated());
187 waveList().clearUnitCellData(); // reset wavelist
188
189 if (hasGroup_ && !basis_.isInitialized()) {
190 makeBasis();
191 }
192 }
193
194 /*
195 * Set parameters of the associated unit cell, make basis if needed.
196 */
197 template <int D>
199 {
200 UTIL_CHECK(unitCell_.lattice() != UnitCell<D>::Null);
201 UTIL_CHECK(unitCell_.nParameter() == parameters.size());
202 unitCell_.setParameters(parameters);
203
204 UTIL_CHECK(waveList().isAllocated());
205 waveList().clearUnitCellData(); // reset wavelist
206
207 if (hasGroup_ && !basis_.isInitialized()) {
208 makeBasis();
209 }
210 }
211
212 template <int D>
214 {
215 UTIL_CHECK(mesh_.size() > 0);
216 UTIL_CHECK(unitCell_.lattice() != UnitCell<D>::Null);
217 UTIL_CHECK(unitCell_.nParameter() > 0);
218 UTIL_CHECK(unitCell_.isInitialized());
219 UTIL_CHECK(hasGroup_);
220
221 // Check basis, construct if not initialized
222 if (!basis().isInitialized()) {
223 basis_.makeBasis(mesh_, unitCell_, group_);
224 }
225 UTIL_CHECK(basis().isInitialized());
226 }
227
228} // namespace Rpg
229} // namespace Pscf
230#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
void makeBasis()
Construct basis if not done already.
virtual void readParameters(std::istream &in)
Read body of parameter block (without opening and closing lines).
void setUnitCell(UnitCell< D > const &unitCell)
Set the unit cell, given a UnitCell<D> object.
void readRGridFieldHeader(std::istream &in, int &nMonomer)
Read initialization data from header of an r-grid field file.
void setFileMaster(FileMaster &fileMaster)
Create association with a FileMaster, needed by FieldIo.
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
int size() const
Return logical size of this array (i.e., number of elements).
Definition FSArray.h:207
A FileMaster manages input and output files for a simulation.
Definition FileMaster.h:143
void setClassName(const char *className)
Set class name string.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
void readFieldHeader(std::istream &in, int &ver1, int &ver2, UnitCell< D > &cell, std::string &groupName, int &nMonomer)
Read common part of field header (fortran PSCF format).
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.