12#include <prdc/cpu/RField.h>
13#include <pscf/mesh/Mesh.h>
21 using namespace Prdc::Cpu;
69 for (i = 0; i < nPolymer(); ++i) {
70 polymer(i).setNParams(nParam_);
71 for (j = 0; j < polymer(i).nBlock(); ++j) {
72 polymer(i).block(j).associate(mesh, fft, cell);
79 for (
int i = 0; i < nSolvent(); ++i) {
80 solvent(i).associate(mesh);
100 if (nPolymer() > 0) {
102 for (i = 0; i < nPolymer(); ++i) {
103 for (j = 0; j < polymer(i).nBlock(); ++j) {
104 polymer(i).block(j).allocate(ds_);
110 if (nSolvent() > 0) {
111 for (
int i = 0; i < nSolvent(); ++i) {
112 solvent(i).allocate();
124 if (nPolymer() > 0) {
125 for (
int i = 0; i < nPolymer(); ++i) {
126 polymer(i).clearUnitCellData();
139 monomer(monomerId).setKuhn(kuhn);
142 for (
int i = 0; i < nPolymer(); ++i) {
143 for (
int j = 0; j < polymer(i).nBlock(); ++j) {
144 Block<D>& block = polymer(i).block(j);
168 int meshSize = mesh().size();
173 for (i = 0; i < nm; ++i) {
174 UTIL_CHECK(cFields[i].capacity() == meshSize);
175 UTIL_CHECK(wFields[i].capacity() == meshSize);
176 for (j = 0; j < meshSize; ++j) {
183 for (i = 0; i < nPolymer(); ++i) {
184 polymer(i).compute(wFields, phiTot);
189 for (i = 0; i < nPolymer(); ++i) {
190 for (j = 0; j < polymer(i).nBlock(); ++j) {
191 monomerId = polymer(i).block(j).monomerId();
194 RField<D>& monomerField = cFields[monomerId];
195 RField<D> const & blockField = polymer(i).block(j).cField();
197 for (k = 0; k < meshSize; ++k) {
198 monomerField[k] += blockField[k];
205 for (i = 0; i < nSolvent(); ++i) {
206 monomerId = solvent(i).monomerId();
211 solvent(i).compute(wFields[monomerId], phiTot);
214 RField<D>& monomerField = cFields[monomerId];
215 RField<D> const & solventField = solvent(i).cField();
217 for (k = 0; k < meshSize; ++k) {
218 monomerField[k] += solventField[k];
235 for (i = 0; i < 6; ++i) {
239 if (nPolymer() > 0) {
242 for (i = 0; i < nPolymer(); ++i) {
243 polymer(i).computeStress();
247 for (i = 0; i < nParam_; ++i) {
248 for (j = 0; j < nPolymer(); ++j) {
249 stress_[i] += polymer(j).stress(i);
257 for (i = 0; i < nParam_; ++i) {
258 stress_[i] /= phiTot;
271 for (
int i = 0; i < nPolymer(); ++i) {
272 if (polymer(i).ensemble() == Species::Open) {
277 for (
int i = 0; i < nSolvent(); ++i) {
278 if (solvent(i).ensemble() == Species::Open) {
294 int np = nSolvent() + nBlock();
296 int nx = mesh().size();
302 if (!blockCFields.isAllocated()) {
303 blockCFields.allocate(np);
306 for (i = 0; i < np; ++i) {
307 if (!blockCFields[i].isAllocated()) {
308 blockCFields[i].allocate(mesh().dimensions());
311 for (j = 0; j < nx; ++j) {
312 blockCFields[i][j] = 0.0;
320 if (nPolymer() > 0) {
321 for (i = 0; i < nPolymer(); ++i) {
322 for (j = 0; j < polymer(i).nBlock(); ++j) {
326 blockCFields[sectionId] = polymer(i).block(j).cField();
334 if (nSolvent() > 0) {
335 for (i = 0; i < nSolvent(); ++i) {
339 blockCFields[sectionId] = solvent(i).cField();
Description of a regular grid of points in a periodic domain.
IntVec< D > dimensions() const
Get an IntVec<D> of the grid dimensions.
int size() const
Get total number of grid points.
A mixture of polymer and solvent species.
Fourier transform wrapper.
bool isSetup() const
Has this FFT object been setup?
IntVec< D > const & meshDimensions() const
Return the dimensions of the grid for which this was setup.
Field of real double precision values on an FFT mesh.
int nParameter() const
Get the number of parameters in the unit cell.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Block within a branched polymer.
void setKuhn(double kuhn)
Set or reset monomer statistical segment length.
int monomerId() const
Get the monomer type id.
void associate(Mesh< D > const &mesh, FFT< D > const &fft, UnitCell< D > const &cell)
Create an association with a mesh and fft, and allocate memory.
bool isCanonical()
Is this mixture being treated in canonical ensemble?
void compute(DArray< RField< D > > const &wFields, DArray< RField< D > > &cFields, double phiTot=1.0)
Compute partition functions and concentrations.
void allocate()
Allocate required internal memory for all solvers.
void readParameters(std::istream &in)
Read all parameters and initialize.
void setKuhn(int monomerId, double kuhn)
Reset statistical segment length for one monomer type.
void computeStress(double phiTot=1.0)
Compute derivatives of free energy w/ respect to cell parameters.
void createBlockCRGrid(DArray< RField< D > > &blockCFields) const
Get c-fields for all blocks and solvents as array of r-grid fields.
void clearUnitCellData()
Clear all data in solvers that depends on the unit cell parameters.
int capacity() const
Return allocated size.
Dynamically allocatable contiguous array template.
void setClassName(const char *className)
Set class name string.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
PSCF package top-level namespace.