PSCF v1.2
rpc/fts/analyzer/ConcentrationDerivative.h
1#ifndef RPC_CONCENTRATION_DERIVATIVE_H
2#define RPC_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 <rpc/System.h>
13#include <rpc/fts/simulator/Simulator.h>
14
15namespace Pscf {
16namespace Rpc
17{
18
19 template <int D> class System;
20 template <int D> class Simulator;
21
22 using namespace Util;
23
31 template <int D>
33 {
34
35 public:
36
41
45 virtual ~ConcentrationDerivative();
46
50 virtual double compute();
51
58 virtual void outputValue(int step, double value);
59
62 using AverageAnalyzer<D>::setup;
65
66 protected:
67
70 using AverageAnalyzer<D>::outputFile_;
72
73 };
74
75 // Suppress implicit instantiation
76 #ifndef RPC_CONCENTRATION_DERIVATIVE_TPP
77 extern template class ConcentrationDerivative<1>;
78 extern template class ConcentrationDerivative<2>;
79 extern template class ConcentrationDerivative<3>;
80 #endif
81
82}
83}
84#endif
Analyze averages and block averages of several real variables.
virtual void setup()
Setup before loop.
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.
Evaluate the derivative of H with respect to concentration.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
ConcentrationDerivative(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual double compute()
Compute and return the derivative of H w/ respect to concentration.
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
void setClassName(const char *className)
Set class name string.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.