honeybee_energy.hvac.doas.radiant module

Low temperature radiant with DOAS HVAC system.

class honeybee_energy.hvac.doas.radiant.RadiantwithDOAS(identifier, vintage='ASHRAE_2019', equipment_type=None, sensible_heat_recovery=0, latent_heat_recovery=0, demand_controlled_ventilation=False, doas_availability_schedule=None, radiant_type='Floor', minimum_operation_time=1, switch_over_time=24)[source]

Bases: _DOASBase

Low temperature radiant with DOAS HVAC system.

This HVAC template will change the floor and/or ceiling constructions of the Rooms that it is applied to, replacing them with a construction that aligns with the radiant_type property (eg. CeilingMetalPanel).

All rooms/zones in the system are connected to a Dedicated Outdoor Air System (DOAS) that supplies a constant volume of ventilation air at the same temperature to all rooms/zones. The ventilation air temperature will vary from 21.1C (70F) to 15.5C (60F) depending on the outdoor air temperature (the DOAS supplies cooler air when outdoor conditions are warmer). The ventilation air temperature is maintained by a two-speed direct expansion (DX) cooling coil and a single-speed DX heating coil with backup electrical resistance heat.

The heating and cooling needs of the space are met with the radiant constructions, which use chilled water at 12.8C (55F) and a hot water temperature somewhere between 32.2C (90F) and 49C (120F) (warmer temperatures are used in colder climate zones).

Note that radiant systems are particularly limited in cooling capacity and using them may result in many unmet hours. To reduce unmet hours, one can remove carpets, reduce internal loads, reduce solar and envelope gains during peak times, add thermal mass, and use an expanded comfort range.

Parameters
  • identifier – Text string for system identifier. Must be < 100 characters and not contain any EnergyPlus special characters. This will be used to identify the object across a model and in the exported IDF.

  • vintage

    Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Choose from the following.

    • DOE_Ref_Pre_1980

    • DOE_Ref_1980_2004

    • ASHRAE_2004

    • ASHRAE_2007

    • ASHRAE_2010

    • ASHRAE_2013

    • ASHRAE_2016

    • ASHRAE_2019

  • equipment_type

    Text for the specific type of the system and equipment. (Default: the first option below) Choose from.

    • DOAS_Radiant_Chiller_Boiler

    • DOAS_Radiant_Chiller_ASHP

    • DOAS_Radiant_Chiller_DHW

    • DOAS_Radiant_ACChiller_Boiler

    • DOAS_Radiant_ACChiller_ASHP

    • DOAS_Radiant_ACChiller_DHW

    • DOAS_Radiant_DCW_Boiler

    • DOAS_Radiant_DCW_ASHP

    • DOAS_Radiant_DCW_DHW

  • sensible_heat_recovery – A number between 0 and 1 for the effectiveness of sensible heat recovery within the system. (Default: 0).

  • latent_heat_recovery – A number between 0 and 1 for the effectiveness of latent heat recovery within the system. (Default: 0).

  • demand_controlled_ventilation – Boolean to note whether demand controlled ventilation should be used on the system, which will vary the amount of ventilation air according to the occupancy schedule of the Rooms. (Default: False).

  • doas_availability_schedule – An optional On/Off discrete schedule to set when the dedicated outdoor air system (DOAS) shuts off. This will not only prevent any outdoor air from flowing thorough the system but will also shut off the fans, which can result in more energy savings when spaces served by the DOAS are completely unoccupied. If None, the DOAS will be always on. (Default: None).

  • radiant_type

    Text to indicate which faces are thermally active. Note that systems are assumed to be embedded in concrete slabs unless CeilingMetalPanel or FloorWithHardwood is specified. Choose from the following. (Default: Floor).

    • Floor

    • Ceiling

    • FloorWithCarpet

    • CeilingMetalPanel

    • FloorWithHardwood

  • minimum_operation_time – A number for the minimum number of hours of operation for the radiant system before it shuts off. Note that this has no effect if the radiant_type is not in a slab. (Default: 1).

  • switch_over_time – A number for the minimum number of hours for when the system can switch between heating and cooling. Note that this has no effect if the radiant_type is not in a slab. (Default: 24).

Properties:
  • identifier

  • display_name

  • vintage

  • equipment_type

  • sensible_heat_recovery

  • latent_heat_recovery

  • demand_controlled_ventilation

  • doas_availability_schedule

  • minimum_operation_time

  • switch_over_time

  • radiant_type

  • schedules

  • has_district_heating

  • has_district_cooling

  • user_data

  • properties

ToString()

Overwrite .NET ToString.

duplicate()

Get a copy of this object.

classmethod from_dict(data)[source]

Create a HVAC object from a dictionary.

Parameters

data – A DOAS dictionary in following the format below.

