Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/CNDTYPES.DEF
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,8 @@ PIPESEGP -- "class PIPESEG*"
AOSMITHSHPT66 "AOSmithSHPT66"
AOSMITHSHPT80 "AOSmithSHPT80"

AQUATHERMAIRE "AquaThermAire" // Villara AquaThermAire system

GENERIC1 "GenericTier1" // Generic Tier 1
GENERIC2 "GenericTier2" // Generic Tier 2
GENERIC3 "GenericTier3" // Generic Tier 3
Expand Down
13 changes: 9 additions & 4 deletions src/dhwcalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3069,6 +3069,8 @@ RC HPWHLINK::hw_InitResistance( // set up HPWH has EF-rated resistance heater
{ C_WHASHPTYCH_AWHSTIER3GENERIC65, hwatSMALL | HPWH::MODELS_AWHSTier3Generic65 },
{ C_WHASHPTYCH_AWHSTIER3GENERIC80, hwatSMALL | HPWH::MODELS_AWHSTier3Generic80 },

{ C_WHASHPTYCH_AQUATHERMAIRE, hwatSMALL | HPWH::MODELS_AQUATHERMAIRE },

// large
{ C_WHASHPTYCH_SANCO2_GS3, hwatLARGE | HPWH::MODELS_SANCO2_GS3_45HPA_US_SP },
{ C_WHASHPTYCH_COLMACCXV5_SP, hwatLARGE | HPWH::MODELS_ColmacCxV_5_SP },
Expand Down Expand Up @@ -4366,8 +4368,13 @@ RC DHWHEATER::wh_Init() // init for run
if (wh_IsHPWHModel())
rc |= wh_HPWHInit(); // set up from DHWHEATER inputs

else if (wh_type == C_WHTYPECH_INSTUEF)
rc |= wh_InstUEFInit(); // UEF-based instantaneous water heater model 5-2017
else if (wh_IsInstUEFModel())
rc |= wh_InstUEFInit(); // UEF-based instantaneous water heater model

#if defined( _DEBUG)
else
ASSERT( 1); // missing case
#endif

return rc;
} // DHWHEATER::wh_Init
Expand Down Expand Up @@ -4892,7 +4899,6 @@ RC DHWHEATER::wh_DoSubhrTick( // DHWHEATER energy use for 1 tick

if (wh_IsInstUEFModel())
rc |= wh_InstUEFDoSubhrTick(drawForTick, tInletMix, scaleWH, pWS->ws_tUse);

else
{ float deltaT = max(1.f, pWS->ws_tUse - tInletMix);

Expand Down Expand Up @@ -5222,7 +5228,6 @@ RC DHWHEATER::wh_InstUEFDoSubhrTick(
}
return rc;
} // DHWHEATER::wh_InstUEFDoSubhrTick

//=============================================================================

///////////////////////////////////////////////////////////////////////////////
Expand Down