PSCF v1.2
rpc/solvers/Mixture.h
1#ifndef RPC_MIXTURE_H
2#define RPC_MIXTURE_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 "Polymer.h"
12#include "Solvent.h"
13#include <pscf/solvers/MixtureTmpl.h>
14#include <pscf/inter/Interaction.h>
15#include <pscf/chem/Monomer.h>
16#include <util/containers/DArray.h>
17#include <util/containers/FArray.h>
18
19#include <iostream>
20
21namespace Pscf {
22 template <int D> class Mesh;
23 namespace Prdc {
24 namespace Cpu {
25 template <int D> class FFT;
26 template <int D> class RField;
27 }
28 }
29}
30
31namespace Pscf {
32namespace Rpc {
33
34 using namespace Pscf::Prdc::Cpu;
35
64 template <int D>
65 class Mixture : public MixtureTmpl< Polymer<D>, Solvent<D> >
66 {
67
68 public:
69
73 Mixture();
74
78 ~Mixture();
79
89 void readParameters(std::istream& in);
90
103 void associate(Mesh<D> const & mesh,
104 FFT<D> const & fft,
105 UnitCell<D> const & cell);
106
110 void allocate();
111
122 void clearUnitCellData();
123
134 void setKuhn(int monomerId, double kuhn);
135
166 void compute(DArray< RField<D> > const & wFields,
167 DArray< RField<D> >& cFields,
168 double phiTot = 1.0);
169
190 void createBlockCRGrid(DArray< RField<D> >& blockCFields) const;
191
203 void computeStress(double phiTot = 1.0);
204
216 double stress(int n) const;
217
225 bool isCanonical();
226
227 // Inherited public member functions with non-dependent names
235
236 protected:
237
238 // Inherited protected member functions with non-dependent names
242
243 private:
244
246 FArray<double, 6> stress_;
247
249 double ds_;
250
252 Mesh<D> const * meshPtr_;
253
255 int nParam_;
256
258 bool hasStress_;
259
260 // Private function
261
263 Mesh<D> const & mesh() const;
264
265 };
266
267 // Inline member function
268
269 // Stress with respect to unit cell parameter n.
270 template <int D>
271 inline double Mixture<D>::stress(int n) const
272 {
273 UTIL_CHECK(hasStress_);
274 return stress_[n];
275 }
276
277 // Get Mesh<D> by constant reference (private).
278 template <int D>
279 inline Mesh<D> const & Mixture<D>::mesh() const
280 {
281 UTIL_ASSERT(meshPtr_);
282 return *meshPtr_;
283 }
284
285 #ifndef RPC_MIXTURE_TPP
286 extern template class Mixture<1>;
287 extern template class Mixture<2>;
288 extern template class Mixture<3>;
289 #endif
290
291} // namespace Rpc
292} // namespace Pscf
293#endif
Description of a regular grid of points in a periodic domain.
A mixture of polymer and solvent species.
Definition MixtureTmpl.h:27
Fourier transform wrapper.
Field of real double precision values on an FFT mesh.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
Solver for a mixture of polymers and solvents.
void associate(Mesh< D > const &mesh, FFT< D > const &fft, UnitCell< D > const &cell)
Create an association with a mesh and fft, and allocate memory.
bool isCanonical()
Is this mixture being treated in canonical ensemble?
void compute(DArray< RField< D > > const &wFields, DArray< RField< D > > &cFields, double phiTot=1.0)
Compute partition functions and concentrations.
void allocate()
Allocate required internal memory for all solvers.
void readParameters(std::istream &in)
Read all parameters and initialize.
double stress(int n) const
Get derivative of free energy w/ respect to a unit cell parameter.
void setKuhn(int monomerId, double kuhn)
Reset statistical segment length for one monomer type.
void computeStress(double phiTot=1.0)
Compute derivatives of free energy w/ respect to cell parameters.
void createBlockCRGrid(DArray< RField< D > > &blockCFields) const
Get c-fields for all blocks and solvents as array of r-grid fields.
void clearUnitCellData()
Clear all data in solvers that depends on the unit cell parameters.
Dynamically allocatable contiguous array template.
A fixed size (static) contiguous array template.
Definition FArray.h:47
ScalarParam< Type > & read(std::istream &in, const char *label, Type &value)
Add and read a new required ScalarParam < Type > object.
void setClassName(const char *className)
Set class name string.
ScalarParam< Type > & readOptional(std::istream &in, const char *label, Type &value)
Add and read a new optional ScalarParam < Type > object.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
Definition global.h:75
Fields and FFTs for periodic boundary conditions (CPU)
Definition CField.cpp:12
PSCF package top-level namespace.
Definition param_pc.dox:1