1#ifndef PRDC_CPU_FIELD_BASIS_CONVERTER_TPP
2#define PRDC_CPU_FIELD_BASIS_CONVERTER_TPP
11#include "FieldBasisConverter.h"
12#include <prdc/cpu/RField.h>
13#include <prdc/cpu/RFieldDft.h>
14#include <util/containers/DArray.h>
71 double maxError = 0.0;
73 for (i = 0; i < nMonomer_; ++i) {
74 for (j = 0; j <= i; ++j) {
76 for (k = 0; k < nMonomer_; ++k) {
77 error += basis_(i,k)*basis_(j,k);
80 error = error - normSq;
82 error = std::abs(error);
83 if (error > maxError) {
98 double prefactor)
const
106 int meshSize = in[0].capacity();
107 for (
int i=0; i < nMonomer_; ++i) {
116 for (i = 0; i < nMonomer_; ++i) {
120 for (k = 0; k < meshSize; ++k) {
125 for (j = 0; j < nMonomer_; ++j) {
126 vec = basis_(i, j)*prefactor;
128 for (k = 0; k < meshSize; ++k) {
144 double prefactor)
const
152 int meshSize = in[0].capacity();
153 for (
int i=0; i < nMonomer_; ++i) {
162 for (i = 0; i < nMonomer_; ++i) {
166 for (k = 0; k < meshSize; ++k) {
171 for (j = 0; j < nMonomer_; ++j) {
172 vec = basis_(j, i)*prefactor;
175 for (k = 0; k < meshSize; ++k) {
FieldBasisConverter()
Default constructor.
void convertToBasis(DArray< RField< D > > const &in, DArray< RField< D > > &out, double prefactor=1.0) const
Convert a set of monomer fields to field basis components.
void setBasis(DMatrix< double > basis)
Set or reset the basis after construction.
double maxBasisError(double normSq=1.0) const
Check validity (orthogonality and normalization) of the basis.
virtual ~FieldBasisConverter()
Destructor.
void convertFromBasis(DArray< RField< D > > const &in, DArray< RField< D > > &out, double prefactor=1.0) const
Convert a set of field basis components to monomer fields.
Field of real double precision values on an FFT mesh.
Dynamically allocatable contiguous array template.
Dynamically allocated Matrix.
bool isAllocated() const
Return true if the DMatrix has been allocated, false otherwise.
int capacity2() const
Get number of columns (range of the second array index).
int capacity1() const
Get number of rows (range of the first array index).
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
PSCF package top-level namespace.
Utility classes for scientific computation.