PSCF v1.2
rpc/fts/analyzer/ChiDerivative.tpp
1#ifndef RPC_CHI_DERIVATIVE_TPP
2#define RPC_CHI_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 "ChiDerivative.h"
12
13#include <rpc/System.h>
14#include <rpc/fts/simulator/Simulator.h>
15
16namespace Pscf {
17namespace Rpc
18{
19
20 using namespace Util;
21
22 /*
23 * Constructor.
24 */
25 template <int D>
27 System<D>& system)
28 : AverageAnalyzer<D>(simulator, system)
29 { setClassName("ChiDerivative"); }
30
31 /*
32 * Destructor.
33 */
34 template <int D>
37
38 template <int D>
40 {
41 UTIL_CHECK(system().w().hasData());
42
43 // For AB diblock
44 const int nMonomer = system().mixture().nMonomer();
45 UTIL_CHECK(nMonomer == 2);
46
47 const double vSystem = system().domain().unitCell().volume();
48 const double vMonomer = system().mixture().vMonomer();
49 const double nMonomerSystem = vSystem / vMonomer;
50 const int meshSize = system().domain().mesh().size();
51 double chi= system().interaction().chi(0,1);
52
53 /*
54 * Compute field Hamiltonian per monomer.
55 * The fieldHamitonian is calculated in the computeHamiltonian() function,
56 * located in rpc/fts/Simulator.tpp
57 */
58 if (!system().hasCFields()) {
59 system().compute();
60 }
61 if (!simulator().hasWc()){
62 simulator().computeWc();
63 }
64 if (!simulator().hasHamiltonian()) {
65 simulator().computeHamiltonian();
66 }
67 double hField = simulator().fieldHamiltonian()/nMonomerSystem;
68
69 // Compute derivative of free energy with repect to chi_bare per monomer
70 double dfdchi = -(hField - 0.5*simulator().sc(nMonomer - 1))/chi + 1.0/4.0;
71
72 dfdchi *= nMonomerSystem;
73
74 // With N term
75 dfdchi += double(meshSize)/(2.0 * chi);
76
77 return dfdchi;
78 }
79
80 template <int D>
81 void ChiDerivative<D>::outputValue(int step, double value)
82 {
83 if (simulator().hasRamp() && nSamplePerOutput() == 1) {
84 double chi= system().interaction().chi(0,1);
85
86 UTIL_CHECK(outputFile_.is_open());
87 outputFile_ << Int(step);
88 outputFile_ << Dbl(chi);
89 outputFile_ << Dbl(value);
90 outputFile_ << "\n";
91 } else {
93 }
94 }
95
96}
97}
98#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 chi.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
ChiDerivative(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
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.