PSCF v1.2
rpc/fts/montecarlo/RealMove.tpp
1#ifndef RPC_REAL_MOVE_TPP
2#define RPC_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 <util/param/ParamComposite.h>
14#include <rpc/System.h>
15#include <util/archives/Serializable_includes.h>
16#include <util/random/Random.h>
17
18
19namespace Pscf {
20namespace Rpc {
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
47 //Read the probability
48 readProbability(in);
49
50 // attampt move range [A, -A]
51 read(in, "A", stepSize_);
52 }
53
54 template <int D>
56 {
58 const int nMonomer = system().mixture().nMonomer();
59 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
60 if (!isAllocated_){
61 wFieldTmp_.allocate(nMonomer);
62 for (int i = 0; i < nMonomer; ++i) {
63 wFieldTmp_[i].allocate(dimensions);
64 }
65 isAllocated_ = true;
66 }
67 }
68
69
70
71 /*
72 * Attempt unconstrained move
73 */
74 template <int D>
76 {
77 const int nMonomer = system().mixture().nMonomer();
78 const int meshSize = system().domain().mesh().size();
79 for (int i = 0; i < nMonomer; i++){
80 for (int k = 0; k < meshSize; k++){
81 //Random number generator
82 double r = random().uniform(-stepSize_,stepSize_);
83 wFieldTmp_[i][k] = system().w().rgrid()[i][k] + r;
84 }
85 }
86 system().setWRGrid(wFieldTmp_);
87 }
88
89
90 /*
91 * Trivial default implementation - do nothing
92 */
93 template <int D>
95 {}
96
97 template<int D>
98 void RealMove<D>::outputTimers(std::ostream& out)
99 {
100 out << "\n";
101 out << "RealMove time contributions:\n";
103 }
104
105}
106}
107#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 outputTimers(std::ostream &out)
Return real move times contributions.
void setClassName(const char *className)
Set class name string.
void readParameters(std::istream &in)
Read required parameters from file.
RealMove(McSimulator< D > &simulator)
Constructor.
void output()
Output statistics for this move (at the end of simulation)
void attemptMove()
Attempt unconstrained move.
void setup()
Setup before the beginning of each simulation run.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.