PSCF v1.2
rpc/fts/analyzer/HamiltonianAnalyzer.h
1#ifndef RPC_HAMILTONIAN_ANALYZER_H
2#define RPC_HAMILTONIAN_ANALYZER_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 "AverageListAnalyzer.h"
12
13namespace Pscf {
14namespace Rpc {
15
16 template <int D> class System;
17 template <int D> class Simulator;
18
19 using namespace Util;
20
33 template <int D>
35 {
36
37 public:
38
43
48 {}
49
55 virtual void readParameters(std::istream& in);
56
57 #if 0
63 virtual void loadParameters(Serializable::IArchive& ar);
64
70 virtual void save(Serializable::OArchive& ar);
71 #endif
72
81
85
86 protected:
87
91 void compute();
92
97
102
103 private:
104
106 bool hasAnalyzeChi_;
107
109 int idealId_;
110
112 int fieldId_;
113
115 int totalId_;
116
117 };
118
119 // Get the parent system.
120 template <int D>
122 { return *systemPtr_; }
123
124 //Get parent Simulator object.
125 template <int D>
127 { return *simulatorPtr_; }
128
129 #ifndef RPC_HAMILTONIAN_ANALYZER_TPP
130 // Suppress implicit instantiation
131 extern template class HamiltonianAnalyzer<1>;
132 extern template class HamiltonianAnalyzer<2>;
133 extern template class HamiltonianAnalyzer<3>;
134 #endif
135
136}
137}
138#endif
Analyze averages and block averages of several real variables.
void setName(int i, std::string name)
Set name of variable.
void setValue(int i, double value)
Set current value, used by compute function.
Compute averages and output block averages of Hamiltonian components.
Simulator< D > * simulatorPtr_
Pointer to parent Simulator.
System< D > * systemPtr_
Pointer to the parent system.
void compute()
Compute and store values of Hamiltonian components.
System< D > & system()
Return reference to parent system.
Simulator< D > & simulator()
Return reference to parent Simulator.
virtual void readParameters(std::istream &in)
Read interval and output file name.
HamiltonianAnalyzer(Simulator< D > &simulator, System< D > &system)
Constructor.
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
Loading (input) archive for binary istream.
Saving / output archive for binary ostream.
void setClassName(const char *className)
Set class name string.
virtual void save(Serializable::OArchive &ar)
Saves all parameters to an archive.
virtual void loadParameters(Serializable::IArchive &ar)
Load state from archive, without adding Begin and End lines.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.