PSCF v1.2
rpg/field/Mask.tpp
1#ifndef RPG_MASK_TPP
2#define RPG_MASK_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 "Mask.h"
12#include <prdc/cuda/Reduce.h>
13
14namespace Pscf {
15namespace Rpg
16{
17
18 using namespace Util;
19 using namespace Pscf::Prdc;
20 using namespace Pscf::Prdc::Cuda;
21
22 /*
23 * Constructor.
24 */
25 template <int D>
27 : MaskTmpl< D, FieldIo<D>, RField<D> >()
28 {}
29
30 /*
31 * Destructor.
32 */
33 template <int D>
36
37 /*
38 * Calculate the average value of the rgrid_ member.
39 */
40 template <int D>
41 double Mask<D>::rGridAverage() const
42 {
43 RField<D> const & rg = MaskTmpl< D, FieldIo<D>, RField<D> >::rgrid();
44 return (Reduce::sum(rg) / ((double)rg.capacity()));
45 }
46
47} // namespace Rpg
48} // namespace Pscf
49#endif
Field of real double precision values on an FFT mesh.
Container for a field to which the total density is constrained.
Definition MaskTmpl.h:62
File input/output operations and format conversions for fields.
~Mask()
Destructor.
double rGridAverage() const
Calculate the average value of the rgrid_ member.
Mask()
Constructor.
int capacity() const
Return allocated size.
Definition Array.h:159
cudaReal sum(DeviceArray< cudaReal > const &in)
Compute sum of array elements (GPU kernel wrapper).
Definition Reduce.cu:480
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.