11#include "Propagator.h"
12#include <prdc/cuda/RField.h>
13#include <prdc/cuda/RFieldDft.h>
14#include <prdc/cuda/FFT.h>
15#include <prdc/cuda/FFTBatched.h>
16#include <rpg/solvers/WaveList.h>
17#include <prdc/crystal/UnitCell.h>
18#include <pscf/solvers/BlockTmpl.h>
19#include <util/containers/FSArray.h>
23 template <
int D>
class Mesh;
79 class Block :
public BlockTmpl< Propagator<D> >
115 void allocate(
double ds,
bool useBatchedFFT =
true);
290 WaveList<D> * waveListPtr_;
318 {
return *unitCellPtr_; }
321 WaveList<D>
const & wavelist()
const
322 {
return *waveListPtr_; }
328 void computeExpKsq();
347 {
return stress_[n]; }
365 #ifndef RPG_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()
Dynamic array on the GPU device with aligned data.
Template for dynamic array stored in host CPU memory.
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.
Field of real double precision values on an FFT mesh.
Batched Fourier transform wrapper for real data.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Block within a branched polymer.
void setLength(double newLength)
Set or reset block length.
double ds() const
Contour length step size.
void computeConcentration(double prefactor)
Compute unnormalized concentration for block by integration.
double length() const
Get the length (number of monomers) in this block.
void allocate(double ds, bool useBatchedFFT=true)
Allocate internal data containers.
Mesh< D > const & mesh() const
Return associated spatial Mesh by const reference.
void setKuhn(double kuhn)
Set or reset monomer statistical segment length.
int ns() const
Number of contour length steps.
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 computeStress(double prefactor)
Compute derivatives of free energy w/ respect to cell parameters.
void setupSolver(RField< D > const &w)
Set solver for this block.
double stress(int n)
Get derivative of free energy w/ respect to a unit cell parameter.
void step(RField< D > const &q, RField< D > &qNew)
Compute step of integration loop, from i to i+1.
void clearUnitCellData()
Clear all internal data that depends on lattice parameters.
FFT< D > const & fft() const
Return associated FFT<D> object by const reference.
MDE solver for one-direction of one block.
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, FFTs, and utilities for periodic boundary conditions (CUDA)
Periodic fields and crystallography.
void richardsonEx(DeviceArray< cudaReal > &qNew, DeviceArray< cudaReal > const &qr, DeviceArray< cudaReal > const &qr2, DeviceArray< cudaReal > const &expW2)
Performs qNew = (4 * (qr2 * expW2) - qr) / 3 elementwise, kernel wrapper.
void realMulVConjVV(DeviceArray< cudaReal > &a, DeviceArray< cudaComplex > const &b, DeviceArray< cudaComplex > const &c, DeviceArray< cudaReal > const &d)
Element-wise calculation of a = real(b * conj(c) * d), kernel wrapper.
void addEqMulVVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, cudaReal const d)
Performs a[i] += b[i] * c[i] * d, kernel wrapper.
PSCF package top-level namespace.
Utility classes for scientific computation.