PSCF v1.2
rpg/solvers/Solvent.h
1#ifndef RPG_SOLVENT_H
2#define RPG_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 <rpg/solvers/Propagator.h> // typedefs
13#include <prdc/cuda/RField.h>
14
15namespace Pscf {
16 template <int D> class Mesh;
17}
18
19namespace Pscf {
20namespace Rpg {
21
22 using namespace Util;
23 using namespace Pscf::Prdc;
24 using namespace Pscf::Prdc::Cuda;
25
31 template <int D>
33 {
34 public:
35
39 Solvent();
40
44 ~Solvent();
45
53 void associate(Mesh<D> const & mesh);
54
60 void allocate();
61
79 void compute(RField<D> const & wField, double phiTot = 1.0);
80
84 RField<D> const & cField() const;
85
86 // Inherited public accessor functions
89 using Pscf::Species::q;
93
94 protected:
95
96 // Inherited protected data members
103
104 private:
105
107 RField<D> cField_;
108
110 Mesh<D> const * meshPtr_;
111
112 };
113
114 /*
115 * Associate this object with a mesh.
116 */
117 template <int D>
118 inline void Solvent<D>::associate(Mesh<D> const & mesh)
119 {
120 UTIL_CHECK(mesh.size() > 1);
121 meshPtr_ = &mesh;
122 }
123
124 /*
125 * Allocate internal data containers.
126 */
127 template <int D>
129 {
130 UTIL_CHECK(meshPtr_);
131 cField_.allocate(meshPtr_->dimensions());
132 }
133
134 /*
135 * Get monomer concentration field for this solvent.
136 */
137 template <int D>
138 inline RField<D> const & Solvent<D>::cField() const
139 { return cField_; }
140
141}
142}
143#endif
Description of a regular grid of points in a periodic domain.
int size() const
Get total number of grid points.
Definition Mesh.h:229
Field of real double precision values on an FFT mesh.
Solver and descriptor for a solvent species.
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 internal data containers.
void associate(Mesh< D > const &mesh)
Associate this object with a mesh.
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.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
Fields, FFTs, and utilities for periodic boundary conditions (CUDA)
Definition CField.cu:12
Periodic fields and crystallography.
Definition CField.cpp:11
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.