We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 247804f commit 9701755Copy full SHA for 9701755
src/dhwcalc.cpp
@@ -4691,7 +4691,11 @@ RC DHWHEATER::wh_HPWHInit() // initialize HPWH model
4691
courier->set_message_level(MSGTY::msgtyERROR);
4692
4693
// Adjust tier3 COP coefficients to match UEF
4694
- wh_HPWH.hw_pHPWH->makeGenericUEF(wh_UEF, HPWH::tier3);
+ HPWH::PerformancePolySet hpwh_tier = HPWH::tier3;
4695
+ if (wh_HPWH.hw_pHPWH->name.find("Tier4") != std::string::npos) { // Hack for now...
4696
+ hpwh_tier = HPWH::tier4;
4697
+ }
4698
+ wh_HPWH.hw_pHPWH->makeGenericUEF(wh_UEF, hpwh_tier);
4699
4700
courier->restore_message_level();
4701
}
0 commit comments