PSCF v1.2
rpc/fts/analyzer/FourthOrderParameter.h
1#ifndef RPC_FOURTH_ORDER_PARAMETER_H
2#define RPC_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/cpu/RFieldDft.h> // member
16#include <map> // member
17
18#include <string>
19#include <iostream>
20
21namespace Pscf {
22namespace Rpc {
23
24 template <int D> class System;
25 template <int D> class Simulator;
26
27 using namespace Util;
28 using namespace Pscf::Prdc::Cpu;
29
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 DArray<double> prefactor_;
122
124 double FourthOrderParameter_;
125
126 };
127
128 #ifndef RPC_FOURTH_ORDER_PARAMETER_TPP
129 // Suppress implicit instantiation
130 extern template class FourthOrderParameter<1>;
131 extern template class FourthOrderParameter<2>;
132 extern template class FourthOrderParameter<3>;
133 #endif
134
135}
136}
137#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.
Analyze averages and block averages of several real variables.
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.
virtual void output()
Write final results to file after a simulation.
System< D > & system()
Return reference to parent system.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
FourthOrderParameter is used to detect an order-disorder transition.
FourthOrderParameter(Simulator< D > &simulator, System< D > &system)
Constructor.
void computePrefactor()
Compute prefactor for each Fourier wavevector.
virtual void setup()
Setup before simulation loop.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual double compute()
Compute and return the derivative of H w/ respect to chi.
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
Dynamically allocatable contiguous array template.
void setClassName(const char *className)
Set class name string.
Fields and FFTs for periodic boundary conditions (CPU)
Definition CField.cpp:12
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.