#include <PrjAirflowElements.hpp>
Public Member Functions | |
Constructors and Destructors | |
AfeFlow () | |
Create a new object with default values. More... | |
AfeFlow (int nr, int icon, std::string name, std::string desc) | |
Create a new object. More... | |
AfeFlow (int nr, int icon, std::string name, std::string desc, double Flow, int u_F) | |
Create a new object. More... | |
AfeFlow (int nr, int icon, std::string name, std::string desc, std::string Flow, int u_F) | |
Create a new object. More... | |
AfeFlow (const AfeFlow &other) | |
Create a new object from another object. More... | |
~AfeFlow ()=default | |
Destroy the object. More... | |
Operators | |
AfeFlow & | operator= (const AfeFlow &other) |
Copy operator. More... | |
bool | operator== (const AfeFlow &other) const |
Equality operator. More... | |
bool | operator!= (const AfeFlow &other) const |
Inequality operator. More... | |
Input and Output | |
void | read (Reader &input) |
Read an object from a Reader. More... | |
void | readDetails (Reader &input) |
Read object details from a Reader. More... | |
std::string | write () override |
Write the object to a string. More... | |
Getters and Setters | |
int | nr () const override |
Returns the element number, in order from 1 to the number of airflow elements. More... | |
void | setNr (const int nr) override |
Sets the element number. More... | |
int | icon () const override |
Returns the icon used to represent flow path. More... | |
void | setIcon (const int icon) override |
Sets the icon used to represent flow path. More... | |
std::string | dataType () const override=0 |
Returns the element data type. More... | |
std::string | name () const override |
Returns the element name. More... | |
void | setName (const std::string &name) override |
Sets the element name. More... | |
std::string | desc () const override |
Returns the element description. More... | |
void | setDesc (const std::string &desc) override |
Sets the element description. More... | |
double | Flow () const |
Returns the design flow rate [kg/s or m^3/s]. More... | |
bool | setFlow (const double Flow) |
Sets the design flow rate [kg/s or m^3/s]. More... | |
bool | setFlow (const std::string &Flow) |
Sets the design flow rate [kg/s or m^3/s]. More... | |
int | u_F () const |
Returns the display units of design flow rate. More... | |
void | setU_F (const int u_F) |
Sets the display units of design flow rate. More... | |
Public Member Functions inherited from openstudio::contam::AirflowElement | |
virtual | ~AirflowElement ()=default |
Destroy the object. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from openstudio::contam::AirflowElement | |
static AirflowElementType | convertTag (const std::string &tag) |
Convert an input string into an airflow element type enum. More... | |
static AirflowElement * | readElement (Reader &input) |
Read an airflow element from a Reader object. More... | |
The AfeFlow object is the base class of constant flow rate airflow elements.
openstudio::contam::AfeFlow::AfeFlow | ( | ) |
Create a new object with default values.
openstudio::contam::AfeFlow::AfeFlow | ( | int | nr, |
int | icon, | ||
std::string | name, | ||
std::string | desc | ||
) |
Create a new object.
openstudio::contam::AfeFlow::AfeFlow | ( | int | nr, |
int | icon, | ||
std::string | name, | ||
std::string | desc, | ||
double | Flow, | ||
int | u_F | ||
) |
Create a new object.
openstudio::contam::AfeFlow::AfeFlow | ( | int | nr, |
int | icon, | ||
std::string | name, | ||
std::string | desc, | ||
std::string | Flow, | ||
int | u_F | ||
) |
Create a new object.
openstudio::contam::AfeFlow::AfeFlow | ( | const AfeFlow & | other | ) |
Create a new object from another object.
|
default |
Destroy the object.
|
overridepure virtual |
Returns the element data type.
Implements openstudio::contam::AirflowElement.
Implemented in openstudio::contam::AfeCvf, and openstudio::contam::AfeCmf.
|
overridevirtual |
Returns the element description.
Implements openstudio::contam::AirflowElement.
double openstudio::contam::AfeFlow::Flow | ( | ) | const |
Returns the design flow rate [kg/s or m^3/s].
|
overridevirtual |
Returns the icon used to represent flow path.
Implements openstudio::contam::AirflowElement.
|
overridevirtual |
Returns the element name.
Implements openstudio::contam::AirflowElement.
|
overridevirtual |
Returns the element number, in order from 1 to the number of airflow elements.
Implements openstudio::contam::AirflowElement.
bool openstudio::contam::AfeFlow::operator!= | ( | const AfeFlow & | other | ) | const |
Inequality operator.
bool openstudio::contam::AfeFlow::operator== | ( | const AfeFlow & | other | ) | const |
Equality operator.
|
overridevirtual |
Sets the element description.
Implements openstudio::contam::AirflowElement.
bool openstudio::contam::AfeFlow::setFlow | ( | const double | Flow | ) |
Sets the design flow rate [kg/s or m^3/s].
bool openstudio::contam::AfeFlow::setFlow | ( | const std::string & | Flow | ) |
Sets the design flow rate [kg/s or m^3/s].
|
overridevirtual |
Sets the icon used to represent flow path.
Implements openstudio::contam::AirflowElement.
|
overridevirtual |
Sets the element name.
Implements openstudio::contam::AirflowElement.
|
overridevirtual |
Sets the element number.
This should only be done with care.
Implements openstudio::contam::AirflowElement.
void openstudio::contam::AfeFlow::setU_F | ( | const int | u_F | ) |
Sets the display units of design flow rate.
int openstudio::contam::AfeFlow::u_F | ( | ) | const |
Returns the display units of design flow rate.
|
overridevirtual |
Write the object to a string.
Implements openstudio::contam::AirflowElement.