11#include "Propagator.h"
12#include <prdc/cpu/FFT.h>
13#include <prdc/cpu/RField.h>
14#include <prdc/cpu/RFieldDft.h>
15#include <prdc/crystal/UnitCell.h>
16#include <pscf/solvers/BlockTmpl.h>
17#include <pscf/mesh/Mesh.h>
18#include <util/containers/FArray.h>
19#include <util/containers/DMatrix.h>
22 template <
int D>
class Mesh;
24 template <
int D>
class UnitCell;
45 class Block :
public BlockTmpl< Propagator<D> >
204 double stress(
int n)
const;
293 {
return *unitCellPtr_; }
303 void computeExpKsq();
322 {
return stress_[n]; }
341 #ifndef RPC_BLOCK_TPP
double length() const
Get the length (number of monomers) in this block.
int vertexId(int i) const
Get id of an associated vertex.
void setId(int id)
Set the id for this block.
int monomerId() const
Get the monomer type id.
const Pair< int > & vertexIds() const
Get the pair of associated vertex ids.
virtual void setLength(double length)
Set the length of this block.
void setVertexIds(int vertexAId, int vertexBId)
Set indices of associated vertices.
int id() const
Get the id of this block.
void setMonomerId(int monomerId)
Set the monomer type id.
Class template for a block in a block copolymer.
Propagator< D > & propagator(int directionId)
Propagator< D >::CField & cField()
An IntVec<D, T> is a D-component vector of elements of integer type T.
Description of a regular grid of points in a periodic domain.
Fourier transform wrapper.
Fourier transform of a real field on an FFT mesh.
Field of real double precision values on an FFT mesh.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Block within a branched polymer.
void computeStress(double prefactor)
Compute stress contribution for this block.
void setLength(double newLength)
Set or reset block length.
double stress(int n) const
Get derivative of free energy w/ respect to unit cell parameter n.
void setKuhn(double kuhn)
Set or reset monomer statistical segment length.
Mesh< D > const & mesh() const
Get associated spatial Mesh by const reference.
double length() const
Get the length (number of monomers) in this block.
void clearUnitCellData()
Clear all internal data that depends on the unit cell parameters.
void setupSolver(RField< D > const &w)
Set solver for this block.
void allocate(double ds)
Allocate memory and set contour step size.
void associate(Mesh< D > const &mesh, FFT< D > const &fft, UnitCell< D > const &cell)
Initialize discretization and allocate required memory.
void step(RField< D > const &q, RField< D > &qNew)
Compute one step of solution of MDE, from step i to i+1.
double ds() const
Get contour length step size.
int ns() const
Get the number of contour length steps in this block.
FFT< D > const & fft() const
Get associated FFT object by const reference.
void computeConcentration(double prefactor)
Compute concentration (volume fraction) for block by integration.
Dynamically allocated Matrix.
A fixed capacity (static) contiguous array with a variable logical size.
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
Fields and FFTs for periodic boundary conditions (CPU)
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.