PSCF v1.2
rpc/field/Domain.h
1#ifndef RPC_DOMAIN_H
2#define RPC_DOMAIN_H
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 <util/param/ParamComposite.h> // base class
12
13#include <rpc/field/FieldIo.h> // member
14
15#include <prdc/cpu/FFT.h> // member
16#include <prdc/crystal/Basis.h> // member
17#include <prdc/crystal/SpaceGroup.h> // member
18#include <prdc/crystal/UnitCell.h> // member
19
20#include <pscf/mesh/Mesh.h> // member
21
22#include <string>
23
24namespace Pscf {
25namespace Rpc
26{
27
28 using namespace Util;
29 using namespace Pscf::Prdc;
30 using namespace Pscf::Prdc::Cpu;
31
54 template <int D>
55 class Domain : public ParamComposite
56 {
57
58 public:
59
60
64 Domain();
65
69 ~Domain();
70
73
79 void setFileMaster(FileMaster& fileMaster);
80
86 virtual void readParameters(std::istream& in);
87
96 void readRGridFieldHeader(std::istream& in, int& nMonomer);
97
107 void setUnitCell(UnitCell<D> const & unitCell);
108
120 FSArray<double, 6> const & parameters);
121
131 void setUnitCell(FSArray<double, 6> const & parameters);
132
136 void makeBasis();
137
141
146
150 UnitCell<D> const & unitCell() const;
151
155 Mesh<D>& mesh();
156
160 Mesh<D> const & mesh() const;
161
165 SpaceGroup<D> const & group() const ;
166
170 Basis<D>& basis();
171
175 Basis<D> const & basis() const ;
176
180 FFT<D>& fft();
181
185 FFT<D> const & fft() const;
186
191
195 FieldIo<D> const & fieldIo() const;
196
200
204 typename UnitCell<D>::LatticeSystem lattice() const;
205
209 std::string groupName() const;
210
214 bool hasGroup() const;
215
219 bool hasBasis() const;
220
222
223 private:
224
225 // Private member variables
226
230 UnitCell<D> unitCell_;
231
235 Mesh<D> mesh_;
236
240 SpaceGroup<D> group_;
241
245 Basis<D> basis_;
246
250 FFT<D> fft_;
251
255 FieldIo<D> fieldIo_;
256
260 typename UnitCell<D>::LatticeSystem lattice_;
261
265 std::string groupName_;
266
270 bool hasGroup_;
271
275 bool hasFileMaster_;
276
280 bool isInitialized_;
281
282 // members of parent class with non-dependent names
285
286 };
287
288 // Inline member functions
289
290 // Get the UnitCell<D> object by non-const reference.
291 template <int D>
293 { return unitCell_; }
294
295 // Get the UnitCell<D> object by const reference.
296 template <int D>
297 inline UnitCell<D> const & Domain<D>::unitCell() const
298 { return unitCell_; }
299
300 // Get the Mesh<D> object by reference.
301 template <int D>
303 { return mesh_; }
304
305 // Get the Mesh<D> object by const reference.
306 template <int D>
307 inline Mesh<D> const & Domain<D>::mesh() const
308 { return mesh_; }
309
310 // Get the SpaceGroup<D> object by const reference.
311 template <int D>
312 inline SpaceGroup<D> const & Domain<D>::group() const
313 { return group_; }
314
315 // Get the Basis<D> object by non-const reference.
316 template <int D>
318 { return basis_; }
319
320 // Get the Basis<D> object by const reference.
321 template <int D>
322 inline Basis<D> const & Domain<D>::basis() const
323 { return basis_; }
324
325 // Get the FFT<D> object.
326 template <int D>
328 { return fft_; }
329
330 // Get the FFT<D> object.
331 template <int D>
332 inline FFT<D> const & Domain<D>::fft() const
333 { return fft_; }
334
335 // Get the FieldIo<D> object.
336 template <int D>
338 { return fieldIo_; }
339
340 // Get the FieldIo<D> object by const reference.
341 template <int D>
342 inline FieldIo<D> const & Domain<D>::fieldIo() const
343 { return fieldIo_; }
344
345 // Get the lattice system enumeration value
346 template <int D>
347 inline
349 const
350 { return lattice_; }
351
352 // Get the groupName string.
353 template <int D>
354 inline std::string Domain<D>::groupName() const
355 { return groupName_; }
356
357 // Has a space group been identified?
358 template <int D>
359 inline bool Domain<D>::hasGroup() const
360 { return hasGroup_; }
361
362 // Has a symmetry-adapted Fourier basis been initialized ?
363 template <int D>
364 inline bool Domain<D>::hasBasis() const
365 { return basis_.isInitialized(); }
366
367 #ifndef RPC_DOMAIN_TPP
368 // Suppress implicit instantiation
369 extern template class Domain<1>;
370 extern template class Domain<2>;
371 extern template class Domain<3>;
372 #endif
373
374} // namespace Rpc
375} // namespace Pscf
376#endif
Description of a regular grid of points in a periodic domain.
Symmetry-adapted Fourier basis for pseudo-spectral scft.
Definition fieldIoUtil.h:21
Fourier transform wrapper.
Crystallographic space group.
Definition FieldIoReal.h:23
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
Spatial domain and spatial discretization for a periodic structure.
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.
Mesh< D > & mesh()
Get spatial discretization mesh by reference.
void setFileMaster(FileMaster &fileMaster)
Create association with a FileMaster, needed by FieldIo.
std::string groupName() const
Get group name.
UnitCell< D >::LatticeSystem lattice() const
Get lattice system.
FieldIo< D > & fieldIo()
Get associated FieldIo object.
virtual void readParameters(std::istream &in)
Read body of parameter block (without opening and closing lines).
bool hasBasis() const
Has a symmetry-adapted Fourier basis been initialized?
UnitCell< D > & unitCell()
Get UnitCell (i.e., lattice type and parameters) by reference.
Basis< D > & basis()
Get associated Basis object by reference.
FFT< D > & fft()
Get associated FFT object.
void setUnitCell(UnitCell< D > const &unitCell)
Set unit cell.
bool hasGroup() const
Has a space group been identified?
SpaceGroup< D > const & group() const
Get associated SpaceGroup object by const reference.
File input/output operations and format conversions for fields.
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
A FileMaster manages input and output files for a simulation.
Definition FileMaster.h:143
An object that can read multiple parameters from file.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
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.