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

Method meterEndUseCategory

src/model/UtilityBill.cpp:82–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80 }
81
82 boost::optional<EndUseCategoryType> UtilityBill_Impl::meterEndUseCategory() const {
83 boost::optional<EndUseCategoryType> result;
84 boost::optional<std::string> tmp = getString(OS_UtilityBillFields::MeterEndUseCategory, true, true);
85 if (tmp) {
86 result = EndUseCategoryType(tmp.get());
87 }
88 return result;
89 }
90
91 boost::optional<std::string> UtilityBill_Impl::meterSpecificEndUse() const {
92 return getString(OS_UtilityBillFields::MeterSpecificEndUse, true, true);

Callers 4

consumptionMeterMethod · 0.95
peakDemandMeterMethod · 0.95
calibrationResultMethod · 0.45
TEST_FFunction · 0.45

Calls 2

EndUseCategoryTypeClass · 0.70
getMethod · 0.45

Tested by 1

TEST_FFunction · 0.36