PSCF v1.2
rpg/fts/analyzer/MaxOrderParameter.h
1#ifndef RPG_MAX_ORDER_PARAMETER_H
2#define RPG_MAX_ORDER_PARAMETER_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "AverageAnalyzer.h" // base class
12
13#include <util/containers/DArray.h> // member
14#include <util/accumulators/Average.h> // member
15#include <prdc/cuda/RField.h> // member
16#include <prdc/cuda/RFieldDft.h> // member
17#include <map> // member
18
19#include <string>
20#include <iostream>
21
22namespace Pscf {
23namespace Rpg {
24
25 template <int D> class System;
26 template <int D> class Simulator;
27
28 using namespace Util;
29 using namespace Pscf::Prdc;
30 using namespace Pscf::Prdc::Cuda;
31
47 template <int D>
49 {
50
51 public:
52
57
61 virtual ~MaxOrderParameter();
62
66 void setup();
67
71 virtual double compute();
72
79 virtual void outputValue(int step, double value);
80
86
87 protected:
88
91 using AverageAnalyzer<D>::outputFile_;
93
94 private:
95
97 int kSize_;
98
100 IntVec<D> kMeshDimensions_;
101
103 bool isInitialized_;
104
106 RFieldDft<D> wK_;
107
109 RField<D> wc0_;
110
112 double maxOrderParameter_;
113
114 };
115
116 #ifndef RPG_MAX_ORDER_PARAMETER_TPP
117 // Suppress implicit instantiation
118 extern template class MaxOrderParameter<1>;
119 extern template class MaxOrderParameter<2>;
120 extern template class MaxOrderParameter<3>;
121 #endif
122
123}
124}
125#endif
An IntVec<D, T> is a D-component vector of elements of integer type T.
Definition IntVec.h:27
Fourier transform of a real field on an FFT mesh.
Field of real double precision values on an FFT mesh.
Analyze averages and block averages of several real variables.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
virtual void sample(long iStep)
Compute a sampled value and update the accumulator.
int nSamplePerOutput() const
Get value of nSamplePerOutput.
Simulator< D > & simulator()
Return reference to parent simulator.
System< D > & system()
Return reference to parent system.
virtual void output()
Write final results to file after a simulation.
MaxOrderParameter is used to detect an order-disorder transition.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
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
void setClassName(const char *className)
Set class name string.
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.