PSCF v1.2
rpc/fts/compressor/intra/IntraCorrelation.tpp
1#ifndef RPC_INTRACORRELATION_TPP
2#define RPC_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 <rpc/System.h>
13#include <util/global.h>
14#include <pscf/mesh/MeshIterator.h>
15#include <pscf/chem/PolymerType.h>
16#include <prdc/crystal/shiftToMinimum.h>
17
18namespace Pscf {
19namespace Rpc{
20
21 using namespace Util;
22
23 // Constructor
24 template <int D>
26 : systemPtr_(&system),
27 kSize_(1)
28 { setClassName("IntraCorrelation"); }
29
30 // Destructor
31 template <int D>
34
35 template<int D>
37 {
38 if (x == 0){
39 return 1.0;
40 } else {
41 return 2.0 * (std::exp(-x) - 1.0 + x) / (x * x);
42 }
43 }
44
45 template<int D>
47 {
48 const int np = system().mixture().nPolymer();
49 const double vMonomer = system().mixture().vMonomer();
50
51 // Overall intramolecular correlation
52 double omega = 0;
53 int monomerId; int nBlock;
54 double phi; double kuhn; double length;
55 double totalN; double avgKuhn; double g; double rg2;
56 Polymer<D> const * polymerPtr;
57 PolymerType::Enum type;
58 for (int i = 0; i < np; i++){
59 polymerPtr = &system().mixture().polymer(i);
60
61 // Ensure this function only works for linear polymers
62 type = polymerPtr->type();
63 UTIL_CHECK(type == PolymerType::Linear);
64
65 phi = polymerPtr->phi();
66 nBlock = polymerPtr->nBlock();
67 totalN = 0;
68 avgKuhn = 0;
69 for (int j = 0; j < nBlock; j++) {
70 monomerId = polymerPtr-> block(j).monomerId();
71 kuhn = system().mixture().monomer(monomerId).kuhn();
72 length = polymerPtr-> block(j).length();
73 totalN += length;
74 avgKuhn += kuhn/nBlock;
75 }
76 rg2 = totalN* avgKuhn* avgKuhn /6.0;
77 g = computeDebye(qSquare*rg2);
78 omega += phi*totalN*g/ vMonomer;
79 }
80
81 return omega;
82 }
83
84 template<int D>
86 {
87
88 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
89
90 // Compute Fourier space kMeshDimensions_
91 for (int i = 0; i < D; ++i) {
92 if (i < D - 1) {
93 kMeshDimensions_[i] = dimensions[i];
94 kSize_ *= dimensions[i];
95 } else {
96 kMeshDimensions_[i] = dimensions[i]/2 + 1;
97 kSize_ *= (dimensions[i]/2 + 1);
98 }
99 }
100
101 // Define IntraCorrelations
102 RField<D> intraCorrelations;
103 intraCorrelations.allocate(kMeshDimensions_);
104
105 // Iterator over k-grid points
106 MeshIterator<D> iter;
107 iter.setDimensions(kMeshDimensions_);
108 IntVec<D> G, Gmin;
109 double Gsq;
110 UnitCell<D> const & unitCell = system().domain().unitCell();
111 for (iter.begin(); !iter.atEnd(); ++iter) {
112 G = iter.position();
113 Gmin = shiftToMinimum(G, dimensions, unitCell);
114 Gsq = unitCell.ksq(Gmin);
115 intraCorrelations[iter.rank()] = computeIntraCorrelation(Gsq);
116 }
117
118 return intraCorrelations;
119 }
120
121}
122}
123#endif
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.
virtual double ksq(IntVec< D > const &k) const
Compute square magnitude of reciprocal lattice vector.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
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 one polymer species.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
double phi() const
Get the overall volume fraction for this species.
Definition Species.h:90
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.