PSCF v1.2
rpc/solvers/Polymer.h
1#ifndef RPC_POLYMER_H
2#define RPC_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/cpu/RField.h>
13#include <pscf/solvers/PolymerTmpl.h>
14#include <util/containers/FArray.h> // member template
15
16namespace Pscf {
17namespace Rpc {
18
19 using namespace Pscf::Prdc::Cpu;
20
41 template <int D>
42 class Polymer : public PolymerTmpl< Block<D> >
43 {
44
45 public:
46
51
55 Polymer();
56
60 ~Polymer();
61
74 void setPhi(double phi);
75
88 void setMu(double mu);
89
95 void setNParams(int nParam);
96
104 void clearUnitCellData();
105
124 void compute(DArray< RField<D> > const & wFields,
125 double phiTot = 1.0);
126
134 void computeStress();
135
145 double stress(int n) const;
146
147 // Inherited public functions
148 using Base::nBlock;
149 using Base::block;
150 using Base::ensemble;
151 using Base::solve;
152 using Base::length;
153
154 protected:
155
157 using Base::phi_;
158 using Base::mu_;
159
160 private:
161
163 FArray<double, 6> stress_;
164
166 int nParam_;
167
168 };
169
171 template <int D>
172 inline double Polymer<D>::stress(int n) const
173 { return stress_[n]; }
174
175 #ifndef RPC_POLYMER_TPP
176 // Supress implicit instantiation
177 extern template class Polymer<1>;
178 extern template class Polymer<2>;
179 extern template class Polymer<3>;
180 #endif
181
182}
183}
184#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 one polymer species.
double stress(int n) const
Get precomputed contribution to stress from this species.
void compute(DArray< RField< D > > const &wFields, double phiTot=1.0)
Compute solution to MDE and block concentrations.
Polymer()
Default constructor.
void setMu(double mu)
Set value of mu (chemical potential), if ensemble is closed.
PolymerTmpl< Block< D > > Base
Base class typedef (PolymerTmpl instance)
void computeStress()
Compute stress contribution from this species.
void setPhi(double phi)
Set value of phi (volume fraction), if ensemble is closed.
void clearUnitCellData()
Clear all data that depends on unit cell parameters.
void setNParams(int nParam)
Store the number of unit cell parameters.
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 and FFTs for periodic boundary conditions (CPU)
Definition CField.cpp:12
PSCF package top-level namespace.
Definition param_pc.dox:1