{
"type": "",  # text for the class name of the HVAC
"identifier": "Classroom1_System",  # identifier for the HVAC
"display_name": "Standard System",  # name for the HVAC
"vintage": "ASHRAE_2019",  # text for the vintage of the template
"equipment_type": "",  # text for the HVAC equipment type
"sensible_heat_recovery": 0.75,  # Sensible heat recovery effectiveness
"latent_heat_recovery": 0.7,  # Latent heat recovery effectiveness
"demand_controlled_ventilation": False  # Boolean for DCV
"doas_availability_schedule": {},  # Schedule for DOAS availability or None
"radiant_type": "Ceiling",
"minimum_operation_time": 1,
"switch_over_time": 24
}
classmethod from_dict_abridged(data, schedule_dict)[source]

Create a HVAC object from an abridged dictionary.

Parameters
  • data – A DOAS abridged dictionary in following the format below.

  • schedule_dict – A dictionary with schedule identifiers as keys and honeybee schedule objects as values (either ScheduleRuleset or ScheduleFixedInterval). These will be used to assign the schedules to the Setpoint object.

{
"type": "",  # text for the class name of the HVAC
"identifier": "Classroom1_System",  # identifier for the HVAC
"display_name": "Standard System",  # name for the HVAC
"vintage": "ASHRAE_2019",  # text for the vintage of the template
"equipment_type": "",  # text for the HVAC equipment type
"sensible_heat_recovery": 0.75,  # Sensible heat recovery effectiveness
"latent_heat_recovery": 0.7,  # Latent heat recovery effectiveness
"demand_controlled_ventilation": False  # Boolean for DCV
"doas_availability_schedule": "",  # Schedule id for DOAS availability
"radiant_type": "Ceiling",
"minimum_operation_time": 1,
"switch_over_time": 24
}
lock()
to_dict(abridged=False)[source]

DOAS system dictionary representation.

Parameters

abridged – Boolean to note whether the full dictionary describing the object should be returned (False) or just an abridged version (True). This input currently has no effect but may eventually have one if schedule-type properties are exposed on this template.

to_ideal_air_equivalent()

Get a version of this HVAC as an IdealAirSystem.

Relevant properties will be transferred to the resulting ideal air such as sensible_heat_recovery, latent_heat_recovery, and demand_controlled_ventilation.

unlock()
COOL_ONLY_TYPES = ('DOAS_FCU_Chiller', 'DOAS_FCU_ACChiller', 'DOAS_FCU_DCW')
EQUIPMENT_TYPES = ('DOAS_Radiant_Chiller_Boiler', 'DOAS_Radiant_Chiller_ASHP', 'DOAS_Radiant_Chiller_DHW', 'DOAS_Radiant_ACChiller_Boiler', 'DOAS_Radiant_ACChiller_ASHP', 'DOAS_Radiant_ACChiller_DHW', 'DOAS_Radiant_DCW_Boiler', 'DOAS_Radiant_DCW_ASHP', 'DOAS_Radiant_DCW_DHW')
HEAT_ONLY_TYPES = ()
VINTAGES = ('DOE_Ref_Pre_1980', 'DOE_Ref_1980_2004', 'ASHRAE_2004', 'ASHRAE_2007', 'ASHRAE_2010', 'ASHRAE_2013', 'ASHRAE_2016', 'ASHRAE_2019')
property demand_controlled_ventilation

Get or set a boolean for whether demand controlled ventilation is present.

property display_name

Get or set a string for the object name without any character restrictions.

If not set, this will be equal to the identifier.

property doas_availability_schedule

Get or set am on/off schedule for availability of the DOAS air loop.

property equipment_type

Get or set text for the system’s equipment specification.

For example, ‘VAV chiller with gas boiler reheat’.

property has_district_cooling

Get a boolean for whether the HVAC system has district cooling.

property has_district_heating

Get a boolean for whether the HVAC system has district heating.

property identifier

Get or set the text string for HVAC system identifier.

property latent_heat_recovery

Get or set a number for the effectiveness of latent heat recovery.

property minimum_operation_time

Get or set a the minimum hours of operation before the system shuts off.

property properties

Get properties for extensions.

property radiant_type

Get or set text to indicate the type of radiant system.

radiant_typeS = ('Floor', 'Ceiling', 'FloorWithCarpet', 'CeilingMetalPanel', 'FloorWithHardwood')
property schedules

Get an array of all the schedules associated with the HVAC system.

property sensible_heat_recovery

Get or set a number for the effectiveness of sensible heat recovery.

property switch_over_time

Get or set the minimum hours the system can switch between heating/cooling.

property user_data

Get or set an optional dictionary for additional meta data for this object.

This will be None until it has been set. All keys and values of this dictionary should be of a standard Python type to ensure correct serialization of the object to/from JSON (eg. str, float, int, list, dict)

property vintage

Get or set text to indicate the vintage of the template system.

Choose from the following options:

  • DOE_Ref_Pre_1980

  • DOE_Ref_1980_2004

  • ASHRAE_2004

  • ASHRAE_2007

  • ASHRAE_2010

  • ASHRAE_2013

  • ASHRAE_2016

  • ASHRAE_2019