PSCF v1.2
rpc/fts/analyzer/MaxOrderParameter.tpp
1#ifndef RPC_MAX_ORDER_PARAMETER_TPP
2#define RPC_MAX_ORDER_PARAMETER_TPP
3
4#include "MaxOrderParameter.h"
5
6#include <rpc/fts/simulator/Simulator.h>
7#include <rpc/System.h>
8
9#include <prdc/cpu/RField.h>
10
11#include <pscf/mesh/MeshIterator.h>
12#include <pscf/math/IntVec.h>
13
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>
19#include <util/global.h>
20
21#include <fftw3.h>
22
23#include <iostream>
24#include <complex>
25#include <vector>
26#include <algorithm>
27
28namespace Pscf {
29namespace Rpc {
30
31 using namespace Util;
32 using namespace Pscf::Prdc;
33
34 /*
35 * Constructor.
36 */
37 template <int D>
39 System<D>& system)
40 : AverageAnalyzer<D>(simulator, system),
41 kSize_(1),
42 isInitialized_(false)
43 { setClassName("MaxOrderParameter"); }
44
45 /*
46 * Destructor.
47 */
48 template <int D>
51
52 /*
53 * MaxOrderParameter setup
54 */
55 template <int D>
57 {
59
60 // Allocate variables
61 IntVec<D> const & dimensions = system().domain().mesh().dimensions();
62 if (!isInitialized_){
63 wK_.allocate(dimensions);
64 }
65
66 // Compute Fourier space dimension
67 for (int i = 0; i < D; ++i) {
68 if (i < D - 1) {
69 kMeshDimensions_[i] = dimensions[i];
70 kSize_ *= dimensions[i];
71 } else {
72 kMeshDimensions_[i] = dimensions[i]/2 + 1;
73 kSize_ *= (dimensions[i]/2 + 1);
74 }
75 }
76
77 isInitialized_ = true;
78
79 if (!isInitialized_) {
80 UTIL_THROW("Error: object is not initialized");
81 }
82 }
83
84 template <int D>
86 {
87 UTIL_CHECK(system().w().hasData());
88
89 // For AB diblock
90 const int nMonomer = system().mixture().nMonomer();
91 UTIL_CHECK(nMonomer == 2);
92
93 if (!simulator().hasWc()){
94 simulator().computeWc();
95 }
96
98 itr.setDimensions(kMeshDimensions_);
99 std::vector<double> psi(kSize_);
100
101 // Conver W_(r) to fourier mode W_(k)
102 system().domain().fft().forwardTransform(simulator().wc(0), wK_);
103
104 for (itr.begin(); !itr.atEnd(); ++itr) {
105 std::complex<double> wK(wK_[itr.rank()][0], wK_[itr.rank()][1]);
106 psi[itr.rank()] = std::norm(wK);
107 }
108
109 auto maxOrderParameterPtr = std::max_element(psi.begin(), psi.end());
110 maxOrderParameter_ = *maxOrderParameterPtr;
111
112 return maxOrderParameter_;
113 }
114
115 template <int D>
116 void MaxOrderParameter<D>::outputValue(int step, double value)
117 {
118 if (simulator().hasRamp() && nSamplePerOutput() == 1) {
119 double chi= system().interaction().chi(0,1);
120
121 UTIL_CHECK(outputFile_.is_open());
122 outputFile_ << Int(step);
123 outputFile_ << Dbl(chi);
124 outputFile_ << Dbl(value);
125 outputFile_ << "\n";
126 } else {
128 }
129 }
130
131}
132}
133#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
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 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).
Definition rpc/System.h:38
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
Wrapper for a double precision number, for formatted ostream output.
Definition Dbl.h:40
Wrapper for an int, for formatted ostream output.
Definition Int.h:37
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.