PSCF v1.2
rpc/field/Mask.tpp
1#ifndef RPC_MASK_TPP
2#define RPC_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
13namespace Pscf {
14namespace Rpc
15{
16
17 using namespace Util;
18 using namespace Pscf::Prdc;
19 using namespace Pscf::Prdc::Cpu;
20
21 /*
22 * Constructor.
23 */
24 template <int D>
26 : MaskTmpl< D, FieldIo<D>, RField<D> >()
27 {}
28
29 /*
30 * Destructor.
31 */
32 template <int D>
35
36 /*
37 * Return volume fraction of the unit cell occupied by the
38 * polymers/solvents.
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
45 // Sum up elements of r-grid mask field.
46 // Use Kahan summation to reduce accumulation of error
47 double sum(0.0), err(0.0), tempVal, tempSum;
48 int n = rg.capacity();
49 for (int i = 0; i < n; ++i) {
50 tempVal = rg[i] - err;
51 tempSum = sum + tempVal;
52 err = tempSum - sum - tempVal;
53 sum = tempSum;
54 }
55
56 return (sum / ((double)rg.capacity()));
57 }
58
59} // namespace Rpc
60} // namespace Pscf
61#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()
Constructor.
~Mask()
Destructor.
double rGridAverage() const
Calculate the average value of the rgrid_ member.
int capacity() const
Return allocated size.
Definition Array.h:159
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.