MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / dryBulbTemperature

Method dryBulbTemperature

src/utilities/filetypes/EpwFile.cpp:1820–1825  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1818}
1819
1820boost::optional<double> EpwDataPoint::dryBulbTemperature() const {
1821 if (m_dryBulbTemperature == "99.9") {
1822 return boost::none;
1823 }
1824 return boost::optional<double>(std::stod(m_dryBulbTemperature));
1825}
1826
1827bool EpwDataPoint::setDryBulbTemperature(double value) {
1828 if (-70 >= value || 70 <= value) {

Callers 2

test_dataMethod · 0.80
TESTFunction · 0.80

Calls

no outgoing calls

Tested by 2

test_dataMethod · 0.64
TESTFunction · 0.64