1#ifndef RPG_INTRACORRELATION_TPP
2#define RPG_INTRACORRELATION_TPP
11#include "IntraCorrelation.h"
12#include <rpg/System.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>
28 : systemPtr_(&system),
43 return 2.0 * (std::exp(-x) - 1.0 + x) / (x * x);
50 const int np = system().mixture().nPolymer();
51 const double vMonomer = system().mixture().vMonomer();
55 int monomerId;
int nBlock;
56 double phi;
double kuhn;
double length;
57 double totalN;
double avgKuhn;
double g;
double rg2;
59 PolymerType::Enum type;
60 for (
int i = 0; i < np; i++){
61 polymerPtr = &system().mixture().polymer(i);
64 type = polymerPtr->
type();
67 phi = polymerPtr->
phi();
68 nBlock = polymerPtr->
nBlock();
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();
76 avgKuhn += kuhn/nBlock;
78 rg2 = totalN* avgKuhn* avgKuhn /6.0;
79 g = computeDebye(qSquare*rg2);
80 omega += phi*totalN*g/ vMonomer;
90 IntVec<D> const & dimensions = system().mesh().dimensions();
94 for (
int i = 0; i < D; ++i) {
96 kMeshDimensions_[i] = dimensions[i];
97 kSize_ *= dimensions[i];
99 kMeshDimensions_[i] = dimensions[i]/2 + 1;
100 kSize_ *= (dimensions[i]/2 + 1);
106 intraCorrelations.
allocate(kMeshDimensions_);
119 Gmin = shiftToMinimum(G, system().mesh().dimensions(),
120 system().unitCell());
121 Gsq = system().unitCell().ksq(Gmin);
122 hostField[iter.
rank()] = (cudaReal) computeIntraCorrelation(Gsq);
126 intraCorrelations = hostField;
128 return intraCorrelations;
Template for dynamic array stored in host CPU memory.
An IntVec<D, T> is a D-component vector of elements of integer type T.
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.
IntraCorrelation(System< D > &system)
Constructor.
~IntraCorrelation()
Destructor.
Descriptor and solver for a branched polymer species.
Main class for calculations that represent one system.
double phi() const
Get the overall volume fraction for this species.
void allocate(int capacity)
Allocate the underlying C array.
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.
PSCF package top-level namespace.
Utility classes for scientific computation.