1#ifndef RPC_INTRACORRELATION_TPP
2#define RPC_INTRACORRELATION_TPP
11#include "IntraCorrelation.h"
12#include <rpc/System.h>
14#include <pscf/mesh/MeshIterator.h>
15#include <pscf/chem/PolymerType.h>
16#include <prdc/crystal/shiftToMinimum.h>
26 : systemPtr_(&system),
41 return 2.0 * (std::exp(-x) - 1.0 + x) / (x * x);
48 const int np = system().mixture().nPolymer();
49 const double vMonomer = system().mixture().vMonomer();
53 int monomerId;
int nBlock;
54 double phi;
double kuhn;
double length;
55 double totalN;
double avgKuhn;
double g;
double rg2;
57 PolymerType::Enum type;
58 for (
int i = 0; i < np; i++){
59 polymerPtr = &system().mixture().polymer(i);
62 type = polymerPtr->
type();
65 phi = polymerPtr->
phi();
66 nBlock = polymerPtr->
nBlock();
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();
74 avgKuhn += kuhn/nBlock;
76 rg2 = totalN* avgKuhn* avgKuhn /6.0;
77 g = computeDebye(qSquare*rg2);
78 omega += phi*totalN*g/ vMonomer;
88 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
91 for (
int i = 0; i < D; ++i) {
93 kMeshDimensions_[i] = dimensions[i];
94 kSize_ *= dimensions[i];
96 kMeshDimensions_[i] = dimensions[i]/2 + 1;
97 kSize_ *= (dimensions[i]/2 + 1);
103 intraCorrelations.
allocate(kMeshDimensions_);
110 UnitCell<D> const & unitCell = system().domain().unitCell();
113 Gmin = shiftToMinimum(G, dimensions, unitCell);
114 Gsq = unitCell.
ksq(Gmin);
115 intraCorrelations[iter.
rank()] = computeIntraCorrelation(Gsq);
118 return intraCorrelations;
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.
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.
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 one polymer species.
Main class for SCFT or PS-FTS simulation of one system.
double phi() const
Get the overall volume fraction for this species.
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.