PSCF v1.2
rpg/fts/compressor/intra/IntraCorrelation.h
1#ifndef RPG_INTRACORRELATION_H
2#define RPG_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/cuda/RField.h> // member
13#include <prdc/cuda/RFieldDft.h> // member
14#include <util/containers/DArray.h> // member
15
16namespace Pscf {
17namespace Rpg
18{
19
20 template <int D> class System;
21
22 using namespace Util;
23 using namespace Pscf::Prdc;
24 using namespace Pscf::Prdc::Cuda;
25
31 template <int D>
32 class IntraCorrelation : public ParamComposite
33 {
34
35 public:
36
42 IntraCorrelation(System<D>& system);
43
48
52 double computeDebye(double x);
53
57 double computeIntraCorrelation(double qSquare);
58
63
64 protected:
65
69 System<D>& system();
70
71 private:
72
74 System<D>* systemPtr_;
75
77 IntVec<D> kMeshDimensions_;
78
80 int kSize_;
81
82 };
83
84 // Get the parent system.
85 template <int D>
87 { return *systemPtr_; }
88
89
90 #ifndef RPG_INTRACORRELATION_TPP
91 // Suppress implicit instantiation
92 extern template class IntraCorrelation<1>;
93 extern template class IntraCorrelation<2>;
94 extern template class IntraCorrelation<3>;
95 #endif
96
97} // namespace Rpg
98} // namespace Pscf
99#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 calculations that represent one system.
Definition rpg/System.h:107
An object that can read multiple parameters from file.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.