1#ifndef RPC_MAX_ORDER_PARAMETER_TPP
2#define RPC_MAX_ORDER_PARAMETER_TPP
4#include "MaxOrderParameter.h"
6#include <rpc/fts/simulator/Simulator.h>
9#include <prdc/cpu/RField.h>
11#include <pscf/mesh/MeshIterator.h>
12#include <pscf/math/IntVec.h>
14#include <util/param/ParamComposite.h>
15#include <util/misc/FileMaster.h>
16#include <util/misc/ioUtil.h>
17#include <util/format/Int.h>
18#include <util/format/Dbl.h>
61 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
63 wK_.allocate(dimensions);
67 for (
int i = 0; i < D; ++i) {
69 kMeshDimensions_[i] = dimensions[i];
70 kSize_ *= dimensions[i];
72 kMeshDimensions_[i] = dimensions[i]/2 + 1;
73 kSize_ *= (dimensions[i]/2 + 1);
77 isInitialized_ =
true;
79 if (!isInitialized_) {
80 UTIL_THROW(
"Error: object is not initialized");
90 const int nMonomer = system().mixture().nMonomer();
93 if (!simulator().hasWc()){
94 simulator().computeWc();
99 std::vector<double> psi(kSize_);
102 system().domain().fft().forwardTransform(simulator().wc(0), wK_);
105 std::complex<double> wK(wK_[itr.
rank()][0], wK_[itr.
rank()][1]);
106 psi[itr.
rank()] = std::norm(wK);
109 auto maxOrderParameterPtr = std::max_element(psi.begin(), psi.end());
110 maxOrderParameter_ = *maxOrderParameterPtr;
112 return maxOrderParameter_;
118 if (simulator().hasRamp() && nSamplePerOutput() == 1) {
119 double chi= system().interaction().chi(0,1);
122 outputFile_ <<
Int(step);
123 outputFile_ <<
Dbl(chi);
124 outputFile_ <<
Dbl(value);
An IntVec<D, T> is a D-component vector of elements of integer type T.
Iterator over points in a Mesh<D>.
int rank() const
Get the rank of current element.
void begin()
Set iterator to the first point in the mesh.
bool atEnd() const
Is this the end (i.e., one past the last point)?
void setDimensions(const IntVec< D > &dimensions)
Set the grid dimensions in all directions.
Analyze averages and block averages of several real variables.
virtual void setup()
Setup before loop.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual ~MaxOrderParameter()
Destructor.
virtual double compute()
Compute and return the max order parameter.
MaxOrderParameter(Simulator< D > &simulator, System< D > &system)
Constructor.
void setClassName(const char *className)
Set class name string.
virtual void setup()
Setup before simulation loop.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
Field theoretic simulator (base class).
Main class for SCFT or PS-FTS simulation of one system.
Wrapper for a double precision number, for formatted ostream output.
Wrapper for an int, for formatted ostream output.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.