PSCF v1.2
rpg/fts/analyzer/MaxOrderParameter.tpp
1#ifndef RPG_MAX_ORDER_PARAMETER_TPP
2#define RPG_MAX_ORDER_PARAMETER_TPP
3
4#include "MaxOrderParameter.h"
5
6#include <rpg/fts/simulator/Simulator.h>
7#include <rpg/System.h>
8
9#include <prdc/cuda/RField.h>
10#include <prdc/cuda/resources.h>
11
12#include <pscf/mesh/MeshIterator.h>
13#include <pscf/math/IntVec.h>
14
15#include <util/param/ParamComposite.h>
16#include <util/misc/FileMaster.h>
17#include <util/misc/ioUtil.h>
18#include <util/format/Int.h>
19#include <util/format/Dbl.h>
20#include <util/global.h>
21
22#include <fftw3.h>
23
24#include <iostream>
25#include <complex>
26#include <vector>
27#include <algorithm>
28
29namespace Pscf {
30namespace Rpg {
31
32 using namespace Util;
33 using namespace Pscf::Prdc;
34
35 /*
36 * Constructor.
37 */
38 template <int D>
40 System<D>& system)
41 : AverageAnalyzer<D>(simulator, system),
42 kSize_(1),
43 isInitialized_(false)
44 { setClassName("MaxOrderParameter"); }
45
46 /*
47 * Destructor.
48 */
49 template <int D>
52
53 /*
54 * MaxOrderParameter setup
55 */
56 template <int D>
58 {
59 UTIL_CHECK(system().w().hasData());
60 if (!simulator().hasWc()){
61 simulator().computeWc();
62 }
63
64 //Allocate variables
65 IntVec<D> const & dimensions = system().mesh().dimensions();
66 if (!isInitialized_){
67 wc0_.allocate(dimensions);
68 wK_.allocate(dimensions);
69 }
70
71 // Compute Fourier space dimension
72 for (int i = 0; i < D; ++i) {
73 if (i < D - 1) {
74 kMeshDimensions_[i] = dimensions[i];
75 kSize_ *= dimensions[i];
76 } else {
77 kMeshDimensions_[i] = dimensions[i]/2 + 1;
78 kSize_ *= (dimensions[i]/2 + 1);
79 }
80 }
81
82 isInitialized_ = true;
83
84 if (!isInitialized_) {
85 UTIL_THROW("Error: object is not initialized");
86 }
87 }
88
89 template <int D>
91 {
92 UTIL_CHECK(system().w().hasData());
93
94 // For AB diblock
95 const int nMonomer = system().mixture().nMonomer();
96 UTIL_CHECK(nMonomer == 2);
97
98 const int meshSize = system().domain().mesh().size();
99 RField<D> psi;
100 psi.allocate(kMeshDimensions_);
101
102 // Conver W_(r) to fourier mode W_(k)
103 VecOp::eqV(wc0_, simulator().wc(0));
104 system().fft().forwardTransform(wc0_, wK_);
105
106 // Comput W_(k)^2
107 VecOp::sqNormV(psi, wK_);
108
109 // Obtain max[W_(k)^2]
110 maxOrderParameter_ = Reduce::maxAbs(psi);
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
Field of real double precision values on an FFT mesh.
void allocate(IntVec< D > const &meshDimensions)
Allocate the underlying C array for an FFT grid.
Analyze averages and block averages of several real variables.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
void setClassName(const char *className)
Set class name string.
virtual double compute()
Compute and return the max order parameter.
void setup()
Setup before simulation loop.
MaxOrderParameter(Simulator< D > &simulator, System< D > &system)
Constructor.
Field theoretic simulator (base class).
Definition rpg/System.h:41
Main class for calculations that represent one system.
Definition rpg/System.h:107
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
cudaReal maxAbs(DeviceArray< cudaReal > const &in)
Get maximum absolute magnitude of array elements (GPU kernel wrapper).
Definition Reduce.cu:648
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).
Definition VecOp.cu:1020
void sqNormV(DeviceArray< cudaReal > &a, DeviceArray< cudaComplex > const &b)
Squared norm of complex number, a[i] = norm(b[i])^2, kernel wrapper.
Definition VecOpMisc.cu:585
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.