PSCF v1.2
rpg/fts/analyzer/FourthOrderParameter.h
1#ifndef RPG_FOURTH_ORDER_PARAMETER_H
2#define RPG_FOURTH_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
46 template <int D>
48 {
49
50 public:
51
56
60 virtual ~FourthOrderParameter();
61
65 virtual void setup();
66
70 virtual double compute();
71
78 virtual void outputValue(int step, double value);
79
91 void computePrefactor();
92
98
99 protected:
100
103 using AverageAnalyzer<D>::outputFile_;
105
106 private:
107
109 int kSize_;
110
112 IntVec<D> kMeshDimensions_;
113
115 bool isInitialized_;
116
118 RFieldDft<D> wK_;
119
121 RField<D> wc0_;
122
124 RField<D> prefactor_;
125
127 double FourthOrderParameter_;
128
129 };
130
131 #ifndef RPG_FOURTH_ORDER_PARAMETER_TPP
132 // Suppress implicit instantiation
133 extern template class FourthOrderParameter<1>;
134 extern template class FourthOrderParameter<2>;
135 extern template class FourthOrderParameter<3>;
136 #endif
137
138}
139}
140#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.
FourthOrderParameter is used to detect an order-disorder transition.
virtual double compute()
Compute and return the fourth order parameter.
FourthOrderParameter(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual void setup()
Setup before simulation loop.
void computePrefactor()
Compute prefactor for each Fourier wavevector.
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.