PSCF v1.2
rpc/fts/analyzer/HamiltonianAnalyzer.tpp
1#ifndef RPC_HAMILTONIAN_ANALYZER_TPP
2#define RPC_HAMILTONIAN_ANALYZER_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 "HamiltonianAnalyzer.h"
12
13#include <rpc/System.h>
14#include <rpc/fts/simulator/Simulator.h>
15//#include <util/accumulators/Average.h>
16
17namespace Pscf {
18namespace Rpc {
19
20 using namespace Util;
21
22 /*
23 * Constructor.
24 */
25 template <int D>
27 System<D>& system)
28 : AverageListAnalyzer<D>(system),
29 simulatorPtr_(&simulator),
30 systemPtr_(&(simulator.system())),
31 hasAnalyzeChi_(false),
32 idealId_(-1),
33 fieldId_(-1),
34 totalId_(-1)
35 { setClassName("HamiltonianAnalyzer"); }
36
37 /*
38 * Read interval and outputFileName.
39 */
40 template <int D>
42 {
44
45 idealId_ = 0;
46 fieldId_ = 1;
47 totalId_ = 2;
49
50 setName(idealId_, "ideal");
51 setName(fieldId_, "field");
52 setName(totalId_, "total");
53 }
54
55 /*
56 * Output energy to file
57 */
58 template <int D>
60 {
61 UTIL_CHECK(system().w().hasData());
62 if (!system().hasCFields()) {
63 system().compute();
64 }
65 if (!simulator().hasWc()){
66 simulator().computeWc();
67 }
68 UTIL_CHECK(simulator().hasWc());
69
70 #if 0
71 if (!simulator().hasWc()){
72 if (!hasAnalyzeChi_){
73 simulator().analyzeChi();
74 hasAnalyzeChi_ = true;
75 }
76 system().compute();
77 simulator().computeWc();
78 }
79 #endif
80
81 if (!simulator().hasHamiltonian()) {
82 simulator().computeHamiltonian();
83 }
84
85 double ideal = simulator().idealHamiltonian();
86 setValue(idealId_, ideal);
87
88 double field = simulator().fieldHamiltonian();
89 setValue(fieldId_, field);
90
91 double total = simulator().hamiltonian();
92 setValue(totalId_, total);
93 }
94
95}
96}
97#endif
Analyze averages and block averages of several real variables.
void initializeAccumulators(int nValue)
Instantiate Average accumulators and set nSamplePerOutput set nValue.
virtual void readParameters(std::istream &in)
Read interval, outputFileName and (optionally) nSamplePerOutput.
void setClassName(const char *className)
Set class name string.
void compute()
Compute and store values of Hamiltonian components.
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
#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.