1#ifndef RPG_FOURIER_MOVE_TPP
2#define RPG_FOURIER_MOVE_TPP
11#include "FourierMove.h"
13#include <rpg/fts/VecOpFts.h>
14#include <rpg/System.h>
15#include <prdc/crystal/shiftToMinimum.h>
16#include <prdc/cuda/resources.h>
17#include <pscf/mesh/MeshIterator.h>
18#include <pscf/math/IntVec.h>
19#include <pscf/cuda/CudaRandom.h>
20#include <util/random/Random.h>
21#include <util/param/ParamComposite.h>
60 read(in,
"A", stepSize_);
61 read(in,
"F*", fStar_);
62 read(in,
"tau", tau_);
64 read(in,
"volumeFraction", f_);
65 read(in,
"statisticalSegmentLength", b_);
72 const int nMonomer = system().mixture().nMonomer();
73 IntVec<D> const & dimensions = system().mesh().dimensions();
76 wFieldTmp_.allocate(nMonomer);
77 randomFieldR_.allocate(dimensions);
78 randomFieldK_.allocate(dimensions);
79 wKGrid_.allocate(nMonomer);
80 wRGrid_.allocate(nMonomer);
81 sqrtSq_.allocate(dimensions);
82 for (
int i = 0; i < nMonomer; ++i) {
83 wFieldTmp_[i].allocate(dimensions);
84 wKGrid_[i].allocate(dimensions);
85 wRGrid_[i].allocate(dimensions);
90 computeStructureFactor();
99 rgSquare_ = n_ * b_ * b_ / 6.0;
106 double FourierMove<D>::computeDebye(
double f,
double x)
109 return 2.0 * (fx + exp(-fx) - 1.0) / (x * x);
116 double FourierMove<D>::computeF(
double x)
123 double g1 = computeDebye(1.0, x);
124 double gf = computeDebye(f_, x);
125 double g1f = computeDebye(1.0 - f_, x);
126 double denominator = gf * g1f - pow(g1 - gf- g1f, 2.0)/4.0;
127 return g1 / denominator;
134 double FourierMove<D>::computeS(
double qSquare)
137 double x = qSquare * rgSquare_;
138 double denominator = computeF(x) - fStar_ + tau_;
140 const double vMonomer = system().mixture().vMonomer();
141 return 1.0 / (vMonomer * denominator);
145 void FourierMove<D>::computeStructureFactor()
147 int meshSize = system().domain().mesh().size();
148 HostDArray<cudaReal> sqTemp(meshSize);
150 itr.setDimensions(system().mesh().dimensions());
151 IntVec<D> G; IntVec<D> Gmin;
152 double qSq;
double S_;
153 for (itr.begin(); !itr.atEnd(); ++itr){
154 if (itr.rank() == 0){
155 sqTemp[itr.rank()] = 0;
158 Gmin = shiftToMinimum(G, system().mesh().dimensions(), system().unitCell());
159 qSq = system().unitCell().ksq(Gmin);
162 sqTemp[itr.rank()] = sqrt(S_);
175 const int nMonomer = system().mixture().nMonomer();
176 const int meshSize = system().domain().mesh().size();
178 for (
int i = 0; i < nMonomer; ++i) {
179 VecOp::eqV(wRGrid_[i], system().w().rgrid(i));
183 for (
int i = 0; i < nMonomer; ++i) {
184 system().fft().forwardTransform(wRGrid_[i], wKGrid_[i]);
187 for (
int i = 0; i < nMonomer; ++i){
189 cudaRandom().uniform(randomFieldR_);
196 cudaRandom().uniform(randomFieldK_);
207 for (
int i = 0; i < nMonomer; ++i) {
208 system().fft().inverseTransformUnsafe(wKGrid_[i], wFieldTmp_[i]);
211 system().setWRGrid(wFieldTmp_);
227 out <<
"FourierMove time contributions:\n";
An IntVec<D, T> is a D-component vector of elements of integer type T.
FourierMove is a Monte Carlo move in fourier space.
FourierMove(McSimulator< D > &simulator)
Constructor.
void setClassName(const char *className)
Set class name string.
void attemptMove()
Attempt unconstrained move.
void setup()
Setup before the beginning of each simulation run.
void output()
Output statistics for this move (at the end of simulation)
~FourierMove()
Destructor.
void outputTimers(std::ostream &out)
Return fourier move times contributions.
void readParameters(std::istream &in)
Read required parameters from file.
McMove is an abstract base class for Monte Carlo moves.
virtual void outputTimers(std::ostream &out)
Log output timing results.
virtual void setup()
Setup before the beginning of each simulation run.
Monte-Carlo simulation coordinator.
File containing preprocessor macros for error handling.
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 mulEqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector multiplication in-place, a[i] *= b[i], kernel wrapper (cudaReal).
void fourierMove(DeviceArray< cudaComplex > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c)
Add array b to real part of a and array c to imaginary part of a.
void mcftsScale(DeviceArray< cudaReal > &a, cudaReal const b)
Rescale array a from [0,1] to [-b, b], GPU kernel wrapper.
PSCF package top-level namespace.
Utility classes for scientific computation.