You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at ThermalGrid.handleInfeed we call thermalHouse.determineState expecting not to heat the house further since it can't handle the (complete) infeed.
if (
thermalHouse.isInnerTemperatureTooHigh(
updatedHouseState.innerTemperature
)
) {
/* The house is already heated up fully, set back the infeed and put it into storage, if available */
val (fullHouseState, maybeFullHouseThreshold) =
thermalHouse.determineState(
tick,
lastHouseState,
ambientTemperature,
zeroKW,
)
but thermalHouse.determineState will use (last)State.qDot not qDot=zeroKW here
at ThermalGrid.handleInfeed we call thermalHouse.determineState expecting not to heat the house further since it can't handle the (complete) infeed.
but thermalHouse.determineState will use (last)State.qDot not qDot=zeroKW here
The text was updated successfully, but these errors were encountered: