PSCF v1.2
rpg/fts/compressor/intra/IntraCorrelation.tpp
1#ifndef RPG_INTRACORRELATION_TPP
2#define RPG_INTRACORRELATION_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 "IntraCorrelation.h"
12#include <rpg/System.h>
13#include <util/global.h>
14#include <pscf/mesh/MeshIterator.h>
15#include <pscf/iterator/NanException.h>
16#include <pscf/chem/PolymerType.h>
17#include <pscf/cuda/HostDArray.h>
18#include <prdc/crystal/shiftToMinimum.h>
19
20namespace Pscf {
21namespace Rpg{
22
23 using namespace Util;
24
25 // Constructor
26 template <int D>
28 : systemPtr_(&system),
29 kSize_(1)
30 { setClassName("IntraCorrelation"); }
31
32 // Destructor
33 template <int D>
36
37 template<int D>
39 {
40 if (x == 0){
41 return 1.0;
42 } else {
43 return 2.0 * (std::exp(-x) - 1.0 + x) / (x * x);
44 }
45 }
46
47 template<int D>
49 {
50 const int np = system().mixture().nPolymer();
51 const double vMonomer = system().mixture().vMonomer();
52
53 // Overall intramolecular correlation
54 double omega = 0;
55 int monomerId; int nBlock;
56 double phi; double kuhn; double length;
57 double totalN; double avgKuhn; double g; double rg2;
58 Polymer<D> const * polymerPtr;
59 PolymerType::Enum type;
60 for (int i = 0; i < np; i++){
61 polymerPtr = &system().mixture().polymer(i);
62
63 // Ensure this function only works for linear polymers
64 type = polymerPtr->type();
65 UTIL_CHECK(type == PolymerType::Linear);
66
67 phi = polymerPtr->phi();
68 nBlock = polymerPtr->nBlock();
69 totalN = 0;
70 avgKuhn = 0;
71 for (int j = 0; j < nBlock; j++) {
72 monomerId = polymerPtr-> block(j).monomerId();
73 kuhn = system().mixture().monomer(monomerId).kuhn();
74 length = polymerPtr-> block(j).length();
75 totalN += length;
76 avgKuhn += kuhn/nBlock;
77 }
78 rg2 = totalN* avgKuhn* avgKuhn /6.0;
79 g = computeDebye(qSquare*rg2);
80 omega += phi*totalN*g/ vMonomer;
81 }
82
83 return omega;
84 }
85
86 template<int D>
88 {
89
90 IntVec<D> const & dimensions = system().mesh().dimensions();
91
92 // Compute Fourier space kMeshDimensions_
93 kSize_ = 1;
94 for (int i = 0; i < D; ++i) {
95 if (i < D - 1) {
96 kMeshDimensions_[i] = dimensions[i];
97 kSize_ *= dimensions[i];
98 } else {
99 kMeshDimensions_[i] = dimensions[i]/2 + 1;
100 kSize_ *= (dimensions[i]/2 + 1);
101 }
102 }
103
104 // Define IntraCorrelations.
105 RField<D> intraCorrelations;
106 intraCorrelations.allocate(kMeshDimensions_);
107
108 // CudaReal array
109 HostDArray<cudaReal> hostField;
110 hostField.allocate(kSize_);
111
112 // Define iterator
113 MeshIterator<D> iter;
114 iter.setDimensions(kMeshDimensions_);
115 IntVec<D> G, Gmin;
116 double Gsq;
117 for (iter.begin(); !iter.atEnd(); ++iter) {
118 G = iter.position();
119 Gmin = shiftToMinimum(G, system().mesh().dimensions(),
120 system().unitCell());
121 Gsq = system().unitCell().ksq(Gmin);
122 hostField[iter.rank()] = (cudaReal) computeIntraCorrelation(Gsq);
123 }
124
125 // Copy to device (gpu) memory
126 intraCorrelations = hostField;
127
128 return intraCorrelations;
129 }
130
131}
132}
133#endif
Template for dynamic array stored in host CPU memory.
Definition HostDArray.h:43
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Iterator over points in a Mesh<D>.
int rank() const
Get the rank of current element.
void begin()
Set iterator to the first point in the mesh.
bool atEnd() const
Is this the end (i.e., one past the last point)?
void setDimensions(const IntVec< D > &dimensions)
Set the grid dimensions in all directions.
IntVec< D > position() const
Get current position in the grid, as integer vector.
int nBlock() const
Number of blocks.
double length() const
Sum of the lengths of all blocks in the polymer.
PolymerType::Enum type() const
Get Polymer type (Branched or Linear)
Field of real double precision values on an FFT mesh.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
double computeDebye(double x)
Compute Debye function.
RField< D > computeIntraCorrelations()
Compute and return intramolecular correlations.
double computeIntraCorrelation(double qSquare)
Compute intramolecular correlation at specific sqSquare.
Descriptor and solver for a branched polymer species.
Main class for calculations that represent one system.
Definition rpg/System.h:107
double phi() const
Get the overall volume fraction for this species.
Definition Species.h:90
void allocate(int capacity)
Allocate the underlying C array.
Definition DArray.h:199
void setClassName(const char *className)
Set class name string.
File containing preprocessor macros for error handling.
#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
Utility classes for scientific computation.