PSCF v1.2
FourierMove.h
1#ifndef RPG_FOURIER_MOVE_H
2#define RPG_FOURIER_MOVE_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "McMove.h" // base class
12#include <prdc/cuda/RFieldDft.h>
13#include <prdc/cuda/RField.h>
14#include <util/containers/DArray.h>
15
16namespace Pscf {
17namespace Rpg
18{
19
20 using namespace Util;
21 using namespace Pscf::Prdc;
22 using namespace Pscf::Prdc::Cuda;
23
29 template <int D>
30 class FourierMove : public McMove<D>
31 {
32
33 public:
34
41
48
54 void readParameters(std::istream &in);
55
59 void output();
60
64 void setup();
65
71 void outputTimers(std::ostream& out);
72
73 // Inherited public member function
74 using McMove<D>::move;
76 using McMove<D>::clearTimers;
79
80 protected:
81
82 using McMove<D>::system;
83 using McMove<D>::random;
84 using McMove<D>::cudaRandom;
85
95 void attemptMove();
96
97
98 private:
99
103 void computeRgSquare();
104
112 double computeF(double x);
113
122 double computeDebye(double f, double x);
123
131 double computeS(double qSquare);
132
136 void computeStructureFactor();
137
144 double stepSize_;
145
151 double fStar_;
152
161 double tau_;
162
164 double f_;
165
167 double n_;
168
170 double b_;
171
173 double rgSquare_;
174
176 RField<D> sqrtSq_;
177
179 RField<D> randomFieldR_;
180
182 RField<D> randomFieldK_;
183
185 DArray< RField<D> > wRGrid_;
186
188 DArray< RFieldDft<D> > wKGrid_;
189
191 DArray< RField<D> > wFieldTmp_;
192
194 bool isAllocated_;
195
196 };
197
198 #ifndef RPG_FOURIER_MOVE_TPP
199 // Suppress implicit instantiation
200 extern template class FourierMove<1>;
201 extern template class FourierMove<2>;
202 extern template class FourierMove<3>;
203 #endif
204
205}
206}
207#endif
Field of real double precision values on an FFT mesh.
FourierMove is a Monte Carlo move in fourier space.
Definition FourierMove.h:31
FourierMove(McSimulator< D > &simulator)
Constructor.
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.
CudaRandom & cudaRandom()
Get cuda random number generator by reference.
Random & random()
Get Random number generator of parent System.
virtual bool move()
Generate, attempt, and accept or reject a Monte Carlo move.
void readProbability(std::istream &in)
Read the probability from file.
McSimulator< D > & simulator()
Get parent McSimulator object.
System< D > & system()
Get parent System object.
virtual void clearTimers()
Clear timers.
Monte-Carlo simulation coordinator.
Dynamically allocatable contiguous array template.
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
void setClassName(const char *className)
Set class name string.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.