12#include <prdc/cuda/resources.h>
46 readOptional(in,
"useBatchedFFT", useBatchedFFT_);
73 for (i = 0; i < nPolymer(); ++i) {
74 polymer(i).setNParams(nParams_);
75 for (j = 0; j < polymer(i).nBlock(); ++j) {
76 polymer(i).block(j).associate(mesh, fft, cell, wavelist);
82 for (
int i = 0; i < nSolvent(); ++i) {
83 solvent(i).associate(mesh);
102 for (i = 0; i < nPolymer(); ++i) {
103 for (j = 0; j < polymer(i).nBlock(); ++j) {
104 polymer(i).block(j).allocate(ds_, useBatchedFFT_);
109 if (nSolvent() > 0) {
110 for (
int i = 0; i < nSolvent(); ++i) {
111 solvent(i).allocate();
122 for (
int i = 0; i < nPolymer(); ++i) {
123 for (
int j = 0; j < polymer(i).nBlock(); ++j) {
124 polymer(i).block(j).clearUnitCellData();
137 monomer(monomerId).setKuhn(kuhn);
140 for (
int i = 0; i < nPolymer(); ++i) {
141 for (
int j = 0; j < polymer(i).nBlock(); ++j) {
142 if (monomerId == polymer(i).block(j).monomerId()) {
143 polymer(i).block(j).setKuhn(kuhn);
165 int nMesh = mesh().size();
170 for (i = 0; i < nm; ++i) {
177 for (i = 0; i < nPolymer(); ++i) {
178 polymer(i).compute(wFields, phiTot);
183 for (i = 0; i < nPolymer(); ++i) {
184 for (j = 0; j < polymer(i).nBlock(); ++j) {
185 monomerId = polymer(i).block(j).monomerId();
188 RField<D>& monomerField = cFields[monomerId];
189 RField<D>& blockField = polymer(i).block(j).cField();
196 for (i = 0; i < nSolvent(); i++) {
197 monomerId = solvent(i).monomerId();
202 solvent(i).compute(wFields[monomerId], phiTot);
205 RField<D>& monomerField = cFields[monomerId];
206 RField<D> const & solventField = solvent(i).cField();
225 for (i = 0; i < nPolymer(); ++i) {
226 polymer(i).computeStress();
230 for (i = 0; i < nParams_; ++i) {
232 for (j = 0; j < nPolymer(); ++j) {
233 stress_[i] += polymer(j).stress(i);
238 for (i = 0; i < nParams_; ++i) {
239 stress_[i] /= phiTot;
255 for (
int i = 0; i < nPolymer(); ++i) {
256 if (polymer(i).ensemble() == Species::Open) {
261 for (
int i = 0; i < nSolvent(); ++i) {
262 if (solvent(i).ensemble() == Species::Open) {
280 int np = nSolvent() + nBlock();
281 int nx = mesh().size();
284 UTIL_CHECK(blockCFields.capacity() == nBlock() + nSolvent());
287 for (i = 0; i < np; ++i) {
295 if (nPolymer() > 0) {
298 for (i = 0; i < nPolymer(); ++i) {
299 for (j = 0; j < polymer(i).nBlock(); ++j) {
304 UTIL_CHECK(blockCFields[sectionId].capacity() == nx);
306 blockCFields[sectionId] = polymer(i).block(j).cField();
312 if (nSolvent() > 0) {
315 for (i = 0; i < nSolvent(); ++i) {
320 UTIL_CHECK(blockCFields[sectionId].capacity() == nx);
322 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.
void compute(DArray< RField< D > > const &wFields, DArray< RField< D > > &cFields, double phiTot=1.0)
Compute partition functions and concentrations.
void allocate()
Allocate internal data containers in all solvers.
void createBlockCRGrid(DArray< RField< D > > &blockCFields) const
Combine cFields for each block/solvent into one DArray.
void computeStress(double phiTot=1.0)
Compute derivatives of free energy w/ respect to cell parameters.
void associate(Mesh< D > const &mesh, FFT< D > const &fft, UnitCell< D > const &cell, WaveList< D > &wavelist)
Create associations with a mesh, FFT, UnitCell, and WaveList object.
void readParameters(std::istream &in)
Read all parameters and initialize.
void clearUnitCellData()
Clear data that depends on lattice parameters in all solvers.
bool isCanonical()
Is the ensemble canonical (i.e, closed for all species)?
void setKuhn(int monomerId, double kuhn)
Reset statistical segment length for one monomer type.
Class to calculate and store properties of wavevectors.
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.
void addEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector addition in-place, a[i] += b[i], kernel wrapper (cudaReal).
void eqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector assignment, a[i] = b, kernel wrapper (cudaReal).
PSCF package top-level namespace.