PSCF v1.2
rpc/fts/analyzer/ConcentrationDerivative.tpp
1#ifndef RPC_CONCENTRATION_DERIVATIVE_TPP
2#define RPC_CONCENTRATION_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 "ConcentrationDerivative.h"
12
13#include <rpc/System.h>
14#include <rpc/fts/simulator/Simulator.h>
15#include <rpc/fts/perturbation/Perturbation.h>
16
17namespace Pscf {
18namespace Rpc
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("ConcentrationDerivative"); }
31
32 /*
33 * Destructor.
34 */
35 template <int D>
38
39 template <int D>
41 {
42 UTIL_CHECK(system().w().hasData());
43
44 // For AB diblock
45 const int nMonomer = system().mixture().nMonomer();
46 UTIL_CHECK(nMonomer == 2);
47
48 double vMonomer = system().mixture().vMonomer();
49 const int meshSize = system().domain().mesh().size();
50
51 if (!system().hasCFields()) {
52 system().compute();
53 }
54 if (!simulator().hasWc()){
55 simulator().computeWc();
56 }
57 if (!simulator().hasHamiltonian()) {
58 simulator().computeHamiltonian();
59 }
60
61 // Obtain Hamiltonian
62 double h = simulator().hamiltonian();
63
64 // Calculate derivative with respect to concentration
65 double dfdc = h * vMonomer;
66
67 // With N term
68 double Hh = double(meshSize)/2.0 * vMonomer;
69 dfdc -= Hh;
70
71 return dfdc;
72 }
73
74 template <int D>
75 void ConcentrationDerivative<D>::outputValue(int step, double value)
76 {
77 if (simulator().hasRamp() && nSamplePerOutput() == 1) {
78 double vMonomer = system().mixture().vMonomer();
79
80 UTIL_CHECK(outputFile_.is_open());
81 outputFile_ << Int(step);
82 outputFile_ << Dbl(vMonomer);
83 outputFile_ << Dbl(value);
84 outputFile_ << "\n";
85 } else {
87 }
88 }
89
90}
91}
92#endif
Analyze averages and block averages of several real variables.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
virtual void outputValue(int step, double value)
Output a sampled or block average value.
void setClassName(const char *className)
Set class name string.
ConcentrationDerivative(Simulator< D > &simulator, System< D > &system)
Constructor.
virtual double compute()
Compute and return the derivative of H w/ respect to concentration.
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.