PSCF v1.2
rpg/field/Domain.h
1#ifndef RPG_DOMAIN_H
2#define RPG_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 <rpg/solvers/WaveList.h> // member
14#include <rpg/field/FieldIo.h> // member
15#include <prdc/cuda/FFT.h> // member
16
17#include <prdc/crystal/Basis.h> // member
18#include <prdc/crystal/SpaceGroup.h> // member
19#include <prdc/crystal/UnitCell.h> // member
20
21#include <pscf/mesh/Mesh.h> // member
22
23#include <string>
24
25namespace Pscf {
26namespace Rpg
27{
28
29 using namespace Util;
30 using namespace Pscf::Prdc;
31 using namespace Pscf::Prdc::Cuda;
32
50 template <int D>
51 class Domain : public ParamComposite
52 {
53
54 public:
55
57
58
62 Domain();
63
67 ~Domain();
68
74 void setFileMaster(FileMaster& fileMaster);
75
83 virtual void readParameters(std::istream& in);
84
94 void readRGridFieldHeader(std::istream& in, int& nMonomer);
95
103 void setUnitCell(UnitCell<D> const & unitCell);
104
114 FSArray<double, 6> const & parameters);
115
124 void setUnitCell(FSArray<double, 6> const & parameters);
125
129 void makeBasis();
130
132
134
139
143 UnitCell<D> const & unitCell() const;
144
148 Mesh<D>& mesh();
149
153 Mesh<D> const & mesh() const;
154
158 SpaceGroup<D> const & group() const;
159
163 Basis<D>& basis();
164
168 Basis<D> const & basis() const ;
169
173 FFT<D>& fft();
174
178 FFT<D> const & fft() const;
179
184
188 WaveList<D> const & waveList() const;
189
194
198 FieldIo<D> const & fieldIo() const;
199
203 typename UnitCell<D>::LatticeSystem lattice() const;
204
208 std::string groupName() const;
209
213 bool hasGroup() const;
214
218 bool hasBasis() const;
219
221
222 private:
223
224 // Private member variables
225
229 UnitCell<D> unitCell_;
230
234 Mesh<D> mesh_;
235
239 SpaceGroup<D> group_;
240
244 Basis<D> basis_;
245
249 FFT<D> fft_;
250
254 WaveList<D> waveList_;
255
259 FieldIo<D> fieldIo_;
260
264 typename UnitCell<D>::LatticeSystem lattice_;
265
269 std::string groupName_;
270
274 bool hasGroup_;
275
279 bool hasFileMaster_;
280
284 bool isInitialized_;
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 by const reference.
331 template <int D>
332 inline FFT<D> const & Domain<D>::fft() const
333 { return fft_; }
334
335 // Get the WaveList<D> object.
336 template <int D>
338 { return waveList_; }
339
340 // Get the WaveList<D> object by const reference.
341 template <int D>
342 inline WaveList<D> const & Domain<D>::waveList() const
343 { return waveList_; }
344
345 // Get the FieldIo<D> object.
346 template <int D>
348 { return fieldIo_; }
349
350 // Get the FieldIo<D> object by const reference.
351 template <int D>
352 inline FieldIo<D> const & Domain<D>::fieldIo() const
353 { return fieldIo_; }
354
355 // Get the lattice system enumeration value.
356 template <int D>
357 inline
359 { return lattice_; }
360
361 // Get the groupName string.
362 template <int D>
363 inline std::string Domain<D>::groupName() const
364 { return groupName_; }
365
366 // Has a space group been identified?
367 template <int D>
368 inline bool Domain<D>::hasGroup() const
369 { return hasGroup_; }
370
371 // Has a symmetry-adapted Fourier basis been initialized ?
372 template <int D>
373 inline bool Domain<D>::hasBasis() const
374 { return basis_.isInitialized(); }
375
376 #ifndef RPG_DOMAIN_TPP
377 // Suppress implicit instantiation
378 extern template class Domain<1>;
379 extern template class Domain<2>;
380 extern template class Domain<3>;
381 #endif
382
383} // namespace Rpg
384} // namespace Pscf
385#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.
UnitCell< D > & unitCell()
Get UnitCell by reference.
void makeBasis()
Construct basis if not done already.
UnitCell< D >::LatticeSystem lattice() const
Get the lattice system (enumeration value).
bool hasBasis() const
Has a symmetry-adapted Fourier basis been initialized?
SpaceGroup< D > const & group() const
Get the SpaceGroup object by const reference.
WaveList< D > & waveList()
Get the WaveList object by reference.
Basis< D > & basis()
Get the Basis by reference.
Mesh< D > & mesh()
Get the spatial Mesh by reference.
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.
bool hasGroup() const
Has a space group been identified?
void readRGridFieldHeader(std::istream &in, int &nMonomer)
Read initialization data from header of an r-grid field file.
FieldIo< D > & fieldIo()
Get associated FieldIo object.
FFT< D > & fft()
Get the FFT object by reference.
void setFileMaster(FileMaster &fileMaster)
Create association with a FileMaster, needed by FieldIo.
std::string groupName() const
Get group name.
File input/output operations and format conversions for fields.
Class to calculate and store properties of wavevectors.
Definition WaveList.h:39
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.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.