PSCF v1.2
rpg/fts/analyzer/PerturbationDerivative.h
1#ifndef RPG_PERTURBATION_DERIVATIVE_H
2#define RPG_PERTURBATION_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
19 template <int D> class System;
20 template <int D> class Simulator;
21
22 using namespace Util;
23
29 template <int D>
31 {
32
33 public:
34
39
44
48 virtual double compute();
49
56 virtual void outputValue(int step, double value);
57
63
64 protected:
65
68 using AverageAnalyzer<D>::outputFile_;
70
71 };
72
73 // Suppress implicit instantiation
74 #ifndef RPG_PERTURBATION_DERIVATIVE_TPP
75 extern template class PerturbationDerivative<1>;
76 extern template class PerturbationDerivative<2>;
77 extern template class PerturbationDerivative<3>;
78 #endif
79
80}
81}
82#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 w/ respect to perturbation parameter lambda.
virtual double compute()
Compute and return the derivative of H w/ respect to lambda.
PerturbationDerivative(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
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.