PSCF v1.2
rpg/field/WFieldContainer.h
1#ifndef RPG_W_FIELD_CONTAINER_H
2#define RPG_W_FIELD_CONTAINER_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
12
13#include <prdc/cuda/RField.h> // member template parameter
14#include <prdc/crystal/UnitCell.h> // function parameter
15#include <pscf/math/IntVec.h> // function parameter
16#include <pscf/cuda/DeviceArray.h> // function parameter
17#include <util/param/ParamComposite.h> // base class
18#include <util/containers/DArray.h> // member template
19
20namespace Pscf {
21namespace Rpg {
22
23 template <int D> class FieldIo;
24
25 using namespace Util;
26 using namespace Pscf::Prdc;
27 using namespace Pscf::Prdc::Cuda;
28
60 template <int D>
62 {
63
64 public:
65
70
75
79 void setFieldIo(FieldIo<D> const & fieldIo);
80
88 void setNMonomer(int nMonomer);
89
95 void allocateRGrid(IntVec<D> const & dimensions);
96
100 void deallocateRGrid();
101
107 void allocateBasis(int nBasis);
108
112 void deallocateBasis();
113
123 void allocate(int nMonomer, int nBasis, IntVec<D> const & dimensions);
124
134 void setBasis(DArray< DArray<double> > const & fields);
135
151 void setRGrid(DArray< RField<D> > const & fields,
152 bool isSymmetric = false);
153
162 void setRGrid(DeviceArray<cudaReal> & fields);
163
178 void readBasis(std::istream& in, UnitCell<D>& unitCell);
179
194 void readBasis(std::string filename, UnitCell<D>& unitCell);
195
215 void readRGrid(std::istream& in, UnitCell<D>& unitCell,
216 bool isSymmetric = false);
217
237 void readRGrid(std::string filename, UnitCell<D>& unitCell,
238 bool isSymmetric = false);
239
260 void symmetrize();
261
267 DArray< DArray<double> > const & basis() const;
268
276 DArray<double> const & basis(int monomerId) const;
277
283 DArray< RField<D> > const & rgrid() const;
284
290 RField<D> const & rgrid(int monomerId) const;
291
295 bool isAllocatedRGrid() const;
296
300 bool isAllocatedBasis() const;
301
307 bool hasData() const;
308
317 bool isSymmetric() const;
318
319 private:
320
321 /*
322 * Array of fields in symmetry-adapted basis format
323 *
324 * Element basis_[i] is an array that contains the components
325 * of the field associated with monomer i, in a symmetry-adapted
326 * Fourier expansion.
327 */
328 DArray< DArray<double> > basis_;
329
330 /*
331 * Array of fields in real-space grid (r-grid) format
332 *
333 * Element basis_[i] is an RField<D> that contains values of the
334 * field associated with monomer i on the nodes of a regular mesh.
335 */
336 DArray< RField<D> > rgrid_;
337
338 /*
339 * Pointer to associated FieldIo object
340 */
341 FieldIo<D> const * fieldIoPtr_;
342
343 /*
344 * Integer vector of grid dimensions.
345 *
346 * Element i is the number of grid points along direction i
347 */
348 IntVec<D> meshDimensions_;
349
350 /*
351 * Total number grid points (product of mesh dimensions)
352 */
353 int meshSize_;
354
355 /*
356 * Number of basis functions in symmetry-adapted basis
357 */
358 int nBasis_;
359
360 /*
361 * Number of monomer types (number of fields)
362 */
363 int nMonomer_;
364
365 /*
366 * Has memory been allocated for fields in r-grid format?
367 */
368 bool isAllocatedRGrid_;
369
370 /*
371 * Has memory been allocated for fields in basis format?
372 */
373 bool isAllocatedBasis_;
374
375 /*
376 * Has field data been initialized ?
377 */
378 bool hasData_;
379
380 /*
381 * Are the fields symmetric under space group operations?
382 *
383 * Set true when fields are set using the symmetry adapted basis
384 * format via function setBasis. False by otherwise.
385 */
386 bool isSymmetric_;
387
388 };
389
390 // Inline member functions
391
392 // Get array of all fields in basis format (const)
393 template <int D>
394 inline
396 { return basis_; }
397
398 // Get one field in basis format (const)
399 template <int D>
400 inline
402 { return basis_[id]; }
403
404 // Get all fields in r-grid format (const)
405 template <int D>
406 inline
407 DArray< RField<D> > const &
409 { return rgrid_; }
410
411 // Get one field in r-grid format (const)
412 template <int D>
413 inline
415 { return rgrid_[id]; }
416
417 // Has memory been allocated for fields in r-grid format?
418 template <int D>
420 { return isAllocatedRGrid_; }
421
422 // Has memory been allocated for fields in basis format?
423 template <int D>
425 { return isAllocatedBasis_; }
426
427 // Has field data been initialized ?
428 template <int D>
429 inline bool WFieldContainer<D>::hasData() const
430 { return hasData_; }
431
432 // Are the fields symmetric under space group operations?
433 template <int D>
435 { return isSymmetric_; }
436
437 #ifndef RPG_W_FIELD_CONTAINER_TPP
438 // Suppress implicit instantiation
439 extern template class WFieldContainer<1>;
440 extern template class WFieldContainer<2>;
441 extern template class WFieldContainer<3>;
442 #endif
443
444} // namespace Rpg
445} // namespace Pscf
446#endif
Dynamic array on the GPU device with aligned data.
Definition rpg/System.h:32
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Field of real double precision values on an FFT mesh.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
File input/output operations and format conversions for fields.
A list of fields stored in both basis and r-grid format.
void setNMonomer(int nMonomer)
Set stored value of nMonomer.
void deallocateBasis()
De-allocate fields in basis format.
void allocateBasis(int nBasis)
Allocate or re-allocate memory for fields in basis format.
void setFieldIo(FieldIo< D > const &fieldIo)
Create association with FieldIo (store pointer).
void allocate(int nMonomer, int nBasis, IntVec< D > const &dimensions)
Allocate memory for all fields.
DArray< DArray< double > > const & basis() const
Get array of all fields in basis format.
bool isSymmetric() const
Are fields symmetric under all elements of the space group?
DArray< RField< D > > const & rgrid() const
Get array of all fields in r-space grid format.
bool isAllocatedBasis() const
Has memory been allocated for fields in basis format?
bool isAllocatedRGrid() const
Has memory been allocated for fields in r-grid format?
void readRGrid(std::istream &in, UnitCell< D > &unitCell, bool isSymmetric=false)
Reads fields from an input stream in real-space (r-grid) format.
void symmetrize()
Symmetrize r-grid fields, compute corresponding basis components.
void readBasis(std::istream &in, UnitCell< D > &unitCell)
Read field component values from input stream, in symmetrized Fourier format.
void setBasis(DArray< DArray< double > > const &fields)
Set field component values, in symmetrized Fourier format.
bool hasData() const
Has field data been set in either format?
void allocateRGrid(IntVec< D > const &dimensions)
Allocate or re-allocate memory for fields in rgrid format.
void setRGrid(DArray< RField< D > > const &fields, bool isSymmetric=false)
Set fields values in real-space (r-grid) format.
void deallocateRGrid()
De-allocate fields in rgrid format.
Dynamically allocatable contiguous array template.
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.