Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonHD committed Sep 22, 2023
1 parent 5f368e6 commit 9d2a24e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/javasrc/localtest/TestHGTRVHPModelSoftATemperature.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ public static void testWithFixParameters()
assertEquals(originalBungalowDemand.noSetback().heatDemand(), softBungalowDemand.noSetback().heatDemand(), 1.0);
assertEquals(originalBungalowDemand.noSetback().heatPumpElectricity(), softBungalowDemand.noSetback().heatPumpElectricity(), 1.0);

// Both heat demand and heat-pump electricity demand are expected to be strictly lower than the original
// when B rooms are set back and A rooms have soft temperature regulation (weather compensation).
assertTrue(originalBungalowDemand.noSetback().heatDemand() > softBungalowDemand.noSetback().heatDemand());
assertTrue(originalBungalowDemand.noSetback().heatPumpElectricity() > softBungalowDemand.noSetback().heatPumpElectricity());
// FIXME
// // Both heat demand and heat-pump electricity demand are expected to be strictly lower than the original
// // when B rooms are set back and A rooms have soft temperature regulation (weather compensation).
// assertTrue(originalBungalowDemand.noSetback().heatDemand() > softBungalowDemand.noSetback().heatDemand());
// assertTrue(originalBungalowDemand.noSetback().heatPumpElectricity() > softBungalowDemand.noSetback().heatPumpElectricity());
}
}

0 comments on commit 9d2a24e

Please sign in to comment.