PSCF v1.2
rpc/field/WFieldContainer.h
1#ifndef RPC_W_FIELD_CONTAINER_H
2#define RPC_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#include <util/param/ParamComposite.h> // base class
13
14#include <prdc/cpu/RField.h> // member template parameter
15#include <prdc/crystal/UnitCell.h> // function parameter
16#include <pscf/math/IntVec.h> // function parameter
17#include <util/containers/DArray.h> // member template
18
19namespace Pscf {
20namespace Rpc {
21
22 template <int D> class FieldIo;
23
24 using namespace Util;
25 using namespace Pscf::Prdc;
26 using namespace Pscf::Prdc::Cpu;
27
59 template <int D>
61 {
62
63 public:
64
69
74
77
81 void setFieldIo(FieldIo<D> const & fieldIo);
82
90 void setNMonomer(int nMonomer);
91
97 void allocateRGrid(IntVec<D> const & dimensions);
98
102 void deallocateRGrid();
103
109 void allocateBasis(int nBasis);
110
114 void deallocateBasis();
115
125 void allocate(int nMonomer, int nBasis, IntVec<D> const & dimensions);
126
130
140 void setBasis(DArray< DArray<double> > const & fields);
141
157 void setRGrid(DArray< RField<D> > const & fields,
158 bool isSymmetric = false);
159
174 void readBasis(std::istream& in, UnitCell<D>& unitCell);
175
190 void readBasis(std::string filename, UnitCell<D>& unitCell);
191
211 void readRGrid(std::istream& in, UnitCell<D>& unitCell,
212 bool isSymmetric = false);
213
233 void readRGrid(std::string filename, UnitCell<D>& unitCell,
234 bool isSymmetric = false);
235
239
245 DArray< DArray<double> > const & basis() const;
246
254 DArray<double> const & basis(int monomerId) const;
255
261 DArray< RField<D> > const & rgrid() const;
262
268 RField<D> const & rgrid(int monomerId) const;
269
273
277 bool isAllocatedRGrid() const;
278
282 bool isAllocatedBasis() const;
283
289 bool hasData() const;
290
299 bool isSymmetric() const;
300
302
303 private:
304
305 /*
306 * Array of fields in symmetry-adapted basis format
307 *
308 * Element basis_[i] is an array that contains the components
309 * of the field associated with monomer i, in a symmetry-adapted
310 * Fourier expansion.
311 */
312 DArray< DArray<double> > basis_;
313
314 /*
315 * Array of fields in real-space grid (r-grid) format
316 *
317 * Element basis_[i] is an RField<D> that contains values of the
318 * field associated with monomer i on the nodes of a regular mesh.
319 */
320 DArray< RField<D> > rgrid_;
321
322 /*
323 * Pointer to associated FieldIo object
324 */
325 FieldIo<D> const * fieldIoPtr_;
326
327 /*
328 * Integer vector of grid dimensions.
329 *
330 * Element i is the number of grid points along direction i
331 */
332 IntVec<D> meshDimensions_;
333
334 /*
335 * Total number grid points (product of mesh dimensions)
336 */
337 int meshSize_;
338
339 /*
340 * Number of basis functions in symmetry-adapted basis
341 */
342 int nBasis_;
343
344 /*
345 * Number of monomer types (number of fields)
346 */
347 int nMonomer_;
348
349 /*
350 * Has memory been allocated for fields in r-grid format?
351 */
352 bool isAllocatedRGrid_;
353
354 /*
355 * Has memory been allocated for fields in basis format?
356 */
357 bool isAllocatedBasis_;
358
359 /*
360 * Has field data been initialized ?
361 */
362 bool hasData_;
363
364 /*
365 * Are the fields symmetric under space group operations?
366 *
367 * Set true when fields are set using the symmetry adapted basis
368 * format via function setBasis. False by otherwise.
369 */
370 bool isSymmetric_;
371
372 };
373
374 // Inline member functions
375
376 // Get array of all fields in basis format (const)
377 template <int D>
378 inline
380 { return basis_; }
381
382 // Get one field in basis format (const)
383 template <int D>
384 inline
386 { return basis_[id]; }
387
388 // Get all fields in r-grid format (const)
389 template <int D>
390 inline
391 DArray< RField<D> > const &
393 { return rgrid_; }
394
395 // Get one field in r-grid format (const)
396 template <int D>
397 inline
399 { return rgrid_[id]; }
400
401 // Has memory been allocated for fields in r-grid format?
402 template <int D>
404 { return isAllocatedRGrid_; }
405
406 // Has memory been allocated for fields in basis format?
407 template <int D>
409 { return isAllocatedBasis_; }
410
411 // Has field data been initialized ?
412 template <int D>
413 inline bool WFieldContainer<D>::hasData() const
414 { return hasData_; }
415
416 // Are the fields symmetric under space group operations?
417 template <int D>
419 { return isSymmetric_; }
420
421 #ifndef RPC_W_FIELD_CONTAINER_TPP
422 // Suppress implicit instantiation
423 extern template class WFieldContainer<1>;
424 extern template class WFieldContainer<2>;
425 extern template class WFieldContainer<3>;
426 #endif
427
428} // namespace Rpc
429} // namespace Pscf
430#endif
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 container of fields stored in both basis and r-grid format.
void allocate(int nMonomer, int nBasis, IntVec< D > const &dimensions)
Allocate memory for all fields.
void allocateRGrid(IntVec< D > const &dimensions)
Allocate or re-allocate memory for fields in rgrid format.
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?
void readBasis(std::istream &in, UnitCell< D > &unitCell)
Read field component values from input stream, in symmetrized Fourier format.
bool isAllocatedRGrid() const
Has memory been allocated for fields in r-grid format?
void deallocateBasis()
De-allocate fields in basis format.
void allocateBasis(int nBasis)
Allocate or re-allocate memory for fields in basis format.
bool hasData() const
Has field data been set in either format?
void deallocateRGrid()
De-allocate fields in rgrid format.
void setFieldIo(FieldIo< D > const &fieldIo)
Create association with FieldIo (store pointer).
void setRGrid(DArray< RField< D > > const &fields, bool isSymmetric=false)
Set fields values in real-space (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 setBasis(DArray< DArray< double > > const &fields)
Set field component values, in symmetrized Fourier format.
bool isSymmetric() const
Are fields symmetric under all elements of the space group?
DArray< DArray< double > > const & basis() const
Get array of all fields in basis format.
void setNMonomer(int nMonomer)
Set stored value of nMonomer.
Dynamically allocatable contiguous array template.
An object that can read multiple parameters from file.
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.