PSCF v1.2
rpc/field/Domain.tpp
1#ifndef RPC_DOMAIN_TPP
2#define RPC_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 Rpc
16{
17
18 using namespace Util;
19 using namespace Pscf::Prdc;
20 using namespace Pscf::Prdc::Cpu;
21
22 /*
23 * Constructor.
24 */
25 template <int D>
27 : unitCell_(),
28 mesh_(),
29 group_(),
30 basis_(),
31 fft_(),
32 fieldIo_(),
33 lattice_(UnitCell<D>::Null),
34 groupName_(""),
35 hasGroup_(false),
36 hasFileMaster_(false),
37 isInitialized_(false)
38 {
39 setClassName("Domain");
40 fieldIo_.associate(mesh_, fft_, lattice_,
41 hasGroup_, groupName_, group_, basis_);
42
43 }
44
45 /*
46 * Destructor.
47 */
48 template <int D>
51
52 template <int D>
54 {
55 fieldIo_.setFileMaster(fileMaster);
56 hasFileMaster_ = true;
57 }
58
59 /*
60 * Read parameters and initialize.
61 */
62 template <int D>
63 void Domain<D>::readParameters(std::istream& in)
64 {
65 // Preconditions
66 UTIL_CHECK(!isInitialized_);
67 UTIL_CHECK(hasFileMaster_);
68
69 // Read computational mesh dimensions (required)
70 read(in, "mesh", mesh_);
71 UTIL_CHECK(mesh().size() > 0);
72 fft_.setup(mesh_.dimensions());
73
74 // Read lattice_ (lattice system) enumeration value (required)
75 read(in, "lattice", lattice_);
76 unitCell_.set(lattice_);
77 UTIL_CHECK(unitCell().lattice() != UnitCell<D>::Null);
78 UTIL_CHECK(unitCell().nParameter() > 0);
79
80 // Optionally read groupName_ string identifier for group
81 hasGroup_ = false;
82 bool hasGroupName;
83 hasGroupName = readOptional(in, "groupName", groupName_).isActive();
84
85 // If groupName_ string is present, construct group_
86 if (hasGroupName) {
87 // Read group symmetry operations from file
88 // An Exception is thrown if groupName_ string is not recognized
89 readGroup(groupName_, group_);
90 hasGroup_ = true;
91 }
92
93 isInitialized_ = true;
94 }
95
96 /*
97 * Read header of r-grid field in order to initialize the Domain.
98 *
99 * Used only for unit testing.
100 */
101 template <int D>
102 void Domain<D>::readRGridFieldHeader(std::istream& in, int& nMonomer)
103 {
104 // Preconditions - confirm that nothing is initialized
105 UTIL_CHECK(!isInitialized_)
106 UTIL_CHECK(lattice_ == UnitCell<D>::Null);
107 UTIL_CHECK(!unitCell_.isInitialized());
108 UTIL_CHECK(!hasGroup_);
109 UTIL_CHECK(groupName_ == "");
110
111 // Read common section of standard field header
112 int ver1, ver2;
113 Pscf::Prdc::readFieldHeader(in, ver1, ver2,
114 unitCell_, groupName_, nMonomer);
115
116 lattice_ = unitCell_.lattice();
117 UTIL_CHECK(lattice_ != UnitCell<D>::Null);
118 UTIL_CHECK(unitCell_.isInitialized());
119
120 // Read grid dimensions
121 std::string label;
122 in >> label;
123 if (label != "mesh" && label != "ngrid") {
124 std::string msg = "\n";
125 msg += "Error reading field file:\n";
126 msg += "Expected mesh or ngrid, but found [";
127 msg += label;
128 msg += "]";
129 UTIL_THROW(msg.c_str());
130 }
131 IntVec<D> nGrid;
132 in >> nGrid;
133
134 if (mesh_.size() == 0) {
135 // Initialize mesh, fft
136 mesh_.setDimensions(nGrid);
137 fft_.setup(mesh_.dimensions());
138 }
139
140 // If groupName is present, construct group and basis
141 if (groupName_ != "") {
142 readGroup(groupName_, group_);
143 hasGroup_ = true;
144 basis_.makeBasis(mesh_, unitCell_, group_);
145 }
146
147 isInitialized_ = true;
148 }
149
150 /*
151 * Set the unit cell by copying a UnitCell<D> object.
152 */
153 template <int D>
154 void Domain<D>::setUnitCell(UnitCell<D> const & unitCell)
155 {
156 if (lattice_ == UnitCell<D>::Null) {
157 lattice_ = unitCell.lattice();
158 } else {
159 UTIL_CHECK(lattice_ == unitCell.lattice());
160 }
161 unitCell_ = unitCell;
162 if (hasGroup_) {
163 if (!basis_.isInitialized()) {
164 makeBasis();
165 }
166 }
167 }
168
169 /*
170 * Set parameters of the associated unit cell.
171 */
172 template <int D>
174 FSArray<double, 6> const & parameters)
175 {
176 if (lattice_ == UnitCell<D>::Null) {
177 lattice_ = lattice;
178 } else {
179 UTIL_CHECK(lattice_ == lattice);
180 }
181 unitCell_.set(lattice, parameters);
182 if (hasGroup_) {
183 if (!basis_.isInitialized()) {
184 makeBasis();
185 }
186 }
187 }
188
189 /*
190 * Set parameters of the associated unit cell.
191 */
192 template <int D>
194 {
195 UTIL_CHECK(unitCell_.lattice() != UnitCell<D>::Null);
196 UTIL_CHECK(unitCell_.nParameter() == parameters.size());
197 unitCell_.setParameters(parameters);
198 if (hasGroup_) {
199 if (!basis_.isInitialized()) {
200 makeBasis();
201 }
202 }
203 }
204
205 template <int D>
207 {
208 UTIL_CHECK(mesh_.size() > 0);
209 UTIL_CHECK(unitCell_.lattice() != UnitCell<D>::Null);
210 UTIL_CHECK(hasGroup_);
211
212 // Check basis, construct if not initialized
213 if (!basis().isInitialized()) {
214 basis_.makeBasis(mesh_, unitCell_, group_);
215 }
216 UTIL_CHECK(basis().isInitialized());
217 }
218
219} // namespace Rpc
220} // namespace Pscf
221#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 readRGridFieldHeader(std::istream &in, int &nMonomer)
Read header of an r-grid field file to initialize this Domain.
void makeBasis()
Construct basis if not done already.
void setFileMaster(FileMaster &fileMaster)
Create association with a FileMaster, needed by FieldIo.
virtual void readParameters(std::istream &in)
Read body of parameter block (without opening and closing lines).
void setUnitCell(UnitCell< D > const &unitCell)
Set unit cell.
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).
Fields and FFTs for periodic boundary conditions (CPU)
Definition CField.cpp:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.