PSCF v1.2
|
Block within a branched polymer. More...
#include <Block.h>
Public Member Functions | |
Block () | |
Constructor. | |
~Block () | |
Destructor. | |
void | associate (Mesh< D > const &mesh, FFT< D > const &fft, UnitCell< D > const &cell, WaveList< D > &wavelist) |
Associate this object with a mesh, FFT, UnitCell, and WaveList object. | |
void | allocate (double ds, bool useBatchedFFT=true) |
Allocate internal data containers. | |
void | clearUnitCellData () |
Clear all internal data that depends on lattice parameters. | |
void | setLength (double newLength) |
Set or reset block length. | |
void | setKuhn (double kuhn) |
Set or reset monomer statistical segment length. | |
void | setupSolver (RField< D > const &w) |
Set solver for this block. | |
void | step (RField< D > const &q, RField< D > &qNew) |
Compute step of integration loop, from i to i+1. | |
void | computeConcentration (double prefactor) |
Compute unnormalized concentration for block by integration. | |
void | computeStress (double prefactor) |
Compute derivatives of free energy w/ respect to cell parameters. | |
double | stress (int n) |
Get derivative of free energy w/ respect to a unit cell parameter. | |
Mesh< D > const & | mesh () const |
Return associated spatial Mesh by const reference. | |
FFT< D > const & | fft () const |
Return associated FFT<D> object by const reference. | |
double | ds () const |
Contour length step size. | |
int | ns () const |
Number of contour length steps. | |
void | setId (int id) |
Set the id for this block. | |
void | setVertexIds (int vertexAId, int vertexBId) |
Set indices of associated vertices. | |
void | setMonomerId (int monomerId) |
Set the monomer type id. | |
int | id () const |
Get the id of this block. | |
int | monomerId () const |
Get the monomer type id. | |
const Pair< int > & | vertexIds () const |
Get the pair of associated vertex ids. | |
int | vertexId (int i) const |
Get id of an associated vertex. | |
double | length () const |
Get the length (number of monomers) in this block. | |
![]() | |
BlockTmpl () | |
Constructor. | |
virtual | ~BlockTmpl () |
Destructor. | |
Propagator< D > & | propagator (int directionId) |
Get a Propagator for a specified direction. | |
Propagator< D > const & | propagator (int directionId) const |
Get a const Propagator for a specified direction. | |
Propagator< D >::CField & | cField () |
Get the associated monomer concentration field. | |
Propagator< D >::CField const & | cField () const |
Get the associated const monomer concentration field. | |
double | kuhn () const |
Get monomer statistical segment length. | |
![]() | |
BlockDescriptor () | |
Constructor. | |
virtual | ~BlockDescriptor () |
Destructor. | |
template<class Archive > | |
void | serialize (Archive &ar, unsigned int versionId) |
Serialize to/from archive. | |
void | setId (int id) |
Set the id for this block. | |
void | setVertexIds (int vertexAId, int vertexBId) |
Set indices of associated vertices. | |
void | setMonomerId (int monomerId) |
Set the monomer type id. | |
void | setPolymerType (PolymerType::Enum type) |
Set the polymer type (branched or linear). | |
int | id () const |
Get the id of this block. | |
int | monomerId () const |
Get the monomer type id. | |
const Pair< int > & | vertexIds () const |
Get the pair of associated vertex ids. | |
int | vertexId (int i) const |
Get id of an associated vertex. | |
double | length () const |
Get the length (number of monomers) in this block. | |
PolymerType::Enum | polymerType () const |
Get the type of the parent polymer (branched or linear). | |
Block within a branched polymer.
Derived from BlockTmpl<Propagator<D>>. A BlockTmpl<Propagator<D>> has two Propagator<D> members and is derived from BlockDescriptor.
Definition at line 24 of file rpg/solvers/Propagator.h.
Pscf::Rpg::Block< D >::Block | ( | ) |
Constructor.
Definition at line 153 of file rpg/solvers/Block.tpp.
References Pscf::BlockTmpl< Propagator< D > >::propagator().
Pscf::Rpg::Block< D >::~Block | ( | ) |
Destructor.
Definition at line 176 of file rpg/solvers/Block.tpp.
void Pscf::Rpg::Block< D >::associate | ( | Mesh< D > const & | mesh, |
FFT< D > const & | fft, | ||
UnitCell< D > const & | cell, | ||
WaveList< D > & | wavelist ) |
Associate this object with a mesh, FFT, UnitCell, and WaveList object.
Must be called before allocate().
mesh | Mesh<D> object - spatial discretization mesh |
fft | FFT<D> object - Fourier transforms |
cell | UnitCell<D> object - crystallographic unit cell |
wavelist | WaveList<D> object - properties of wavevectors |
Definition at line 180 of file rpg/solvers/Block.tpp.
References Pscf::Mesh< D >::dimensions(), Pscf::Prdc::Cpu::FFT< D >::isSetup(), Pscf::Prdc::Cpu::FFT< D >::meshDimensions(), Pscf::Prdc::UnitCellBase< D >::nParameter(), Pscf::Mesh< D >::size(), and UTIL_CHECK.
void Pscf::Rpg::Block< D >::allocate | ( | double | ds, |
bool | useBatchedFFT = true ) |
Allocate internal data containers.
associate() must have been called first.
ds | desired (optimal) value for contour length step |
useBatchedFFT | Flag indicating whether to use batched FFTs |
Definition at line 212 of file rpg/solvers/Block.tpp.
References UTIL_CHECK.
void Pscf::Rpg::Block< D >::clearUnitCellData | ( | ) |
Clear all internal data that depends on lattice parameters.
This method changes the internal hasExpKsq_ flag to false, so that the expKsq arrays will need to be recalculated before step() can be called.
Definition at line 272 of file rpg/solvers/Block.tpp.
References UTIL_CHECK.
|
virtual |
Set or reset block length.
newLength | new block length |
Reimplemented from Pscf::BlockDescriptor.
Definition at line 283 of file rpg/solvers/Block.tpp.
References Pscf::BlockDescriptor::setLength(), and UTIL_CHECK.
|
virtual |
Set or reset monomer statistical segment length.
kuhn | new monomer statistical segment length. |
Reimplemented from Pscf::BlockTmpl< Propagator< D > >.
Definition at line 324 of file rpg/solvers/Block.tpp.
void Pscf::Rpg::Block< D >::setupSolver | ( | RField< D > const & | w | ) |
Set solver for this block.
w | chemical potential field for this monomer type |
Definition at line 356 of file rpg/solvers/Block.tpp.
References Pscf::Prdc::Cuda::VecOp::expVc(), and UTIL_CHECK.
void Pscf::Rpg::Block< D >::step | ( | RField< D > const & | q, |
RField< D > & | qNew ) |
Compute step of integration loop, from i to i+1.
q | pointer to slice i of propagator q (input) |
qNew | pointer to slice i+1 of propagator q (output) |
Definition at line 414 of file rpg/solvers/Block.tpp.
References Pscf::Prdc::Cuda::VecOp::mulEqV(), Pscf::Prdc::Cuda::VecOp::mulEqVPair(), Pscf::Prdc::Cuda::VecOp::mulVVPair(), Pscf::Rpg::richardsonEx(), and UTIL_CHECK.
void Pscf::Rpg::Block< D >::computeConcentration | ( | double | prefactor | ) |
Compute unnormalized concentration for block by integration.
Upon return, grid point r of array cField() contains the integral int ds q(r,s)q^{*}(r,L-s) times the prefactor, where q(r,s) is the solution obtained from propagator(0), and q^{*} is the solution of propagator(1), and s is a contour variable that is integrated over the domain 0 < s < length(), where length() is the block length.
prefactor | constant prefactor multiplying integral |
Definition at line 378 of file rpg/solvers/Block.tpp.
References Pscf::Rpg::addEqMulVVc(), Pscf::Prdc::Cuda::VecOp::eqS(), Pscf::Prdc::Cuda::VecOp::mulEqS(), Pscf::Rpg::Propagator< D >::q(), and UTIL_CHECK.
void Pscf::Rpg::Block< D >::computeStress | ( | double | prefactor | ) |
Compute derivatives of free energy w/ respect to cell parameters.
The prefactor is the same as that used in computeConcentration.
prefactor | constant prefactor multiplying integral |
Definition at line 456 of file rpg/solvers/Block.tpp.
References Pscf::Prdc::Cpu::RFieldDft< D >::allocate(), Util::FSArray< T, N >::append(), Pscf::Rpg::Propagator< D >::q(), Pscf::Rpg::Propagator< D >::qAll(), Pscf::Rpg::realMulVConjVV(), Pscf::Prdc::Cuda::Reduce::sum(), and UTIL_CHECK.
|
inline |
Get derivative of free energy w/ respect to a unit cell parameter.
n | unit cell parameter index |
Definition at line 346 of file rpg/solvers/Block.h.
|
inline |
Return associated spatial Mesh by const reference.
Definition at line 351 of file rpg/solvers/Block.h.
References UTIL_ASSERT.
|
inline |
Return associated FFT<D> object by const reference.
Definition at line 359 of file rpg/solvers/Block.h.
References UTIL_ASSERT.
|
inline |
Contour length step size.
Definition at line 341 of file rpg/solvers/Block.h.
|
inline |
Number of contour length steps.
Definition at line 336 of file rpg/solvers/Block.h.
void Pscf::BlockDescriptor::setId | ( | int | id | ) |
Set the id for this block.
id | integer index for this block |
Definition at line 70 of file BlockDescriptor.cpp.
void Pscf::BlockDescriptor::setVertexIds | ( | int | vertexAId, |
int | vertexBId ) |
Set indices of associated vertices.
vertexAId | integer id of vertex A |
vertexBId | integer id of vertex B |
Definition at line 78 of file BlockDescriptor.cpp.
void Pscf::BlockDescriptor::setMonomerId | ( | int | monomerId | ) |
Set the monomer type id.
monomerId | integer id of monomer type |
Definition at line 85 of file BlockDescriptor.cpp.
|
inline |
Get the id of this block.
Definition at line 116 of file BlockDescriptor.h.
|
inline |
Get the monomer type id.
Definition at line 121 of file BlockDescriptor.h.
|
inline |
Get the pair of associated vertex ids.
Definition at line 126 of file BlockDescriptor.h.
|
inline |
Get id of an associated vertex.
i | index of vertex (0 or 1) |
Definition at line 133 of file BlockDescriptor.h.
|
inline |
Get the length (number of monomers) in this block.
Definition at line 138 of file BlockDescriptor.h.