honeybee_openstudio.hvac.standards.air_conditioner_variable_refrigerant_flow module¶
Module taken from OpenStudio-standards.
https://github.com/NREL/openstudio-standards/blob/master/ lib/openstudio-standards/prototypes/common/objects/ Prototype.AirConditionerVariableRefrigerantFlow.rb
- honeybee_openstudio.hvac.standards.air_conditioner_variable_refrigerant_flow.create_air_conditioner_variable_refrigerant_flow(model, name='VRF System', schedule=None, type=None, cooling_cop=4.287, heating_cop=4.147, heat_recovery=True, defrost_strategy='Resistive', condenser_type='AirCooled', condenser_loop=None, master_zone=None, priority_control_type='LoadPriority')[source]¶
Prototype AirConditionerVariableRefrigerantFlow object.
Enters in default curves for coil by type of coil.
- Parameters:
model – [OpenStudio::Model::Model] OpenStudio model object.
name – [String] the name of the system, or None in which case it will be defaulted.
schedule – [String] name of the availability schedule, or [<OpenStudio::Model::Schedule>] Schedule object, or None in which case default to always on.
type – [String] the type of unit to reference for the correct curve set.
cooling_cop – [Double] rated cooling coefficient of performance.
heating_cop – [Double] rated heating coefficient of performance.
heat_recovery – [Boolean] does the unit have heat recovery.
defrost_strategy – [String] type of defrost strategy. Options are ReverseCycle or Resistive.
condenser_type – [String] type of condenser. options are AirCooled (default), WaterCooled, and EvaporativelyCooled. if WaterCooled, the user most include a condenser_loop.
master_zone – [<OpenStudio::Model::ThermalZone>] master control zone to switch between heating and cooling.
priority_control_type – [String] Type of master thermostat priority control type. Options are LoadPriority, ZonePriority, ThermostatOffsetPriority, MasterThermostatPriority.