1#ifndef RPC_PROPAGATOR_TPP
2#define RPC_PROPAGATOR_TPP
11#include "Propagator.h"
14#include <pscf/mesh/Mesh.h>
49 qFields_.allocate(ns);
50 for (
int i = 0; i < ns; ++i) {
67 qFields_.deallocate();
78 qFields_.allocate(ns);
79 for (
int i = 0; i < ns; ++i) {
80 qFields_[i].allocate(meshPtr_->dimensions());
98 int nx = meshPtr_->size();
99 for (ix = 0; ix < nx; ++ix) {
104 for (
int is = 0; is < nSource(); ++is) {
105 if (!source(is).isSolved()) {
106 UTIL_THROW(
"Source not solved in computeHead");
108 QField const& qt = source(is).tail();
109 for (ix = 0; ix < nx; ++ix) {
123 for (
int iStep = 0; iStep < ns_ - 1; ++iStep) {
124 block().step(qFields_[iStep], qFields_[iStep + 1]);
135 int nx = meshPtr_->size();
140 for (
int i = 0; i < nx; ++i) {
145 for (
int iStep = 0; iStep < ns_ - 1; ++iStep) {
146 block().step(qFields_[iStep], qFields_[iStep + 1]);
164 if (!partner().isSolved()) {
165 UTIL_THROW(
"Partner propagator is not solved");
167 QField const& qh = head();
168 QField const& qt = partner().tail();
169 int nx = meshPtr_->size();
175 for (
int i =0; i < nx; ++i) {
Description of a regular grid of points in a periodic domain.
IntVec< D > dimensions() const
Get an IntVec<D> of the grid dimensions.
Field of real double precision values on an FFT mesh.
void solve()
Solve the modified diffusion equation (MDE) for this block.
void allocate(int ns, const Mesh< D > &mesh)
Allocate memory used by this propagator.
void reallocate(int ns)
Reallocate memory used by this propagator.
void computeHead()
Compute initial QField at head from tail QFields of sources.
double computeQ()
Compute and return partition function for the polymer.
int capacity() const
Return allocated size.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
PSCF package top-level namespace.
Utility classes for scientific computation.