honeybee_energy.result.zsz module

Module for parsing EnergyPlus ZSZ csv result files into Ladybug DataCollections.

class honeybee_energy.result.zsz.ZSZ(file_path, cooling_date=01 Jan, heating_date=01 Jan)[source]

Bases: object

Object for parsing EnergyPlus Zone Sizing (ZSZ) csv result files.

Parameters
  • file_path – Full path to a ZSZ csv file that was generated by EnergyPlus.

  • cooling_date – A ladybug Date object for the cooling design day. This is needed as the ZSZ file contains no information about the dates of the loads.

  • heating_date – A ladybug Date object for the heating design day. This is needed as the ZSZ file contains no information about the dates of the loads.

Properties:
  • file_path

  • cooling_date

  • heating_date

  • timestep

  • cooling_load_data

  • heating_load_data

  • cooling_flow_data

  • heating_flow_data

ToString()[source]

Overwrite .NET ToString.

DES_DAY_KEYWORDS = (' CLG ', ' HTG ', ' DESIGN DAY ')
property cooling_date

Get the date object assigned to the cooling design day.

property cooling_flow_data

Get a list of HourlyContinuousCollections for zone cooling mass flow.

There will be one data collection per conditioned zone in the model. Data collections are at the timestep of this object and values are in m3/s.

property cooling_load_data

Get a list of HourlyContinuousCollections for zone cooling load.

There will be one data collection per conditioned zone in the model. Data collections are at the timestep of this object and values are in Watts.

property file_path

Get the path to the .rdd file.

property heating_date

Get the date object assigned to the heating design day.

property heating_flow_data

Get a list of HourlyContinuousCollections for zone heating mass flow.

There will be one data collection per conditioned zone in the model. Data collections are at the timestep of this object and values are in m3/s.

property heating_load_data

Get a list of HourlyContinuousCollections for zone heating load.

There will be one data collection per conditioned zone in the model. Data collections are at the timestep of this object and values are in Watts.

property timestep

Get the timestep of the data in the file.