55 read(in,
"mobility", mobility_);
58 int nMonomer = system().mixture().nMonomer();
59 IntVec<D> meshDimensions = system().domain().mesh().dimensions();
60 w_.allocate(nMonomer);
61 for (
int i=0; i < nMonomer; ++i) {
62 w_[i].allocate(meshDimensions);
64 dc_.allocate(nMonomer-1);
65 dwc_.allocate(nMonomer-1);
66 for (
int i=0; i < nMonomer - 1; ++i) {
67 dc_[i].allocate(meshDimensions);
68 dwc_[i].allocate(meshDimensions);
77 int meshSize = system().domain().mesh().size();
78 IntVec<D> dimensions = system().domain().mesh().dimensions();
79 int nMonomer = system().mixture().nMonomer();
81 for (
int i=0; i < nMonomer; ++i) {
86 for (
int i=0; i < nMonomer - 1; ++i) {
92 biasField_.allocate(dimensions);
93 gaussianField_.allocate(dimensions);
111 const int nMonomer = system().mixture().nMonomer();
112 const int meshSize = system().domain().mesh().size();
117 double oldHamiltonian = simulator().hamiltonian();
120 simulator().saveState();
123 simulator().clearData();
125 attemptMoveTimer_.start();
128 for (i = 0; i < nMonomer; ++i) {
133 for (i = 0; i < nMonomer - 1; ++i) {
138 const double vSystem = system().domain().unitCell().volume();
139 const double vNode = vSystem/double(meshSize);
140 double a = -1.0*mobility_;
141 double b = sqrt(2.0*mobility_/vNode);
150 for (j = 0; j < nMonomer - 1; ++j) {
154 cudaRandom().normal(gaussianField_, stddev, mean);
160 for (i = 0; i < nMonomer; ++i) {
163 evec = simulator().chiEvecs(j,i);
170 system().setWRGrid(w_);
171 simulator().clearData();
173 attemptMoveTimer_.stop();
176 compressorTimer_.start();
177 int compress = simulator().compressor().compress();
179 compressorTimer_.stop();
181 bool isConverged =
false;
184 simulator().restoreState();
189 componentTimer_.start();
190 simulator().computeWc();
192 simulator().computeCc();
193 simulator().computeDc();
194 componentTimer_.stop();
197 hamiltonianTimer_.start();
198 simulator().computeHamiltonian();
199 double newHamiltonian = simulator().hamiltonian();
200 double dH = newHamiltonian - oldHamiltonian;
204 for (j = 0; j < nMonomer - 1; ++j) {
206 RField<D> const & df = simulator().dc(j);
213 hamiltonianTimer_.stop();
216 decisionTimer_.start();
218 double weight = exp(bias - dH);
219 accept = random().metropolis(weight);
222 simulator().clearState();
224 simulator().restoreState();
226 decisionTimer_.stop();
void eqV(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, const int beginIdA, const int beginIdB, const int n)
Vector assignment, a[i] = b[i], kernel wrapper (cudaReal).
void addVcVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c, DeviceArray< cudaReal > const &d, cudaReal const e)
Vector addition w/ coefficient, a[i] = (b[i]*c) + (d[i]*e), kernel wrapper.
void addEqVc(DeviceArray< cudaReal > &a, DeviceArray< cudaReal > const &b, cudaReal const c)
Vector addition in-place w/ coefficient, a[i] += b[i] * c, kernel wrapper.
void computeForceBias(DeviceArray< cudaReal > &result, DeviceArray< cudaReal > const &di, DeviceArray< cudaReal > const &df, DeviceArray< cudaReal > const &dwc, cudaReal mobility)
Compute force bias.