PSCF v1.2
rpc/solvers/Solvent.h
1#ifndef RPC_SOLVENT_H
2#define RPC_SOLVENT_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 <pscf/chem/SolventDescriptor.h> // base class
12#include <rpc/solvers/Propagator.h> // typedefs
13
14namespace Pscf {
15 template <int D> class Mesh;
16}
17
18namespace Pscf {
19namespace Rpc {
20
21 using namespace Util;
22
29 template <int D>
31 {
32
33 public:
34
38 Solvent();
39
43 ~Solvent();
44
50 void associate(Mesh<D> const & mesh);
51
55 void allocate();
56
74 void compute(RField<D> const & wField, double phiTot = 1.0);
75
79 RField<D> const & cField() const;
80
81 // Inherited accessor functions
84 using Pscf::Species::q;
88
89 protected:
90
91 // Inherited protected data members
98
99 private:
100
102 RField<D> cField_;
103
105 Mesh<D> const * meshPtr_;
106
107 };
108
109 // Inline member function
110
111 /*
112 * Get monomer concentration field for this solvent.
113 */
114 template <int D>
115 inline RField<D> const & Solvent<D>::cField() const
116 { return cField_; }
117
118 #ifndef RPC_SOLVENT_TPP
119 // Supress implicit instantiation
120 extern template class Solvent<1>;
121 extern template class Solvent<2>;
122 extern template class Solvent<3>;
123 #endif
124
125}
126}
127#endif
Description of a regular grid of points in a periodic domain.
Field of real double precision values on an FFT mesh.
Solver and descriptor for a solvent species.
void associate(Mesh< D > const &mesh)
Create an association with the mesh.
RField< D > const & cField() const
Get the monomer concentration field for this solvent.
void compute(RField< D > const &wField, double phiTot=1.0)
Compute monomer concentration field, q and phi and/or mu.
void allocate()
Allocate memory for concentrationf field.
Descriptor for a solvent species.
double size_
Size of this block = volume / monomer reference volume.
double size() const
Get the size (number of monomers) in this solvent.
int monomerId() const
Get the monomer type id.
int monomerId_
Identifier for the associated monomer type.
double phi() const
Get the overall volume fraction for this species.
Definition Species.h:90
Ensemble ensemble_
Statistical ensemble for this species (open or closed).
Definition Species.h:83
Ensemble ensemble()
Get the statistical ensemble for this species (open or closed).
Definition Species.h:102
double phi_
Volume fraction, set by either setPhi or a compute function.
Definition Species.h:68
double mu_
Chemical potential, set by either setPhi or a compute function.
Definition Species.h:73
double q_
Partition function, set in subclass by a compute function.
Definition Species.h:78
double mu() const
Get the chemical potential for this species (units kT=1).
Definition Species.h:96
double q() const
Get the molecular partition function for this species.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.