How to extract data from Adaptive Comfort Summary in energyplus?
I'm trying to extract data from Eletricidade and Adaptive Comfort Summary in energyplus using the sql command in jeplus. However, I am getting only the Electricity data. I configured the People and Output object: Table: SummaryReports (AdaptiveComfortSummary) for adaptive comfort and enabled the following outputs.
Output: Variable, *,! - Key Value Zone Thermal Comfort ASHRAE 55 Adaptive Model 80% Acceptability Status,! - Variable Name RunPeriod; ! - Reporting Frequency
Output: Variable, *,! - Key Value Zone Thermal Comfort ASHRAE 55 Adaptive Model 90% Acceptability Status,! - Variable Name RunPeriod; ! - Reporting Frequency
Output: Variable, *,! - Key Value Zone Adaptive Comfort Operative Temperature Set Point,! - Variable Name RunPeriod; ! - Reporting Frequency
Output: Variable, *,! - Key Value Zone Thermal Comfort ASHRAE 55 Adaptive Model Running Average Outdoor Air Temperature,! - Variable Name RunPeriod; ! - Reporting Frequency
Output: Variable, *,! - Key Value Zone Thermal Comfort ASHRAE 55 Adaptive Model Temperature,! - Variable Name RunPeriod; ! - Reporting Frequency
Output: Meter, Electricity: Facility,! - Key Name RunPeriod; ! - Reporting Frequency
The sql layer for jeplus is as follows:
"sqls": [{ "sqlcommand": "SELECT Value FROM TabularDataWithStrings WHERE (ReportName = 'AdaptiveComfortSummary' AND ColumnName = 'ASHRAE55 80% Acceptability Limits' AND RowName = 'THERMAL_ZONE_1 PEOPLE_ESCRITORIO')", "tableName": "Desc_sql", "columnHeaders": "Discomfort [hrs]", "usedInCalc": true }, { "sqlcommand": "SELECT Value FROM TabularDataWithStrings WHERE (ReportName = 'AnnualBuildingUtilityPerformanceSummary' AND ColumnName = 'Electricity' AND RowName = 'Total End Uses')", "tableName": "Elet_sql", "columnHeaders": "Electricity", "usedInCalc": true }],
Don't know what may be missing? If anyone can help me, I will be very grateful.