PSCF v1.2
rpc/fts/analyzer/PerturbationDerivative.h
1#ifndef RPC_PERTURBATION_DERIVATIVE_H
2#define RPC_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 <rpc/System.h>
13#include <rpc/fts/simulator/Simulator.h>
14
15namespace Pscf {
16namespace Rpc {
17
18 template <int D> class System;
19 template <int D> class Simulator;
20
21 using namespace Util;
22
30 template <int D>
32 {
33
34 public:
35
40
45
49 virtual double compute();
50
57 virtual void outputValue(int step, double value);
58
64
65 protected:
66
69 using AverageAnalyzer<D>::outputFile_;
71
72 };
73
74 // Suppress implicit instantiation
75 #ifndef RPC_PERTURBATION_DERIVATIVE_TPP
76 extern template class PerturbationDerivative<1>;
77 extern template class PerturbationDerivative<2>;
78 extern template class PerturbationDerivative<3>;
79 #endif
80
81}
82}
83#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 w/ respect to perturbation parameter lambda.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
PerturbationDerivative(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual double compute()
Compute and return the derivative of H w/ respect to lambda.
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.