PSCF v1.2
rpg/fts/montecarlo/RealMove.tpp
1#ifndef RPG_REAL_MOVE_TPP
2#define RPG_REAL_MOVE_TPP
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 "RealMove.h"
12#include "McMove.h"
13#include <rpg/fts/VecOpFts.h>
14#include <prdc/cuda/VecOp.h>
15#include <pscf/math/IntVec.h>
16#include <util/param/ParamComposite.h>
17#include <rpg/System.h>
18
19namespace Pscf {
20namespace Rpg {
21
22 using namespace Util;
23
24 /*
25 * Constructor.
26 */
27 template <int D>
29 : McMove<D>(simulator),
30 isAllocated_(false)
31 { setClassName("RealMove"); }
32
33 /*
34 * Destructor, empty default implementation.
35 */
36 template <int D>
39
40 /*
41 * ReadParameters, empty default implementation.
42 */
43 template <int D>
44 void RealMove<D>::readParameters(std::istream &in)
45 {
46 //Read the probability
47 readProbability(in);
48 // attampt move range [A, -A]
49 read(in, "A", stepSize_);
50 }
51
52
53 template <int D>
55 {
57 const int nMonomer = system().mixture().nMonomer();
58 const IntVec<D> dimensions = system().domain().mesh().dimensions();
59 if (!isAllocated_){
60 wFieldTmp_.allocate(nMonomer);
61 randomField_.allocate(dimensions);
62 for (int i = 0; i < nMonomer; ++i) {
63 wFieldTmp_[i].allocate(dimensions);
64 }
65 isAllocated_ = true;
66 }
67 }
68
69 /*
70 * Attempt unconstrained move
71 */
72 template <int D>
74 {
75 const int nMonomer = system().mixture().nMonomer();
76 const int meshSize = system().domain().mesh().size();
77
78 // For multi-component copolymer
79 for (int i = 0; i < nMonomer; i++){
80
81 // Generate random numbers between 0.0 and 1.0 from uniform dist.
82 cudaRandom().uniform(randomField_);
83
84 // Generate random numbers between [-stepSize_,stepSize_]
85 VecOpFts::mcftsScale(randomField_, stepSize_);
86
87 // Change the w field configuration
88 VecOp::addVV(wFieldTmp_[i], system().w().rgrid(i), randomField_);
89
90 }
91
92 // set system r grid
93 system().setWRGrid(wFieldTmp_);
94
95 }
96
97
98 /*
99 * Trivial default implementation - do nothing
100 */
101 template <int D>
103 {}
104
105 template<int D>
106 void RealMove<D>::outputTimers(std::ostream& out)
107 {
108 out << "\n";
109 out << "RealMove time contributions:\n";
111 }
112
113}
114}
115#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
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.
void readParameters(std::istream &in)
Read required parameters from file.
void setClassName(const char *className)
Set class name string.
void attemptMove()
Attempt unconstrained move.
RealMove(McSimulator< D > &simulator)
Constructor.
void setup()
Setup before the beginning of each simulation run.
void outputTimers(std::ostream &out)
Return real move times contributions.
void output()
Output statistics for this move (at the end of simulation)
void addVV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, DeviceArray< cudaReal > const &c, const int beginIdA, const int beginIdB, const int beginIdC, const int n)
Vector addition, a[i] = b[i] + c[i], kernel wrapper (cudaReal).
Definition VecOp.cu:1084
void mcftsScale(DeviceArray< cudaReal > &a, cudaReal const b)
Rescale array a from [0,1] to [-b, b], GPU kernel wrapper.
Definition VecOpFts.cu:77
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.