NREL / EnergyPlus

EnergyPlus™ is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption and water use in buildings.
https://energyplus.net
Other
1.15k stars 392 forks source link

Climatic Data Summary report missing ASHRAE climate zone, description, CDD, HDD #4820

Closed JasonGlazer closed 9 years ago

JasonGlazer commented 9 years ago

The Climatic Data Summary report in the tabular results summary should have lines that say "ASHRAE Climate Zone", "ASHRAE Description", "Standard Cooling Degree-Days", and Standard Heating Degree-Day"s that are based on the lines from the STAT file:

That should say "3C", "Warm-Marine",65, and 79 respectively.

This example is from USA_CA_San.Francisco.Intl.AP.724940_TMY3.stat file.

Linda Lawrie found a fix to the routine in the Fortran version based on the line

if (INDEX(lineIn,'ASHRAE Standards') > 0) lineType=AshStdLine

which should should say:

if (INDEX(lineIn,'ASHRAE Standard') > 0) lineType=AshStdLine

In OutputReportTabular.f90. The converted line in C++ continues to have say error.

JasonGlazer commented 9 years ago

The HDD/CDD portion of the issue may be working already.

lklawrie commented 9 years ago

Suggestion? Seems like an error - the ASHRAE Standard part at least.

mjwitte commented 9 years ago

@lklawrie Good point. Placed on v8.4.0 priority list.