OpenStudio:utilities
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
Related Functions | List of all members
openstudio::BTUUnit Class Reference

#include <BTUUnit.hpp>

+ Inheritance diagram for openstudio::BTUUnit:

Public Member Functions

Constructors and Destructors
 BTUUnit (const BTUExpnt &exponents=BTUExpnt(), int scaleExponent=0, const std::string &prettyString="")
 Default constructor. More...
 
 BTUUnit (const std::string &scaleAbbreviation, const BTUExpnt &exponents=BTUExpnt(), const std::string &prettyString="")
 Alternate constructor. More...
 
virtual ~BTUUnit ()
 
- Public Member Functions inherited from openstudio::Unit
 Unit (int scaleExponent=0, const std::string &prettyString="")
 Default constructor. More...
 
 Unit (const std::string &scaleAbbreviation, const std::string &prettyString="")
 Constructor using scale abbreviations registered in ScaleFactory. More...
 
virtual ~Unit ()
 
Unit clone () const
 Deep copy constructor. More...
 
Unit cloneToMixed () const
 Deep copy constructor that discards system designation. More...
 
std::vector< std::string > baseUnits () const
 Returns base units already available in Unit. More...
 
bool isBaseUnit (const std::string &baseUnit) const
 Returns true if baseUnit is available in Unit. More...
 
int baseUnitExponent (const std::string &baseUnit) const
 Base unit exponent getter. Returns 0 if baseUnit not present. */. More...
 
void setBaseUnitExponent (const std::string &baseUnit, int exponent)
 Sets baseUnit^exponent. If baseUnit not yet present, is added and return value is true. More...
 
Scale scale () const
 Scale getter. More...
 
bool setScale (int scaleExponent)
 Sets the scale to the one registered in ScaleFactory for 10^scaleExponent. More...
 
bool setScale (const std::string &scaleAbbreviation)
 Sets the scale to the one registered in ScaleFactory under scaleAbbreviation. More...
 
std::string standardString (bool withScale=true) const
 Returns the standard output string for this unit. More...
 
std::string prettyString (bool withScale=true) const
 Returns the preferred output string for this unit. More...
 
void setPrettyString (const std::string &str)
 Setter for prettyString (do not include scale abbreviation). More...
 
std::string print (bool withScale=true) const
 Returns prettyString(withScale) if it exists; otherwise returns standardString(withScale). More...
 
UnitSystem system () const
 Getter for this Unit's system. More...
 
bool operator== (const Unit &rUnit) const
 Equality for units. More...
 
Unitoperator*= (const Unit &rUnit)
 Multiply-assign operator. More...
 
Unitoperator/= (const Unit &rUnit)
 Divide-assign operator. More...
 
Unitpow (int expNum, int expDenom=1, bool okToCallFactory=true)
 Raise Unit to a rational power. More...
 
template<typename T >
cast () const
 Cast to type T. More...
 
template<typename T >
boost::optional< T > optionalCast () const
 Cast to boost::optional<T>. More...
 

Related Functions

(Note that these are not member functions.)

typedef std::vector< BTUUnitBTUUnitVector
 
typedef boost::optional< BTUUnitOptionalBTUUnit
 
Create Functions Used by UnitFactory
BTUUnit createBTUEnergy ()
 
BTUUnit createBTULength ()
 
BTUUnit createBTUTime ()
 
BTUUnit createBTUTemperature ()
 
BTUUnit createBTUElectricCurrent ()
 
BTUUnit createBTULuminousIntensity ()
 
BTUUnit createBTUAmountOfSubstance ()
 
BTUUnit createBTUAngle ()
 
BTUUnit createBTUSolidAngle ()
 
BTUUnit createBTUPeople ()
 
BTUUnit createBTUCycle ()
 
BTUUnit createBTUCurrency ()
 
BTUUnit createBTUPower ()
 Btu/h. More...
 
BTUUnit createBTULuminousFlux ()
 Lumen (lm) = cd*sr. More...
 
BTUUnit createBTUIlluminance ()
 Foot-candles (fc) = lm/ft^2 = cd*sr/ft^2. More...
 

Detailed Description

BTUUnit is a Unit with baseUnits fixed by its constructors, see BTUExpnt.

setBaseUnitExponent throws an exception if any other string is passed in as a baseUnit. BTUUnit.hpp declares related operators and UnitFactory callback functions.

Constructor & Destructor Documentation

openstudio::BTUUnit::BTUUnit ( const BTUExpnt exponents = BTUExpnt(),
int  scaleExponent = 0,
const std::string &  prettyString = "" 
)

Default constructor.

Example:

BTUUnit myEnergy(BtuExpnt(1),3);
std::cout << myEnergy; // produces "kBtu" 
Parameters
[in]exponentsholds the exponents for each base unit.
[in]scaleExponentexponent for scale. For instance 3 for kilo.
[in]prettyStringoptional string to use in place of standardString.
openstudio::BTUUnit::BTUUnit ( const std::string &  scaleAbbreviation,
const BTUExpnt exponents = BTUExpnt(),
const std::string &  prettyString = "" 
)

Alternate constructor.

Specify the abbreviation of the scale, rather than its exponent.

Parameters
[in]scaleAbbreviationis string equal to a scale abbreviation. For instance "k" for kilo.
[in]exponentsholds the exponents for each base unit.
[in]prettyStringoptional string to use in place of standardString.
virtual openstudio::BTUUnit::~BTUUnit ( )
inlinevirtual

Friends And Related Function Documentation

typedef std::vector<BTUUnit> BTUUnitVector
related
BTUUnit createBTUAmountOfSubstance ( )
related
BTUUnit createBTUAngle ( )
related
BTUUnit createBTUCurrency ( )
related
BTUUnit createBTUCycle ( )
related
BTUUnit createBTUElectricCurrent ( )
related
BTUUnit createBTUEnergy ( )
related
BTUUnit createBTUIlluminance ( )
related

Foot-candles (fc) = lm/ft^2 = cd*sr/ft^2.

BTUUnit createBTULength ( )
related
BTUUnit createBTULuminousFlux ( )
related

Lumen (lm) = cd*sr.

BTUUnit createBTULuminousIntensity ( )
related
BTUUnit createBTUPeople ( )
related
BTUUnit createBTUPower ( )
related

Btu/h.

BTUUnit createBTUSolidAngle ( )
related
BTUUnit createBTUTemperature ( )
related
BTUUnit createBTUTime ( )
related
typedef boost::optional<BTUUnit> OptionalBTUUnit
related