Loading [MathJax]/extensions/TeX/AMSsymbols.js
PSCF v1.2
MixtureTmpl.h
1#ifndef PSCF_MIXTURE_TMPL_H
2#define PSCF_MIXTURE_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/Monomer.h>
12#include <util/param/ParamComposite.h>
13#include <util/containers/DArray.h>
14
15namespace Pscf
16{
17
18 using namespace Util;
19
25 template <class TP, class TS>
27 {
28 public:
29
30 // Public typedefs
31
35 typedef TP Polymer;
36
40 typedef TS Solvent;
41
42 // Public member functions
43
48
53
59 virtual void readParameters(std::istream& in);
60
63
69 Monomer const & monomer(int id) const;
70
76 Polymer& polymer(int id);
77
83 Polymer const & polymer(int id) const;
84
90 Solvent& solvent(int id);
91
97 Solvent const & solvent(int id) const;
98
102
106 int nMonomer() const;
107
111 int nPolymer() const;
112
116 int nBlock() const;
117
121 int nSolvent() const;
122
126 double vMonomer() const;
127
137 void setVmonomer(double vMonomer);
138
140
141 protected:
142
148 Monomer& monomer(int id);
149
150 private:
151
155 DArray<Monomer> monomers_;
156
162 DArray<Polymer> polymers_;
163
169 DArray<Solvent> solvents_;
170
174 int nMonomer_;
175
179 int nPolymer_;
180
184 int nSolvent_;
185
189 int nBlock_;
190
194 double vMonomer_;
195
196 };
197
198 // Inline member functions
199
200 template <class TP, class TS>
202 { return nMonomer_; }
203
204 template <class TP, class TS>
206 { return nPolymer_; }
207
208 template <class TP, class TS>
210 { return nSolvent_; }
211
212 template <class TP, class TS>
213 inline int MixtureTmpl<TP,TS>::nBlock() const
214 { return nBlock_; }
215
216 template <class TP, class TS>
217 inline Monomer const & MixtureTmpl<TP,TS>::monomer(int id) const
218 {
219 UTIL_CHECK(id < nMonomer_);
220 return monomers_[id];
221 }
222
223 template <class TP, class TS>
225 {
226 UTIL_CHECK(id < nMonomer_);
227 return monomers_[id];
228 }
229
230 template <class TP, class TS>
232 {
233 UTIL_CHECK(id < nPolymer_);
234 return polymers_[id];
235 }
236
237 template <class TP, class TS>
238 inline TP const & MixtureTmpl<TP,TS>::polymer(int id) const
239 {
240 UTIL_CHECK(id < nPolymer_);
241 return polymers_[id];
242 }
243
244 template <class TP, class TS>
246 {
247 UTIL_CHECK(id < nSolvent_);
248 return solvents_[id];
249 }
250
251 template <class TP, class TS>
252 inline TS const & MixtureTmpl<TP,TS>::solvent(int id) const
253 {
254 UTIL_CHECK(id < nSolvent_);
255 return solvents_[id];
256 }
257
258 template <class TP, class TS>
259 inline double MixtureTmpl<TP,TS>::vMonomer() const
260 { return vMonomer_; }
261
262 template <class TP, class TS>
263 inline void MixtureTmpl<TP,TS>::setVmonomer(double vMonomer)
264 { vMonomer_ = vMonomer; }
265
266 // Non-inline member functions
267
268 /*
269 * Constructor.
270 */
271 template <class TP, class TS>
273 : ParamComposite(),
274 monomers_(),
275 polymers_(),
276 solvents_(),
277 nMonomer_(0),
278 nPolymer_(0),
279 nSolvent_(0),
280 nBlock_(0),
281 vMonomer_(1.0)
282 {}
283
284 /*
285 * Destructor.
286 */
287 template <class TP, class TS>
290
291 /*
292 * Read all parameters and initialize.
293 */
294 template <class TP, class TS>
296 {
297 // Read nMonomer and monomers array
298 read<int>(in, "nMonomer", nMonomer_);
299 monomers_.allocate(nMonomer_);
300 for (int i = 0; i < nMonomer_; ++i) {
301 monomers_[i].setId(i);
302 }
303 readDArray< Monomer >(in, "monomers", monomers_, nMonomer_);
304
305 /*
306 * The input format for a single monomer is defined in the istream
307 * extraction operation (operator >>) for a Pscf::Monomer, in file
308 * pscf/chem/Monomer.cpp. The text representation contains only the
309 * value for the monomer statistical segment Monomer::kuhn.
310 */
311
312 // Read nPolymer
313 read<int>(in, "nPolymer", nPolymer_);
314 UTIL_CHECK(nPolymer_ > 0);
315
316 // Optionally read nSolvent, with nSolvent=0 by default
317 nSolvent_ = 0;
318 readOptional<int>(in, "nSolvent", nSolvent_);
319
320 // Read polymers and compute nBlock
321 nBlock_ = 0;
322 if (nPolymer_ > 0) {
323
324 polymers_.allocate(nPolymer_);
325 for (int i = 0; i < nPolymer_; ++i) {
326 readParamComposite(in, polymer(i));
327 nBlock_ = nBlock_ + polymer(i).nBlock();
328 }
329
330 // Set statistical segment lengths for all blocks
331 double kuhn;
332 int monomerId;
333 for (int i = 0; i < nPolymer_; ++i) {
334 for (int j = 0; j < polymer(i).nBlock(); ++j) {
335 monomerId = polymer(i).block(j).monomerId();
336 kuhn = monomer(monomerId).kuhn();
337 polymer(i).block(j).setKuhn(kuhn);
338 }
339 }
340
341 }
342
343 // Read solvents
344 if (nSolvent_ > 0) {
345
346 solvents_.allocate(nSolvent_);
347 for (int i = 0; i < nSolvent_; ++i) {
348 readParamComposite(in, solvent(i));
349 }
350
351 }
352
353 // Optionally read monomer reference value
354 vMonomer_ = 1.0; // Default value
355 readOptional(in, "vMonomer", vMonomer_);
356
357 }
358
359}
360#endif
A mixture of polymer and solvent species.
Definition MixtureTmpl.h:27
MixtureTmpl()
Constructor.
Polymer & polymer(int id)
Get a polymer object.
TS Solvent
Solvent species solver typename.
Definition MixtureTmpl.h:40
int nBlock() const
Get number of total blocks in the mixture across all polymers.
int nSolvent() const
Get number of solvent (point particle) species.
Solvent const & solvent(int id) const
Set a solvent solver object.
double vMonomer() const
Get monomer reference volume (set to 1.0 by default).
Polymer const & polymer(int id) const
Get a polymer object by const reference.
Monomer & monomer(int id)
Get a Monomer type descriptor (non-const reference).
void setVmonomer(double vMonomer)
Set value of monomer reference volume.
int nMonomer() const
Get number of monomer types.
~MixtureTmpl()
Destructor.
Monomer const & monomer(int id) const
Get a Monomer type descriptor (const reference).
Solvent & solvent(int id)
Set a solvent solver object.
TP Polymer
Polymer species solver typename.
Definition MixtureTmpl.h:35
virtual void readParameters(std::istream &in)
Read parameters from file and initialize.
int nPolymer() const
Get number of polymer species.
Descriptor for a monomer type.
Definition Monomer.h:33
Dynamically allocatable contiguous array template.
An object that can read multiple parameters from file.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.