PSCF v1.2
cpu/RFieldDftComparison.tpp
1#ifndef PRDC_K_FIELD_COMPARISON_TPP
2#define PRDC_K_FIELD_COMPARISON_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 "RFieldDftComparison.h"
12#include <cmath>
13
14namespace Pscf {
15namespace Prdc {
16namespace Cpu {
17
18 // Default Constructor
19 template <int D>
21 : maxDiff_(0.0),
22 rmsDiff_(0.0)
23 {};
24
25 // Comparator for individual fields.
26 template <int D>
27 double
29 {
30 UTIL_CHECK(a.capacity() > 0);
31 UTIL_CHECK(a.capacity() == b.capacity());
32 int n = a.capacity();
33 double diffSq, diff, d0, d1;
34 maxDiff_ = 0.0;
35 rmsDiff_ = 0.0;
36 for (int i = 0; i < n; ++i) {
37 d0 = a[i][0] - b[i][0];
38 d1 = a[i][1] - b[i][1];
39 diffSq = d0*d0 + d1*d1;
40 diff = sqrt(diffSq);
41 if (std::isnan(diff)) {
42 // If either field has a NaN component, set error to very
43 // high value and exit the function
44 maxDiff_ = 1e8;
45 rmsDiff_ = 1e8;
46 return maxDiff_;
47 } else if (diff > maxDiff_) {
48 maxDiff_ = diff;
49 }
50 rmsDiff_ += diffSq;
51 //std::cout << i
52 // << " " << a[i][0] << " " << a[i][1]
53 // << " " << b[i][0] << " " << b[i][1]
54 // << " " << diff << std::endl;
55 }
56 rmsDiff_ = rmsDiff_/double(n);
57 rmsDiff_ = sqrt(rmsDiff_);
58 return maxDiff_;
59 }
60
61 // Comparator for arrays of fields
62 template <int D>
64 DArray< RFieldDft<D> > const & b)
65 {
66 UTIL_CHECK(a.capacity() > 0);
67 UTIL_CHECK(a.capacity() == b.capacity());
68 UTIL_CHECK(a[0].capacity() > 0);
69 int m = a.capacity();
70 double diffSq, diff, d0, d1;
71 maxDiff_ = 0.0;
72 rmsDiff_ = 0.0;
73 int i, j, n;
74 for (i = 0; i < m; ++i) {
75 n = a[i].capacity();
76 UTIL_CHECK(n > 0);
77 UTIL_CHECK(n == b[i].capacity());
78 for (j = 0; j < n; ++j) {
79 d0 = a[i][j][0] - b[i][j][0];
80 d1 = a[i][j][1] - b[i][j][1];
81 diffSq = d0*d0 + d1*d1;
82 diff = sqrt(diffSq);
83 if (std::isnan(diff)) {
84 // If either field has a NaN component, set error to very
85 // high value and exit the function
86 maxDiff_ = 1e8;
87 rmsDiff_ = 1e8;
88 return maxDiff_;
89 } else if (diff > maxDiff_) {
90 maxDiff_ = diff;
91 }
92 rmsDiff_ += diffSq;
93 }
94 }
95 rmsDiff_ = rmsDiff_/double(m*n);
96 rmsDiff_ = sqrt(rmsDiff_);
97 return maxDiff_;
98 }
99
100}
101}
102}
103#endif
double compare(RFieldDft< D > const &a, RFieldDft< D > const &b)
Compare individual fields.
Fourier transform of a real field on an FFT mesh.
int capacity() const
Return allocated size.
Definition Array.h:159
Dynamically allocatable contiguous array template.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1