PSCF v1.2
BlockTmpl.h
1#ifndef PSCF_BLOCK_TMPL_H
2#define PSCF_BLOCK_TMPL_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/BlockDescriptor.h> // base class
12#include <util/containers/Pair.h> // member template
13
14#include <cmath>
15
16namespace Pscf
17{
18
19 using namespace Util;
20
104 template <class TP>
106 {
107
108 public:
109
110 // Modified diffusion equation propagator for one block.
111 typedef TP Propagator;
112
113 // Monomer concentration field.
114 typedef typename TP::CField CField;
115
116 // Chemical potential field.
117 typedef typename TP::WField WField;
118
123
127 virtual ~BlockTmpl();
128
134 virtual void setKuhn(double kuhn);
135
145 TP& propagator(int directionId);
146
154 TP const & propagator(int directionId) const;
155
159 typename TP::CField& cField();
160
164 typename TP::CField const & cField() const;
165
169 double kuhn() const;
170
171 private:
172
174 Pair<Propagator> propagators_;
175
177 CField cField_;
178
180 double kuhn_;
181
182 };
183
184 // Inline member functions
185
186 /*
187 * Get a Propagator indexed by direction.
188 */
189 template <class TP>
190 inline
191 TP& BlockTmpl<TP>::propagator(int directionId)
192 { return propagators_[directionId]; }
193
194 /*
195 * Get a const Propagator indexed by direction.
196 */
197 template <class TP>
198 inline
199 TP const & BlockTmpl<TP>::propagator(int directionId) const
200 { return propagators_[directionId]; }
201
202 /*
203 * Get the monomer concentration field.
204 */
205 template <class TP>
206 inline
207 typename TP::CField& BlockTmpl<TP>::cField()
208 { return cField_; }
209
210 /*
211 * Get the const monomer concentration field.
212 */
213 template <class TP>
214 inline
215 typename TP::CField const & BlockTmpl<TP>::cField() const
216 { return cField_; }
217
218 /*
219 * Get the monomer statistical segment length.
220 */
221 template <class TP>
222 inline double BlockTmpl<TP>::kuhn() const
223 { return kuhn_; }
224
225 // Non-inline functions
226
227 /*
228 * Constructor.
229 */
230 template <class TP>
232 : propagators_(),
233 cField_(),
234 kuhn_(0.0)
235 {
236 propagator(0).setDirectionId(0);
237 propagator(1).setDirectionId(1);
238 propagator(0).setPartner(propagator(1));
239 propagator(1).setPartner(propagator(0));
240 }
241
242 /*
243 * Destructor.
244 */
245 template <class TP>
248
249 /*
250 * Set the monomer statistical segment length.
251 */
252 template <class TP>
253 void BlockTmpl<TP>::setKuhn(double kuhn)
254 { kuhn_ = kuhn; }
255
256}
257#endif
Description of a linear homopolymer block within a block polymer.
Class template for a block in a block copolymer.
Definition BlockTmpl.h:106
virtual ~BlockTmpl()
Destructor.
Definition BlockTmpl.h:246
double kuhn() const
Get monomer statistical segment length.
Definition BlockTmpl.h:222
BlockTmpl()
Constructor.
Definition BlockTmpl.h:231
virtual void setKuhn(double kuhn)
Set monomer statistical segment length.
Definition BlockTmpl.h:253
TP & propagator(int directionId)
Get a Propagator for a specified direction.
Definition BlockTmpl.h:191
TP::CField & cField()
Get the associated monomer concentration field.
Definition BlockTmpl.h:207
TP const & propagator(int directionId) const
Get a const Propagator for a specified direction.
Definition BlockTmpl.h:199
TP::CField const & cField() const
Get the associated const monomer concentration field.
Definition BlockTmpl.h:215
An array of exactly 2 objects.
Definition Pair.h:24
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.