PSCF v1.2
Interaction.h
1#ifndef PSCF_INTERACTION_H
2#define PSCF_INTERACTION_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 <util/param/ParamComposite.h> // base class
12#include <util/containers/Array.h> // argument (template)
13#include <util/containers/Matrix.h> // argument (template)
14#include <util/global.h>
15
16namespace Pscf {
17
18 using namespace Util;
19
26 {
27
28 public:
29
34
38 virtual ~Interaction();
39
45 void setNMonomer(int nMonomer);
46
52 virtual void readParameters(std::istream& in);
53
61 void setChi(int i, int j, double chi);
62
68 virtual
69 double fHelmholtz(Array<double> const & c) const;
70
77 virtual
78 void computeW(Array<double> const & c, Array<double>& w)
79 const;
80
88 virtual
89 void computeC(Array<double> const & w, Array<double>& c, double& xi)
90 const;
91
98 virtual
99 void computeXi(Array<double> const & w, double& xi)
100 const;
101
114 virtual
115 void computeDwDc(Array<double> const & c, Matrix<double>& dWdC)
116 const;
117
121 DMatrix<double> const & chi() const;
122
129 double chi(int i, int j) const;
130
137 double chiInverse(int i, int j) const;
138
142 int nMonomer() const;
143
144 private:
145
146 // Symmetric matrix of interaction parameters.
147 DMatrix<double> chi_;
148
149 // Inverse of matrix chi_.
150 DMatrix<double> chiInverse_;
151
153 int nMonomer_;
154
159 void updateMembers();
160
161 };
162
163 // Inline function
164
165 inline int Interaction::nMonomer() const
166 { return nMonomer_; }
167
168 inline DMatrix<double> const & Interaction::chi() const
169 { return chi_; }
170
171 inline double Interaction::chi(int i, int j) const
172 { return chi_(i, j); }
173
174 inline double Interaction::chiInverse(int i, int j) const
175 { return chiInverse_(i, j); }
176
177} // namespace Pscf
178#endif
Flory-Huggins excess free energy model.
Definition Interaction.h:26
virtual double fHelmholtz(Array< double > const &c) const
Compute excess Helmholtz free energy per monomer.
virtual void computeDwDc(Array< double > const &c, Matrix< double > &dWdC) const
Compute second derivatives of free energy.
double chiInverse(int i, int j) const
Return one element of the inverse chi matrix.
virtual void readParameters(std::istream &in)
Read chi parameters.
DMatrix< double > const & chi() const
Return the chi matrix by const reference.
virtual void computeW(Array< double > const &c, Array< double > &w) const
Compute chemical potential from concentration.
virtual void computeC(Array< double > const &w, Array< double > &c, double &xi) const
Compute concentration from chemical potential fields.
void setChi(int i, int j, double chi)
Change one element of the chi matrix.
void setNMonomer(int nMonomer)
Set the number of monomer types.
Interaction()
Constructor.
virtual ~Interaction()
Destructor.
int nMonomer() const
Get number of monomer types.
virtual void computeXi(Array< double > const &w, double &xi) const
Compute Langrange multiplier xi from chemical potential fields.
Array container class template.
Definition Array.h:34
Dynamically allocated Matrix.
Definition DMatrix.h:25
Two-dimensional array container template (abstract).
Definition Matrix.h:32
An object that can read multiple parameters from file.
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.