PSCF v1.2
r1d/System.h
1#ifndef R1D_SYSTEM_H
2#define R1D_SYSTEM_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 <util/param/ParamComposite.h> // base class
12#include <r1d/misc/FieldIo.h> // member
13#include <r1d/solvers/Mixture.h> // member
14#include <r1d/domain/Domain.h> // member
15#include <pscf/homogeneous/Mixture.h> // member
16#include <util/misc/FileMaster.h> // member
17#include <util/containers/DArray.h> // member template
18#include <util/containers/Array.h> // function parameter
19
20namespace Pscf {
21
22 class Interaction;
23
24namespace R1d
25{
26
27 class Iterator;
28 class IteratorFactory;
29 class Sweep;
30 class SweepFactory;
31 using namespace Util;
32
64 class System : public ParamComposite
65 {
66
67 public:
68
71
74
77
80
84 System();
85
89 ~System();
90
94
98 void setOptions(int argc, char **argv);
99
105 virtual void readParam(std::istream& in);
106
110 void readParam();
111
117 virtual void readParameters(std::istream& in);
118
124 void readCommands(std::istream& in);
125
129 void readCommands();
130
133
134
150 void compute();
151
163 int iterate(bool isContinuation = false);
164
176 void sweep();
177
179
181
189 void computeFreeEnergy();
190
197 double fHelmholtz() const;
198
205 double pressure() const;
206
208
210
216 void writeParamNoSweep(std::ostream& out) const;
217
227 void writeThermo(std::ostream& out) const;
228
231
232
238 void writeW(std::string const & filename) const;
239
245 void writeC(std::string const & filename) const;
246
257 void writeBlockC(std::string const & filename) const;
258
268 void writeQSlice(std::string const & filename,
269 int polymerId, int blockId,
270 int directionId, int segmentId) const;
271
280 void writeQTail(std::string const & filename, int polymerId,
281 int blockId, int directionId) const;
282
291 void writeQ(std::string const & filename, int polymerId,
292 int blockId, int directionId) const;
293
312 void writeQAll(std::string const & basename) const;
313
315
317
324
330 DArray<WField> const & wFields() const;
331
337 WField& wField(int monomerId);
338
344 WField const & wField(int monomerId) const;
345
352
358 DArray<CField> const & cFields() const;
359
365 CField& cField(int monomerId);
366
372 CField const & cField(int monomerId) const;
373
377
381 Mixture& mixture();
382
386 Mixture const & mixture() const;
387
392
396 Interaction const & interaction() const;
397
401 Domain& domain();
402
407
412
417
419
420 private:
421
425 Mixture mixture_;
426
430 Domain domain_;
431
435 FileMaster fileMaster_;
436
440 FieldIo fieldIo_;
441
445 Homogeneous::Mixture homogeneous_;
446
450 Interaction* interactionPtr_;
451
455 Iterator* iteratorPtr_;
456
460 IteratorFactory* iteratorFactoryPtr_;
461
465 Sweep* sweepPtr_;
466
470 SweepFactory* sweepFactoryPtr_;
471
477 DArray<WField> wFields_;
478
484 DArray<CField> cFields_;
485
489 mutable DArray<double> f_;
490
494 mutable DArray<double> c_;
495
499 double fHelmholtz_;
500
508 double fIdeal_;
509
513 double fInter_;
514
518 double pressure_;
519
523 bool hasMixture_;
524
528 bool hasDomain_;
529
533 bool hasFields_;
534
538 bool hasSweep_;
539
540 // Private member functions
541
545 void allocateFields();
546
550 void initHomogeneous();
551
558 void readEcho(std::istream& in, std::string& string) const;
559
560 };
561
562 // Inline member functions
563
564 /*
565 * Get the associated Mixture object by reference.
566 */
568 { return mixture_; }
569
570 /*
571 * Get the associated Mixture object by const reference.
572 */
573 inline Mixture const & System::mixture() const
574 { return mixture_; }
575
576 /*
577 * Get the Interaction (excess free energy model).
578 */
580 {
581 UTIL_ASSERT(interactionPtr_);
582 return *interactionPtr_;
583 }
584
585 /*
586 * Get the Interaction (excess free energy) by const reference.
587 */
588 inline Interaction const & System::interaction() const
589 {
590 UTIL_ASSERT(interactionPtr_);
591 return *interactionPtr_;
592 }
593
594 /*
595 * Get the spatial Domain.
596 */
598 { return domain_; }
599
600 /*
601 * Get the Homogeneous::Mixture object.
602 */
603 inline
605 { return homogeneous_; }
606
607 /*
608 * Get the Iterator.
609 */
611 {
612 UTIL_ASSERT(iteratorPtr_);
613 return *iteratorPtr_;
614 }
615
616 /*
617 * Get the FileMaster.
618 */
620 { return fileMaster_; }
621
622 /*
623 * Get an array of all monomer excess chemical potential fields.
624 */
625 inline
627 { return wFields_; }
628
629 /*
630 * Get a const array of all monomer excess chemical potential fields.
631 */
632 inline
634 { return wFields_; }
635
636 /*
637 * Get a single monomer excess chemical potential field.
638 */
639 inline
641 { return wFields_[id]; }
642
643 /*
644 * Get a single const monomer excess chemical potential field.
645 */
646 inline
647 System::WField const & System::wField(int id) const
648 { return wFields_[id]; }
649
650 /*
651 * Get array of all monomer concentration fields.
652 */
653 inline
655 { return cFields_; }
656
657 /*
658 * Get const array of all monomer concentration fields.
659 */
660 inline
662 { return cFields_; }
663
664 /*
665 * Get a single monomer concentration field.
666 */
668 { return cFields_[id]; }
669
670 /*
671 * Get a single const monomer concentration field.
672 */
673 inline System::CField const & System::cField(int id) const
674 { return cFields_[id]; }
675
676 /*
677 * Get precomputed Helmoltz free energy per monomer / kT.
678 */
679 inline double System::fHelmholtz() const
680 { return fHelmholtz_; }
681
682 /*
683 * Get precomputed pressure (units of kT / monomer volume).
684 */
685 inline double System::pressure() const
686 { return pressure_; }
687
688} // namespace R1d
689} // namespace Pscf
690#endif
A spatially homogeneous mixture.
Flory-Huggins excess free energy model.
Definition Interaction.h:26
One-dimensional spatial domain and discretization grid.
Read and write fields to file.
Factory for subclasses of Iterator.
Base class for iterative solvers for SCF equations.
Mixture of polymers and solvents.
Default Factory for subclasses of Sweep.
Solve a sequence of problems along a line in parameter space.
Main class in SCFT simulation of one system.
Definition r1d/System.h:65
void compute()
Solve the modified diffusion equation once, without iteration.
void readParam()
Read input parameters from default param file.
double fHelmholtz() const
Get precomputed Helmholtz free energy per monomer / kT.
Definition r1d/System.h:679
double pressure() const
Get precomputed pressure x monomer volume kT.
Definition r1d/System.h:685
void writeC(std::string const &filename) const
Write concentration fields in symmetrized basis format.
int iterate(bool isContinuation=false)
Iteratively solve a SCFT problem.
void writeQSlice(std::string const &filename, int polymerId, int blockId, int directionId, int segmentId) const
Write slice of a propagator at fixed s in r-grid format.
Interaction & interaction()
Get interaction (i.e., excess free energy) by reference.
Definition r1d/System.h:579
CField & cField(int monomerId)
Get chemical potential field for a specific monomer type.
Definition r1d/System.h:667
DArray< CField > & cFields()
Get array of all chemical potential fields.
Definition r1d/System.h:654
Homogeneous::Mixture & homogeneous()
Get homogeneous mixture (for reference calculations).
Definition r1d/System.h:604
void computeFreeEnergy()
Compute free energy density and pressure for current fields.
void writeW(std::string const &filename) const
Write chemical potential fields in symmetrized basis format.
void readCommands()
Read commands from default command file.
Iterator & iterator()
Get the Iterator by reference.
Definition r1d/System.h:610
Domain & domain()
Get spatial domain (including grid info) by reference.
Definition r1d/System.h:597
DArray< double > CField
Monomer concentration / volume fraction field type.
Definition r1d/System.h:76
void writeQAll(std::string const &basename) const
Write all propagators of all blocks, each to a separate file.
FileMaster & fileMaster()
Get FileMaster by reference.
Definition r1d/System.h:619
void setOptions(int argc, char **argv)
Process command line options.
WField & wField(int monomerId)
Get chemical potential field for a specific monomer type.
Definition r1d/System.h:640
DArray< WField > & wFields()
Get array of all chemical potential fields.
Definition r1d/System.h:626
void writeQ(std::string const &filename, int polymerId, int blockId, int directionId) const
Write one propagator for one block, in r-grid format.
void writeQTail(std::string const &filename, int polymerId, int blockId, int directionId) const
Write the final slice of a propagator in r-grid format.
DArray< double > WField
Monomer chemical potential field type.
Definition r1d/System.h:73
virtual void readParameters(std::istream &in)
Read input parameters (without opening and closing lines).
void writeBlockC(std::string const &filename) const
Write c-fields for all blocks and solvents in r-grid format.
void sweep()
Sweep in parameter space, solving an SCF problem at each point.
DArray< double > Field
Generic Field type.
Definition r1d/System.h:70
void writeThermo(std::ostream &out) const
Write thermodynamic properties to a file.
void writeParamNoSweep(std::ostream &out) const
Write parameter file to an ostream, omitting any Sweep block.
~System()
Destructor.
Mixture & mixture()
Get Mixture by reference.
Definition r1d/System.h:567
System()
Constructor.
Dynamically allocatable contiguous array template.
A FileMaster manages input and output files for a simulation.
Definition FileMaster.h:143
An object that can read multiple parameters from file.
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
Definition global.h:75
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.