OpenStudio:airflow
 All Classes Namespaces Functions Enumerations Enumerator
List of all members
openstudio::contam::PlrBackDamper Class Referenceabstract

#include <PrjAirflowElements.hpp>

+ Inheritance diagram for openstudio::contam::PlrBackDamper:

Public Member Functions

Constructors and Destructors
 PlrBackDamper ()
 Create a new object with default values. More...
 
 PlrBackDamper (int nr, int icon, std::string name, std::string desc)
 Create a new object. More...
 
 PlrBackDamper (int nr, int icon, std::string name, std::string desc, double lam, double Cp, double xp, double Cn, double xn)
 Create a new object. More...
 
 PlrBackDamper (int nr, int icon, std::string name, std::string desc, std::string lam, std::string Cp, std::string xp, std::string Cn, std::string xn)
 Create a new object. More...
 
 PlrBackDamper (const PlrBackDamper &other)
 Create a new object from another object. More...
 
 ~PlrBackDamper ()
 Destroy the object. More...
 
Operators
PlrBackDamperoperator= (const PlrBackDamper &other)
 Copy operator. More...
 
bool operator== (const PlrBackDamper &other) const
 Equality operator. More...
 
bool operator!= (const PlrBackDamper &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...
 
virtual 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 lam () const
 Returns the laminar flow coefficient. More...
 
bool setLam (const double lam)
 Sets the laminar flow coefficient. More...
 
bool setLam (const std::string &lam)
 Sets the laminar flow coefficient. More...
 
double Cp () const
 Returns the turbulent flow coefficient (dP > 0). More...
 
bool setCp (const double Cp)
 Sets the turbulent flow coefficient (dP > 0). More...
 
bool setCp (const std::string &Cp)
 Sets the turbulent flow coefficient (dP > 0). More...
 
double xp () const
 Returns the pressure exponent (dP > 0). More...
 
bool setXp (const double xp)
 Sets the pressure exponent (dP > 0). More...
 
bool setXp (const std::string &xp)
 Sets the pressure exponent (dP > 0). More...
 
double Cn () const
 Returns the turbulent flow coefficient (dP < 0). More...
 
bool setCn (const double Cn)
 Sets the turbulent flow coefficient (dP < 0). More...
 
bool setCn (const std::string &Cn)
 Sets the turbulent flow coefficient (dP < 0). More...
 
double xn () const
 Returns the pressure exponent (dP < 0). More...
 
bool setXn (const double xn)
 Sets the pressure exponent (dP < 0). More...
 
bool setXn (const std::string &xn)
 Sets the pressure exponent (dP < 0). More...
 
- Public Member Functions inherited from openstudio::contam::AirflowElement
virtual ~AirflowElement ()
 Destroy the object. More...
 

Additional Inherited Members

- Public Types inherited from openstudio::contam::AirflowElement
enum  Type {
  PL_ORFC =0, PL_LEAK1 =1, PL_LEAK2 =2, PL_LEAK3 =3,
  PL_CONN =4, PL_QCN =5, PL_FCN =6, PL_TEST1 =7,
  PL_TEST2 =8, PL_CRACK =9, PL_STAIR =10, PL_SHAFT =11,
  PL_BDQ =12, PL_BDF =13, QFR_QAB =14, QFR_QAF =15,
  QFR_CRACK =16, QFR_TEST2 =17, DR_DOOR =18, DR_PL2 =19,
  FN_CMF =20, FN_CVF =21, FN_FAN =22, CS_FSP =23,
  CS_QSP =24, CS_PSF =25, CS_PSQ =26, AF_SUP =27,
  UNKNOWN
}
 The Type enumeration is used to identify the various airflow element types. More...
 
- Static Public Member Functions inherited from openstudio::contam::AirflowElement
static Type convertTag (std::string string)
 Convert an input string into an airflow element type enum. More...
 
static AirflowElementreadElement (Reader &input)
 Read an airflow element from a Reader object. More...
 

Detailed Description

The PlrBackDamper object is the base class of backdraft damper airflow elements.

Constructor & Destructor Documentation

openstudio::contam::PlrBackDamper::PlrBackDamper ( )

Create a new object with default values.

openstudio::contam::PlrBackDamper::PlrBackDamper ( int  nr,
int  icon,
std::string  name,
std::string  desc 
)

Create a new object.

openstudio::contam::PlrBackDamper::PlrBackDamper ( int  nr,
int  icon,
std::string  name,
std::string  desc,
double  lam,
double  Cp,
double  xp,
double  Cn,
double  xn 
)

Create a new object.

openstudio::contam::PlrBackDamper::PlrBackDamper ( int  nr,
int  icon,
std::string  name,
std::string  desc,
std::string  lam,
std::string  Cp,
std::string  xp,
std::string  Cn,
std::string  xn 
)

Create a new object.

openstudio::contam::PlrBackDamper::PlrBackDamper ( const PlrBackDamper other)

Create a new object from another object.

openstudio::contam::PlrBackDamper::~PlrBackDamper ( )

Destroy the object.

Member Function Documentation

double openstudio::contam::PlrBackDamper::Cn ( ) const

Returns the turbulent flow coefficient (dP < 0).

double openstudio::contam::PlrBackDamper::Cp ( ) const

Returns the turbulent flow coefficient (dP > 0).

virtual std::string openstudio::contam::PlrBackDamper::dataType ( ) const
overridepure virtual

Returns the element data type.

Implements openstudio::contam::AirflowElement.

Implemented in openstudio::contam::PlrBdf, and openstudio::contam::PlrBdq.

std::string openstudio::contam::PlrBackDamper::desc ( ) const
overridevirtual

Returns the element description.

Implements openstudio::contam::AirflowElement.

int openstudio::contam::PlrBackDamper::icon ( ) const
overridevirtual

Returns the icon used to represent flow path.

Implements openstudio::contam::AirflowElement.

double openstudio::contam::PlrBackDamper::lam ( ) const

Returns the laminar flow coefficient.

std::string openstudio::contam::PlrBackDamper::name ( ) const
overridevirtual

Returns the element name.

Implements openstudio::contam::AirflowElement.

int openstudio::contam::PlrBackDamper::nr ( ) const
overridevirtual

Returns the element number, in order from 1 to the number of airflow elements.

Implements openstudio::contam::AirflowElement.

bool openstudio::contam::PlrBackDamper::operator!= ( const PlrBackDamper other) const

Inequality operator.

PlrBackDamper& openstudio::contam::PlrBackDamper::operator= ( const PlrBackDamper other)

Copy operator.

bool openstudio::contam::PlrBackDamper::operator== ( const PlrBackDamper other) const

Equality operator.

void openstudio::contam::PlrBackDamper::read ( Reader input)

Read an object from a Reader.

void openstudio::contam::PlrBackDamper::readDetails ( Reader input)

Read object details from a Reader.

bool openstudio::contam::PlrBackDamper::setCn ( const double  Cn)

Sets the turbulent flow coefficient (dP < 0).

bool openstudio::contam::PlrBackDamper::setCn ( const std::string &  Cn)

Sets the turbulent flow coefficient (dP < 0).

bool openstudio::contam::PlrBackDamper::setCp ( const double  Cp)

Sets the turbulent flow coefficient (dP > 0).

bool openstudio::contam::PlrBackDamper::setCp ( const std::string &  Cp)

Sets the turbulent flow coefficient (dP > 0).

void openstudio::contam::PlrBackDamper::setDesc ( const std::string &  desc)
overridevirtual

Sets the element description.

Implements openstudio::contam::AirflowElement.

void openstudio::contam::PlrBackDamper::setIcon ( const int  icon)
overridevirtual

Sets the icon used to represent flow path.

Implements openstudio::contam::AirflowElement.

bool openstudio::contam::PlrBackDamper::setLam ( const double  lam)

Sets the laminar flow coefficient.

bool openstudio::contam::PlrBackDamper::setLam ( const std::string &  lam)

Sets the laminar flow coefficient.

void openstudio::contam::PlrBackDamper::setName ( const std::string &  name)
overridevirtual

Sets the element name.

Implements openstudio::contam::AirflowElement.

void openstudio::contam::PlrBackDamper::setNr ( const int  nr)
overridevirtual

Sets the element number.

This should only be done with care.

Implements openstudio::contam::AirflowElement.

bool openstudio::contam::PlrBackDamper::setXn ( const double  xn)

Sets the pressure exponent (dP < 0).

bool openstudio::contam::PlrBackDamper::setXn ( const std::string &  xn)

Sets the pressure exponent (dP < 0).

bool openstudio::contam::PlrBackDamper::setXp ( const double  xp)

Sets the pressure exponent (dP > 0).

bool openstudio::contam::PlrBackDamper::setXp ( const std::string &  xp)

Sets the pressure exponent (dP > 0).

std::string openstudio::contam::PlrBackDamper::write ( )
overridevirtual

Write the object to a string.

Implements openstudio::contam::AirflowElement.

double openstudio::contam::PlrBackDamper::xn ( ) const

Returns the pressure exponent (dP < 0).

double openstudio::contam::PlrBackDamper::xp ( ) const

Returns the pressure exponent (dP > 0).