Skip to content
Merged
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
1 change: 1 addition & 0 deletions doc/checkdoc.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
:: fast build of CSE documentation (single HTML only)
call rake build_html_single
call rake coverage
start output\cse-user-manual.html
1 change: 1 addition & 0 deletions doc/src/records/rsys.md
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,7 @@ For rsType=ASHP, auxiliary heat annualized fuel utilization efficiency.
Selects modeling options for ASHP outdoor coil defrosting when 17 ^o^F < TDbO < 45 ^o^F. In this temperature range, heating capacity and/or efficiency are typically reduced due to frost accumulation on the outdoor coil.

<%= csv_table(<<END, :row_header => false)
NONE, Defrost is not modeled. When 17 ^o^F < TDbO < 45 ^o^F&comma; capacity and efficiency are determined by interpolation using unmodified 17 ^o^F and 47 ^o^F data.
REVCYCLE, Reverse compressor (cooling) operation. Net capacity and efficiency is derived from rsCap17/rsCOP17 and rsCap35/rsCOP35 using linear interpolation. Auxiliary heat is not modeled.
REVCYCLEAUX, Reverse compressor (cooling) operation with provision of sufficient auxiliary heat to make up the loss of heating capacity. Auxiliary heating is typically used to prevent cold air delivery to zones during the defrost cycle.
END
Expand Down
6 changes: 3 additions & 3 deletions src/CNRECS.DEF
Original file line number Diff line number Diff line change
Expand Up @@ -3548,9 +3548,9 @@ x *declare "RC rs_SetDefaultsClg();"
*f *e FLOAT_GZ rs_COP17 // COP at ODB=17 F
*f *e FLOAT_GZ rs_cap05 // full speed net heating capacity at ODB=5 F
*f *e FLOAT_GZ rs_COP05 // COP at ODB=5 F
*r FRAC_GZ rs_capRat1747 // cap17 / cap47 ratio (re autosizing)
*r FLOAT_GZ rs_capRat1747 // cap17 / cap47 ratio (re autosizing)
// default based on HSPF or other correlations
*r FRAC_GZ rs_capRat0547 // cap05 / cap47 ratio (re autosizing)
*r FLOAT_GZ rs_capRat0547 // cap05 / cap47 ratio (re autosizing)
// default ?
*r FLOAT_GZ rs_capRat9547 // total net cap95 (cooling) / net cap47 (heating)
// re consistent htg/clg size iff both autosized
Expand Down Expand Up @@ -3666,7 +3666,7 @@ x *declare "RC rs_SetDefaultsClg();"

*f *e FLOAT_GEZ rs_cap115; // total full speed net cooling capacity at 115 F (>= 0), Btuh
*f *e FLOAT_GZ rs_COP115; // full speed cooling COP at 115F
*r FRAC_GZ rs_capRat11595 // cap115 / cap95 (re autosizing)
*r FLOAT_GZ rs_capRat11595 // cap115 / cap95 (re autosizing)
// default = .9155, 0 < x <= 1

*f *e FLOAT_GEZ rs_cap82; // total full speed net cooling capacity at 82 F (>= 0), Btuh
Expand Down