Skip to content

Commit

Permalink
Improved param name.
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonHD committed Dec 8, 2023
1 parent 6b87168 commit fcd5513
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ SIGNIFICANT CHANGES SINCE LAST RELEASE

PENDING:
DHD20231203: adjustment of soft temperature step from 0.1K to 0.01K.
DHD20231208: improving variable/parameter names.



Expand Down
2 changes: 1 addition & 1 deletion javasrc/org/hd/d/TRVmodel/hg/HGTRVHPMModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private HGTRVHPMModel() { }

/**tIntSetback: setback/unused room temperature (Celsius). */
public static final double SETBACK_ROOM_TEMPERATURE_C = 18;
/**tMeanWhenSetback: (Flow Temperature, step 2) mean home temperature when B rooms setback (Celcius). */
/**tIntMeanWhenSetback: (Flow Temperature, step 2) mean home temperature when B rooms setback (Celcius). */
public static final double MEAN_HOME_TEMPERATURE_WITH_SETBACK_C =
(NORMAL_ROOM_TEMPERATURE_C + SETBACK_ROOM_TEMPERATURE_C) / 2;
/**HLsbW: (Flow Temperature, step 3) heat loss with B rooms setback (W). */
Expand Down
2 changes: 1 addition & 1 deletion test/javasrc/localtest/TestHGTRVHPModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static void testHLWpK()
}

/**Verify computed mean home temperature when B rooms set back (flow temperature, step 2). */
public static void testTMeanWhenSetback()
public static void testTIntMeanWhenSetback()
{
assertEquals(19.5, HGTRVHPMModel.MEAN_HOME_TEMPERATURE_WITH_SETBACK_C, 0.05);
}
Expand Down

0 comments on commit fcd5513

Please sign in to comment.