get_timeseries_report_by_rddid_list
Retrieve hourly timeseries data for specified variables from an EnergyPlus model using RDD IDs, returning timestamped values with units for analysis.
Instructions
Retrieve hourly timeseries data for a specific variable from an EnergyPlus model.
Extracts complete hourly timeseries data for a specific variable using its RDD (Report Data Dictionary) ID, providing timestamped values for analysis.
Args: model_id: The model_id of the EnergyPlus model (obtain from get_available_models). rddid: A list of RDD IDs (integers) for the desired variables (obtain from get_sql_available_hourlies).
Returns: List of timestamped records, each containing: - dt: Timestamp for the data point - Value: Numeric value for the variable - Name: Variable name (e.g., 'Zone Air Temperature') - KeyValue: Zone or component identifier - Units: Units of measurement
Example: First use get_sql_available_hourlies to find the RDD ID for 'Zone Air Temperature', then use that ID with this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rddid | Yes | ||
| model_id | Yes |