PSCF v1.2
rpc/fts/compressor/intra/IntraCorrelation.h
1#ifndef RPC_INTRACORRELATION_H
2#define RPC_INTRACORRELATION_H
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 <util/param/ParamComposite.h> // base class
12#include <prdc/cpu/RField.h> // member
13#include <prdc/cpu/RFieldDft.h> // member
14#include <util/containers/DArray.h> // member
15
16namespace Pscf {
17namespace Rpc
18{
19
20 template <int D> class System;
21
22 using namespace Util;
23 using namespace Pscf::Prdc::Cpu;
24
30 template <int D>
31 class IntraCorrelation : public ParamComposite
32 {
33
34 public:
35
41 IntraCorrelation(System<D>& system);
42
47
51 double computeDebye(double x);
52
56 double computeIntraCorrelation(double qSquare);
57
62
63 protected:
64
68 System<D>& system();
69
70 private:
71
73 System<D>* systemPtr_;
74
76 IntVec<D> kMeshDimensions_;
77
79 int kSize_;
80
81 };
82
83 // Get the parent system.
84 template <int D>
86 { return *systemPtr_; }
87
88
89 #ifndef RPC_INTRACORRELATION_TPP
90 // Suppress implicit instantiation
91 extern template class IntraCorrelation<1>;
92 extern template class IntraCorrelation<2>;
93 extern template class IntraCorrelation<3>;
94 #endif
95
96} // namespace Rpc
97} // namespace Pscf
98#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Field of real double precision values on an FFT mesh.
Base class for iterators that impose incompressibility.
double computeDebye(double x)
Compute Debye function.
System< D > & system()
Return reference to parent system.
RField< D > computeIntraCorrelations()
Compute and return intramolecular correlations.
double computeIntraCorrelation(double qSquare)
Compute intramolecular correlation at specific sqSquare.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
An object that can read multiple parameters from file.
Fields and FFTs for periodic boundary conditions (CPU)
Definition CField.cpp:12
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.