1#ifndef RPC_REAL_MOVE_TPP
2#define RPC_REAL_MOVE_TPP
13#include <util/param/ParamComposite.h>
14#include <rpc/System.h>
15#include <util/archives/Serializable_includes.h>
16#include <util/random/Random.h>
51 read(in,
"A", stepSize_);
58 const int nMonomer = system().mixture().nMonomer();
59 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
61 wFieldTmp_.allocate(nMonomer);
62 for (
int i = 0; i < nMonomer; ++i) {
63 wFieldTmp_[i].allocate(dimensions);
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++){
82 double r = random().uniform(-stepSize_,stepSize_);
83 wFieldTmp_[i][k] = system().w().rgrid()[i][k] + r;
86 system().setWRGrid(wFieldTmp_);
101 out <<
"RealMove time contributions:\n";
An IntVec<D, T> is a D-component vector of elements of integer type T.
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.
Utility classes for scientific computation.