PSCF v1.2
rpg/fts/analyzer/PerturbationDerivative.tpp
1#ifndef RPG_PERTURBATION_DERIVATIVE_TPP
2#define RPG_PERTURBATION_DERIVATIVE_TPP
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 "PerturbationDerivative.h"
12
13#include <rpg/System.h>
14#include <rpg/fts/simulator/Simulator.h>
15#include <rpg/fts/perturbation/Perturbation.h>
16
17namespace Pscf {
18namespace Rpg
19{
20
21 using namespace Util;
22
23 /*
24 * Constructor.
25 */
26 template <int D>
28 System<D>& system)
29 : AverageAnalyzer<D>(simulator, system)
30 { setClassName("PerturbationDerivative"); }
31
32 /*
33 * Destructor.
34 */
35 template <int D>
38
39 template <int D>
41 {
42 UTIL_CHECK(system().w().hasData());
43 UTIL_CHECK(simulator().hasPerturbation());
44
45 if (!system().hasCFields()) {
46 system().compute();
47 }
48 if (!simulator().hasWc()){
49 simulator().computeWc();
50 }
51 if (!simulator().hasHamiltonian()) {
52 simulator().computeHamiltonian();
53 }
54
55 return simulator().perturbation().df();
56 }
57
58 template <int D>
59 void PerturbationDerivative<D>::outputValue(int step, double value)
60 {
61 if (simulator().hasRamp() && nSamplePerOutput() == 1) {
62 double lambda = simulator().perturbation().lambda();
63
64 UTIL_CHECK(outputFile_.is_open());
65 outputFile_ << Int(step);
66 outputFile_ << Dbl(lambda);
67 outputFile_ << Dbl(value);
68 outputFile_ << "\n";
69 } else {
71 }
72 }
73
74}
75}
76#endif
Analyze averages and block averages of several real variables.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
void setClassName(const char *className)
Set class name string.
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
Wrapper for a double precision number, for formatted ostream output.
Definition Dbl.h:40
Wrapper for an int, for formatted ostream output.
Definition Int.h:37
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.