Skip to content
Merged
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
22 changes: 18 additions & 4 deletions doc/src/records/accumulator.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,26 @@ TODO: expand description and example

ACCUMULATOR results must be reported using user-defined REPORTs or EXPORTs. For example --

REPORT rpType=UDT rpFreq=Month rpDayBeg=Jan 1 rpDayEnd=Dec 31
REPORTCOL colHead="mon" colVal=$Month colWid=3
REPORTCOL colHead="Total" colVal=@Accumulator[ 1].M.acmSum colDec=0 colWid=10
REPORTCOL colHead="Average" colVal=@Accumulator[ 1].M.acmMean colDec=0 colWid=10
ACCUMULATOR "Zone Sensible Cooling Rate [Btu/h]"
acmValue = @znRes[ 1].H.qscHvac // Hourly Output
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the average Btu/h over the hour or the total Btu over the hour? The answer will impact the accuracy of the report values below.



REPORT rpType=UDT rpFreq=Month rpDayBeg=Jan 1 rpDayEnd=Dec 31 // Monthly Report
REPORTCOL colHead="Month" colVal=$Month colWid= 3
REPORTCOL colHead="Monthly Total Cooling [Btu]" colVal=@Accumulator["Zone Sensible Cooling Rate [Btu/h]"].M.acmSum colDec=0 colWid=10
REPORTCOL colHead="Monthly Average Hourly Cooling Rate [Btu/h]" colVal=@Accumulator["Zone Sensible Cooling Rate [Btu/h]"].M.acmMean colDec=0 colWid=10
REPORTCOL colHead="Monthly Max Hourly Cooling Rate [Btu/h]" colVal=@Accumulator["Zone Sensible Cooling Rate [Btu/h]"].M.acmMax colDec=0 colWid=10
REPORTCOL colHead="Monthly Min Hourly Cooling Rate [Btu/h]" colVal=@Accumulator["Zone Sensible Cooling Rate [Btu/h]"].M.acmMin colDec=0 colWid=10

ACCUMULATOR "Zone Solar Gain [Btu]"
acmValue = @znRes[ 1].S.qSlr // Subhourly Output
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar question here. I'm not sure you are using the correct units / interpretation here.


REPORT rpType=UDT rpFreq=Hour rpDayBeg=Jul 21 rpDayEnd=Jul 21 // Hourly Report
REPORTCOL colHead="Month" colVal=$Month colWid= 3
REPORTCOL colHead="Day" colVal=$Day colWid= 3
REPORTCOL colHead="Hour" colVal=$Hour colWid= 3
REPORTCOL colHead="Zone Solar Gain Rate [Btu/h]" colVal=@Accumulator["Window Transmitted Solar Gain"].H.acmSum colDec=0 colWid=10

**acmName**

Name of ACCUMULATOR: required for referencing in reports.
Expand Down
Loading