gem5
v21.0.0.0
|
The class stores temperatures in Kelvin and provides helper methods to convert to/from Celsius. More...
#include <temperature.hh>
Public Member Functions | |
constexpr | Temperature (double _value=0.0) |
Explicit constructor assigning a value. More... | |
constexpr double | toKelvin () const |
constexpr double | toCelsius () const |
double | toFahrenheit () const |
constexpr bool | operator> (const Temperature &rhs) const |
constexpr bool | operator>= (const Temperature &rhs) const |
constexpr bool | operator< (const Temperature &rhs) const |
constexpr bool | operator<= (const Temperature &rhs) const |
constexpr bool | operator== (const Temperature &rhs) const |
constexpr bool | operator!= (const Temperature &rhs) const |
constexpr Temperature | operator+ (const Temperature &rhs) const |
constexpr Temperature | operator- (const Temperature &rhs) const |
Temperature & | operator+= (const Temperature &rhs) |
Temperature & | operator-= (const Temperature &rhs) |
Temperature & | operator*= (const double &rhs) |
Temperature & | operator/= (const double &rhs) |
Static Public Member Functions | |
static Temperature | fromKelvin (double _value) |
static Temperature | fromCelsius (double _value) |
static Temperature | fromFahrenheit (double _value) |
Private Attributes | |
double | value |
Temperature in Kelvin. More... | |
Friends | |
constexpr friend Temperature | operator* (const Temperature &lhs, const double &rhs) |
constexpr friend Temperature | operator* (const double &lhs, const Temperature &rhs) |
constexpr friend Temperature | operator/ (const Temperature &lhs, const double &rhs) |
std::ostream & | operator<< (std::ostream &out, const Temperature &t) |
The class stores temperatures in Kelvin and provides helper methods to convert to/from Celsius.
Definition at line 47 of file temperature.hh.
|
inlineexplicitconstexpr |
Explicit constructor assigning a value.
Definition at line 56 of file temperature.hh.
Referenced by fromCelsius(), fromFahrenheit(), fromKelvin(), operator+(), and operator-().
|
static |
Definition at line 47 of file temperature.cc.
References Temperature().
Referenced by pybind_init_core(), and TEST().
|
static |
Definition at line 53 of file temperature.cc.
References Temperature().
Referenced by pybind_init_core(), and TEST().
|
static |
Definition at line 41 of file temperature.cc.
References Temperature().
Referenced by ThermalModel::doStep(), ThermalModel::getTemperature(), pybind_init_core(), and TEST().
|
inlineconstexpr |
Definition at line 100 of file temperature.hh.
References value.
|
inline |
Definition at line 141 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 106 of file temperature.hh.
References Temperature(), and value.
|
inline |
Definition at line 127 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 112 of file temperature.hh.
References Temperature(), and value.
|
inline |
Definition at line 134 of file temperature.hh.
References value.
|
inline |
Definition at line 148 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 82 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 88 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 94 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 70 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 76 of file temperature.hh.
References value.
|
inlineconstexpr |
Definition at line 66 of file temperature.hh.
References value.
Referenced by MathExprPowerModel::getStatValue(), pybind_init_core(), RealViewTemperatureSensor::read(), TEST(), and ThermalDomain::ThermalDomain().
double Temperature::toFahrenheit | ( | ) | const |
|
inlineconstexpr |
Definition at line 65 of file temperature.hh.
References value.
Referenced by ThermalResistor::getEquation(), ThermalCapacitor::getEquation(), pybind_init_core(), and TEST().
|
friend |
Definition at line 164 of file temperature.hh.
|
friend |
Definition at line 158 of file temperature.hh.
|
friend |
Definition at line 170 of file temperature.hh.
|
friend |
Definition at line 65 of file temperature.cc.
|
private |
Temperature in Kelvin.
Definition at line 52 of file temperature.hh.
Referenced by operator!=(), operator*(), operator*=(), operator+(), operator+=(), operator-(), operator-=(), operator/(), operator/=(), operator<(), operator<<(), operator<=(), operator==(), operator>(), operator>=(), toCelsius(), toFahrenheit(), and toKelvin().