PSCF v1.2
FieldBasisConverter.h
1#ifndef PRDC_CPU_FIELD_BASIS_CONVERTER_H
2#define PRDC_CPU_FIELD_BASIS_CONVERTER_H
3
4/*
5* PSCF Package
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 <util/containers/DMatrix.h> // member
12
13namespace Util {
14 template <typename T> class DArray;
15}
16
17namespace Pscf {
18namespace Prdc {
19namespace Cpu {
20
21 template <int D> class RField;
22 template <int D> class RFieldDft;
23
24 using namespace Util;
25
43 template <int D>
45 {
46
47 public:
48
53
71
75 virtual ~FieldBasisConverter();
76
85 void setBasis(DMatrix<double> basis);
86
98 double maxBasisError(double normSq = 1.0) const;
99
113 void convertToBasis(DArray< RField<D> > const & in,
114 DArray< RField<D> > & out,
115 double prefactor = 1.0) const;
116
130 void convertFromBasis(DArray< RField<D> > const & in,
131 DArray< RField<D> > & out,
132 double prefactor = 1.0) const;
133
137 int nMonomer() const
138 { return nMonomer_; }
139
143 bool hasBasis() const
144 { return (nMonomer_ > 0); }
145
146 private:
147
156 DMatrix<double> basis_;
157
161 int nMonomer_;
162
163 };
164
165 #ifndef PRDC_CPU_FIELD_BASIS_CONVERTER_TPP
166 // Suppress implicit instantiation
167 extern template class FieldBasisConverter<1>;
168 extern template class FieldBasisConverter<2>;
169 extern template class FieldBasisConverter<3>;
170 #endif
171
172} // namespace Pscf::Prdc::Cpu
173} // namespace Pscf::Prdc
174} // namespace Pscf
175#endif
Tool for conversion of fields to a basis in composition space.
bool hasBasis() const
Has a basis been initialized?
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.
int nMonomer() const
Return the number of monomer types (dimension of basis).
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.
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.
Definition DMatrix.h:25
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.