PSCF v1.2
rpg/solvers/Polymer.h
1#ifndef RPG_POLYMER_H
2#define RPG_POLYMER_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 "Block.h"
12#include <prdc/cuda/RField.h>
13#include <pscf/solvers/PolymerTmpl.h>
14#include <util/containers/FArray.h>
15
16namespace Pscf {
17
18 namespace Prdc {
19 template <int D> class UnitCell;
20 }
21
22namespace Rpg {
23
24 template <int D> class WaveList;
25
26 using namespace Util;
27 using namespace Pscf::Prdc;
28 using namespace Pscf::Prdc::Cuda;
29
48 template <int D>
49 class Polymer : public PolymerTmpl< Block<D> >
50 {
51
52 public:
53
58
62 Polymer();
63
67 ~Polymer();
68
74 void setPhi(double phi);
75
81 void setMu(double mu);
82
88 void setNParams(int nParams);
89
108 void compute(DArray< RField<D> > const & wFields,
109 double phiTot = 1.0);
110
114 void computeStress();
115
124 double stress(int n);
125
126 // public inherited functions with non-dependent names
127 using Base::nBlock;
128 using Base::block;
129 using Base::ensemble;
130 using Base::solve;
131 using Base::length;
132
133 protected:
134
135 // protected inherited function with non-dependent names
137
138 private:
139
141 FArray<double, 6> stress_;
142
144 int nParams_;
145
146 using Base::phi_;
147 using Base::mu_;
148
149 };
150
151 template <int D>
152 double Polymer<D>::stress(int n)
153 { return stress_[n]; }
154
155 #ifndef RPG_POLYMER_TPP
156 // Suppress implicit instantiation
157 extern template class Polymer<1>;
158 extern template class Polymer<2>;
159 extern template class Polymer<3>;
160 #endif
161
162}
163}
164//#include "Polymer.tpp"
165#endif
Descriptor and MDE solver for an acyclic block polymer.
Definition PolymerTmpl.h:42
virtual void solve(double phiTot=1.0)
Field of real double precision values on an FFT mesh.
Descriptor and solver for a branched polymer species.
void computeStress()
Compute stress from a polymer chain, needs a pointer to basis.
void setMu(double mu)
Set the mu (chemical potential) for this species.
void compute(DArray< RField< D > > const &wFields, double phiTot=1.0)
Compute solution to MDE and block concentrations.
void setPhi(double phi)
Set the phi (volume fraction) for this species.
void setNParams(int nParams)
Store the number of lattice parameters in the unit cell.
double stress(int n)
Get derivative of free energy w/ respect to a unit cell parameter.
PolymerTmpl< Block< D > > Base
Alias for base class.
double phi() const
Get the overall volume fraction for this species.
Definition Species.h:90
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 mu() const
Get the chemical potential for this species (units kT=1).
Definition Species.h:96
Dynamically allocatable contiguous array template.
A fixed size (static) contiguous array template.
Definition FArray.h:47
void setClassName(const char *className)
Set class name string.
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.