1#ifndef RPG_PRED_CORR_BD_STEP_TPP
2#define RPG_PRED_CORR_BD_STEP_TPP
11#include "PredCorrBdStep.h"
13#include <rpg/fts/brownian/BdSimulator.h>
14#include <rpg/fts/compressor/Compressor.h>
15#include <rpg/System.h>
16#include <prdc/cuda/VecOp.h>
17#include <pscf/math/IntVec.h>
18#include <util/random/Random.h>
55 read(in,
"mobility", mobility_);
58 int nMonomer = system().mixture().nMonomer();
59 IntVec<D> meshDimensions = system().domain().mesh().dimensions();
60 wp_.allocate(nMonomer);
61 wf_.allocate(nMonomer);
62 for (
int i=0; i < nMonomer; ++i) {
63 wp_[i].allocate(meshDimensions);
64 wf_[i].allocate(meshDimensions);
66 dci_.allocate(nMonomer-1);
67 eta_.allocate(nMonomer-1);
68 for (
int i=0; i < nMonomer - 1; ++i) {
69 dci_[i].allocate(meshDimensions);
70 eta_[i].allocate(meshDimensions);
72 dwc_.allocate(meshDimensions);
73 dwp_.allocate(meshDimensions);
80 int meshSize = system().domain().mesh().size();
81 int nMonomer = system().mixture().nMonomer();
84 for (
int i=0; i < nMonomer; ++i) {
90 for (
int i=0; i < nMonomer - 1; ++i) {
102 const int nMonomer = system().mixture().nMonomer();
103 const int meshSize = system().domain().mesh().size();
107 simulator().saveState();
110 for (i = 0; i < nMonomer; ++i) {
119 const double vSystem = system().domain().unitCell().volume();
120 double a = -1.0*mobility_;
121 double b = sqrt(2.0*mobility_*
double(meshSize)/vSystem);
128 for (j = 0; j < nMonomer - 1; ++j) {
129 cudaRandom().normal(eta_[j], stddev, mean);
137 for (j = 0; j < nMonomer - 1; ++j) {
138 RField<D> const & dc = simulator().dc(j);
149 for (i = 0; i < nMonomer; ++i) {
150 evec = simulator().chiEvecs(j,i);
156 system().setWRGrid(wp_);
159 bool isConverged =
false;
160 int compress = simulator().compressor().compress();
162 simulator().restoreState();
167 simulator().clearData();
168 simulator().computeWc();
169 simulator().computeCc();
170 simulator().computeDc();
173 RField<D> const & wp = simulator().wc(nMonomer-1);
179 for (i = 0; i < nMonomer; ++i) {
185 for (j = 0; j < nMonomer - 1; ++j) {
186 RField<D> const & dcp = simulator().dc(j);
193 for (i = 0; i < nMonomer; ++i) {
194 evec = simulator().chiEvecs(j,i);
200 system().setWRGrid(wf_);
203 int compress2 = simulator().compressor().compress();
205 simulator().restoreState();
211 simulator().clearState();
212 simulator().clearData();
213 simulator().computeWc();
214 simulator().computeCc();
215 simulator().computeDc();
An IntVec<D, T> is a D-component vector of elements of integer type T.
Field of real double precision values on an FFT mesh.
Brownian dynamics simulator.
BdStep is an abstract base class for Brownian dynamics steps.
virtual void setup()
Setup before simulation.
virtual bool step()
Take a single Brownian dynamics step.
virtual ~PredCorrBdStep()
Destructor.
PredCorrBdStep(BdSimulator< D > &simulator)
Constructor.
virtual void readParameters(std::istream &in)
Read required parameters from file.
#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 eqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector assignment, a[i] = b[i], kernel wrapper (cudaReal).
void addVcVcVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, DeviceArray< cudaReal > const &d, cudaReal const e, DeviceArray< cudaReal > const &f, cudaReal const g)
3-vec addition w coeff, a[i] = (b[i]*c) + (d[i]*e) + (f[i]*g), kernel wrapper.
void subVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector subtraction, a[i] = b[i] - c[i], kernel wrapper (cudaReal).
void addVcVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, DeviceArray< cudaReal > const &d, cudaReal const e)
Vector addition w/ coefficient, a[i] = (b[i]*c) + (d[i]*e), kernel wrapper.
void mulEqS(DeviceArray< cudaReal > &a, cudaReal const b, const int beginIdA, const int n)
Vector multiplication in-place, a[i] *= b, kernel wrapper (cudaReal).
void eqVPair(DeviceArray< cudaReal > &a1, DeviceArray< cudaReal > &a2, DeviceArray< cudaReal > const &s)
Vector assignment in pairs, ax[i] = b[i], kernel wrapper.
void addEqVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c)
Vector addition in-place w/ coefficient, a[i] += b[i] * c, kernel wrapper.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.