PSCF v1.2
rpc/fts/montecarlo/McMoveManager.tpp
1#ifndef RPC_MC_MOVE_MANAGER_TPP
2#define RPC_MC_MOVE_MANAGER_TPP
3
4/*
5* PSCF - Polymer Self-Consistent Field
6*
7* Copyright 2016 - 2023, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <util/global.h>
12#include <rpc/fts/montecarlo/McMoveManager.h>
13#include <rpc/fts/montecarlo/McMoveFactory.h>
14#include <rpc/fts/montecarlo/McSimulator.h>
15
16#include <util/random/Random.h>
17
18namespace Pscf {
19namespace Rpc {
20
21 using namespace Util;
22
23 /*
24 * Constructor.
25 */
26 template <int D>
28 System<D>& system)
29 : Manager< McMove<D> >(),
30 simulatorPtr_(&simulator),
31 systemPtr_(&system),
32 randomPtr_(&simulator.random())
33 { setClassName("McMoveManager"); }
34
35 // Destructor
36 template <int D>
39
40 /*
41 * Return a pointer to a new McMoveFactory object.
42 */
43 template <int D>
45 { return new McMoveFactory<D>(*simulatorPtr_); }
46
47 /*
48 * Read instructions for creating objects from file.
49 */
50 template <int D>
51 void McMoveManager<D>::readParameters(std::istream &in)
52 {
53 // Read parameters for all McMove<D> objects
54 Manager< McMove<D> >::readParameters(in);
55
56 // Allocate and store probabilities
57 probabilities_.allocate(size());
58 double totalProbability = 0.0;
59 int iMove;
60 for (iMove = 0; iMove < size(); ++iMove) {
61 probabilities_[iMove] = (*this)[iMove].probability();
62 totalProbability += probabilities_[iMove];
63 }
64
65 // Allocate and store and normalize probabilities
66 for (iMove = 0; iMove < size(); ++iMove) {
67 probabilities_[iMove] = probabilities_[iMove]/totalProbability;
68 (*this)[iMove].setProbability(probabilities_[iMove]);
69 }
70 }
71
72 /*
73 * Initialize all moves just prior to a run.
74 */
75 template <int D>
77 {
78 for (int iMove = 0; iMove < size(); ++iMove) {
79 (*this)[iMove].setup();
80 }
81 }
82
83 /*
84 * Choose a McMove at random.
85 */
86 template <int D>
88 {
89 int iMove;
90 iMove = randomPtr_->drawFrom(&probabilities_[0], size());
91 return (*this)[iMove];
92 }
93
94 /*
95 * Output statistics for every move.
96 */
97 template <int D>
99 {
100 for (int i=0; i< size(); i++) {
101 (*this)[i].output();
102 }
103 }
104
105 /*
106 * Log output timing results
107 */
108 template <int D>
109 void McMoveManager<D>::outputTimers(std::ostream& out) const
110 {
111 for (int i=0; i< size(); i++) {
112 (*this)[i].outputTimers(out);
113 }
114 }
115
116 /*
117 * Clear timers
118 */
119 template <int D>
121 {
122 for (int i=0; i< size(); i++) {
123 (*this)[i].clearTimers();
124 }
125 }
126
127 /*
128 * Decide whether any move needs to store cc fields.
129 */
130 template <int D>
132 {
133 for (int i=0; i< size(); i++) {
134 if((*this)[i].needsCc()){
135 return true;
136 }
137 }
138 return false;
139 }
140
141 /*
142 * Decide whether any move needs to store dc fields.
143 */
144 template <int D>
146 {
147 for (int i=0; i< size(); i++) {
148 if((*this)[i].needsDc()){
149 return true;
150 }
151 }
152 return false;
153 }
154
155}
156}
157#endif
Factory for subclasses of McMove.
Manager for a set of McMove objects.
void setup()
Initialize at beginning of system run.
McMoveManager(McSimulator< D > &simulator, System< D > &system)
Constructor.
bool needsCc()
Decide whether any move needs to store cc fields.
void outputTimers(std::ostream &out) const
Log output timing results.
McMove< D > & chooseMove()
Choose an McMove at random, using specified probabilities.
void output() const
Output statistics for all moves.
virtual void readParameters(std::istream &in)
Read instructions for creating McMove objects.
bool needsDc()
Decide whether any move needs to store dc fields.
McMove is an abstract base class for Monte Carlo moves.
Monte-Carlo simulation coordinator.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Factory template.
Template container for pointers to objects with a common base class.
Definition Manager.h:39
void setClassName(const char *className)
Set class name string.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.