PSCF v1.2
Species.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "Species.h"
9
10namespace Pscf
11{
12
13 using namespace Util;
14
15 /*
16 * Default constructor.
17 */
19 : phi_(0.0),
20 mu_(0.0),
21 q_(0.0),
22 ensemble_(Species::Closed)
23 {}
24
25 /*
26 * Extract a Species::Ensemble from an istream as a string.
27 */
28 std::istream& operator >> (std::istream& in, Species::Ensemble& policy)
29 {
30 std::string buffer;
31 in >> buffer;
32 if (buffer == "Closed" || buffer == "closed") {
33 policy = Species::Closed;
34 } else
35 if (buffer == "Open" || buffer == "open") {
36 policy = Species::Open;
37 } else {
38 UTIL_THROW("Invalid Species::Ensemble string in operator >>");
39 }
40 return in;
41 }
42
43 /*
44 * Insert a Species::Ensemble to an ostream as a string.
45 */
46 std::ostream& operator<<(std::ostream& out, Species::Ensemble policy)
47 {
48 if (policy == Species::Closed) {
49 out << "Closed";
50 } else
51 if (policy == Species::Open) {
52 out << "Open";
53 } else
54 if (policy == Species::Unknown) {
55 out << "Unknown";
56 } else {
57 std::cout << "Invalid Species::Ensemble value on input" << std::endl;
58 UTIL_THROW("Unrecognized value for Species::Ensemble");
59 }
60 return out;
61 }
62
63} // namespace Pscf
Base class for a molecular species (polymer or solvent).
Definition Species.h:30
Species()
Default constructor.
Definition Species.cpp:18
Ensemble
Statistical ensemble for number of molecules.
Definition Species.h:36
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Definition Pair.h:44
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Definition Pair.h:57