02-10-2015, 07:10 PM
It seams that...
gives an average value of the Status over the year. But not the total number of hours outside comfort limits.
From the E+ Documentation I learned that about
Zone Thermal Comfort CEN 15251 Adaptive Model Category II Status
This field is to report whether the operative temperature falls into the Category II (80% acceptability) limits of the adaptive comfort in the European Standard EN15251-2007. A value of 1 means within (inclusive) the limits, a value of 0 means outside the limits, and a value of -1 means not applicable.
So, I think, it is better to extract values fo discomfort hours from the Adaptive Comfort Summary in SQL file. I am trying to insert SQLite code and was wondering if there is a way to insert several column into one csv. If so, how should be the coding?
I used this coding and the first value gets overriden by the second.
Code:
Output:Variable,*,Zone Thermal Comfort CEN 15251 Adaptive Model Category I Status,Annual;
Output:Variable,*,Zone Thermal Comfort CEN 15251 Adaptive Model Category II Status,Annual;
Output:Variable,*,Zone Thermal Comfort CEN 15251 Adaptive Model Category III Status,Annual;
From the E+ Documentation I learned that about
Zone Thermal Comfort CEN 15251 Adaptive Model Category II Status
This field is to report whether the operative temperature falls into the Category II (80% acceptability) limits of the adaptive comfort in the European Standard EN15251-2007. A value of 1 means within (inclusive) the limits, a value of 0 means outside the limits, and a value of -1 means not applicable.
So, I think, it is better to extract values fo discomfort hours from the Adaptive Comfort Summary in SQL file. I am trying to insert SQLite code and was wondering if there is a way to insert several column into one csv. If so, how should be the coding?
I used this coding and the first value gets overriden by the second.
Code:
!-sqlite
! Output file name; Column headers; SQL command
Discomfort_CEN15251_CategoryII; RoomEast [Hours]; SELECT Value FROM TabularDataWithStrings WHERE (ReportName="AdaptiveComfortReport" AND ColumnName="CEN15251 Category II Acceptability Limits" AND RowName="PEOPLE BLOCK2:ROOMEAST")
Discomfort_CEN15251_CategoryII; RoomWest [Hours]; SELECT Value FROM TabularDataWithStrings WHERE (ReportName="AdaptiveComfortReport" AND ColumnName="CEN15251 Category II Acceptability Limits" AND RowName="PEOPLE BLOCK2:ROOMWEST")
!-end sqlite