Skip to content

Commit

Permalink
Tidy and new output captured.
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonHD committed Sep 26, 2023
1 parent bb5a121 commit d269318
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 20 deletions.
15 changes: 14 additions & 1 deletion SampleComputationsOutput.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Show HG TRV/HP model computations.
Date/time: Tue Sep 26 11:48:12 BST 2023
Date/time: Tue Sep 26 16:07:57 BST 2023

Hardwired model, electricity demand normal / setback: 769W / 815W
Parameterised model, all default parameters, electricity demand normal / setback: 769W / 815W
Expand Down Expand Up @@ -231,3 +231,16 @@ Original conditions, detached demand, with 'stiff' A-room temperature regulation
Original conditions, detached demand, with 'soft' A-room temperature regulation at 18.6C:
Heat mean demand: with no setback 3070W, with setback 2724W; -11% change with setback
Heat pump mean power: with no setback 1131W, with setback 1003W; -11% change with setback

Parameterised model, bungalow, soft regulation, fixes applied for doors and CoP temperature, external air temperature varied...
London (EGLL) 2018 hourly temperatures
Layout ABAB
Minimum A-room temperature 18.2C
Percentage of hours that room setback raises heat pump demand: 0.0%
Heat mean demand: with no setback 719W, with setback 559W; -22.2% change with setback
Heat pump mean power: with no setback 246W, with setback 193W; -21.6% change with setback
Layout AABB
Minimum A-room temperature 18.2C
Percentage of hours that room setback raises heat pump demand: 0.0%
Heat mean demand: with no setback 719W, with setback 561W; -22.0% change with setback
Heat pump mean power: with no setback 246W, with setback 193W; -21.4% change with setback
20 changes: 1 addition & 19 deletions javasrc/org/hd/d/TRVmodel/hg/ShowComputations.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public static void showCalcs() throws IOException


System.out.println("");
System.out.println("Parameterised model, soft regulation, fixes applied for doors and CoP temperature, external air temperature varied...");
System.out.println("Parameterised model, bungalow, soft regulation, fixes applied for doors and CoP temperature, external air temperature varied...");
System.out.println("London (EGLL) 2018 hourly temperatures");
for(final boolean abab : new boolean[]{true, false})
{
Expand Down Expand Up @@ -307,22 +307,4 @@ public static String generateHTMLMainSummaryTable() throws IOException
result.append("</table>");
return(result.toString());
}

// /**Generate the main full model results table for 7 places, 10 years, in (X)HTML5; non-null.
// * Attempts to remain at least slightly human readable.
// * <p>
// * The table class at least should be fixed up manually.
// */
// public static String generateHTMLMainFullTable() throws IOException
// {
// final StringBuilder result = new StringBuilder();
// result.append("<table class=\"yourHugeTableStyle\">\n");
//
//
// // TODO
//
//
// result.append("</table>");
// return(result.toString());
// }
}

0 comments on commit d269318

Please sign in to comment.