PSCF v1.2
rpg/fts/analyzer/ConcentrationDerivative.h
1#ifndef RPG_CONCENTRATION_DERIVATIVE_H
2#define RPG_CONCENTRATION_DERIVATIVE_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"
12#include <rpg/System.h>
13#include <rpg/fts/simulator/Simulator.h>
14
15namespace Pscf {
16namespace Rpg {
17
18 template <int D> class System;
19 template <int D> class Simulator;
20
21 using namespace Util;
22
28 template <int D>
30 {
31
32 public:
33
38
43
47 virtual double compute();
48
55 virtual void outputValue(int step, double value);
56
62
63 protected:
64
67 using AverageAnalyzer<D>::outputFile_;
69
70 };
71
72 // Suppress implicit instantiation
73 #ifndef RPG_CONCENTRATION_DERIVATIVE_TPP
74 extern template class ConcentrationDerivative<1>;
75 extern template class ConcentrationDerivative<2>;
76 extern template class ConcentrationDerivative<3>;
77 #endif
78
79}
80}
81#endif
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.
virtual void setup()
Setup before loop.
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.
Evaluate the derivative of H with respect to concentration.
ConcentrationDerivative(Simulator< D > &simulator, System< D > &system)
Constructor.
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 concentration.
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.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.