19. Getting information about Sinergym environments

Sinergym environments have an extended backend to work with building and weather models, the EnergyPlus engine, Wrappers, etc.

However, it’s crucial that users can access information about these background components from the environment interface. This section will show you how to do that.

[1]:
import gymnasium as gym
import numpy as np

import sinergym
from sinergym.utils.common import export_schedulers_to_excel

19.1. Schedulers information

Buildings have a set of schedulers that control the building’s actuators according to predefined rules. In addition to the information available in the log files generated by EnergyPlus, you can consult Sinergym’s reading of the building to see how these schedulers affect the building. Schedulers information is extracted into a Python dictionary, and Sinergym can export that information to an Excel file. To do this, simply load the environment and follow the next steps:

[2]:
from pprint import pprint

env = gym.make('Eplus-demo-v1')
schedulers=env.get_wrapper_attr('schedulers')
pprint(schedulers)
#==============================================================================================#
[ENVIRONMENT] (INFO) : Creating Gymnasium environment... [demo-v1]
#==============================================================================================#
[MODELING] (INFO) : Experiment working directory created [/workspaces/sinergym/examples/Eplus-env-demo-v1-res1]
[MODELING] (INFO) : Model Config is correct.
[MODELING] (INFO) : Updated building model with whole Output:Variable available names
[MODELING] (INFO) : Updated building model with whole Output:Meter available names
[MODELING] (INFO) : Extra config: runperiod updated to {'apply_weekend_holiday_rule': 'No', 'begin_day_of_month': 1, 'begin_month': 1, 'begin_year': 1991, 'day_of_week_for_start_day': 'Monday', 'end_day_of_month': 1, 'end_month': 3, 'end_year': 1991, 'use_weather_file_daylight_saving_period': 'Yes', 'use_weather_file_holidays_and_special_days': 'Yes', 'use_weather_file_rain_indicators': 'Yes', 'use_weather_file_snow_indicators': 'Yes'}
[MODELING] (INFO) : Updated episode length (seconds): 5184000.0
[MODELING] (INFO) : Updated timestep size (seconds): 3600.0
[MODELING] (INFO) : Updated timesteps per episode: 1440
[MODELING] (INFO) : runperiod established: {'start_day': 1, 'start_month': 1, 'start_year': 1991, 'end_day': 1, 'end_month': 3, 'end_year': 1991, 'start_weekday': 0, 'n_steps_per_hour': 1}
[MODELING] (INFO) : Episode length (seconds): 5184000.0
[MODELING] (INFO) : timestep size (seconds): 3600.0
[MODELING] (INFO) : timesteps per episode: 1441
[REWARD] (INFO) : Reward function initialized.
[ENVIRONMENT] (INFO) : Environment demo-v1 created successfully.
{'ActSchd': {'SPACE1-1 People 1': {'field_name': 'activity_level_schedule_name',
                                   'table_name': 'People'},
             'SPACE2-1 People 1': {'field_name': 'activity_level_schedule_name',
                                   'table_name': 'People'},
             'SPACE3-1 People 1': {'field_name': 'activity_level_schedule_name',
                                   'table_name': 'People'},
             'SPACE4-1 People 1': {'field_name': 'activity_level_schedule_name',
                                   'table_name': 'People'},
             'SPACE5-1 People 1': {'field_name': 'activity_level_schedule_name',
                                   'table_name': 'People'},
             'Type': 'Any Number'},
 'ActivitySch': {'Type': 'Any Number'},
 'AirVelocitySch': {'SPACE1-1 People 1': {'field_name': 'air_velocity_schedule_name',
                                          'table_name': 'People'},
                    'SPACE2-1 People 1': {'field_name': 'air_velocity_schedule_name',
                                          'table_name': 'People'},
                    'SPACE3-1 People 1': {'field_name': 'air_velocity_schedule_name',
                                          'table_name': 'People'},
                    'SPACE4-1 People 1': {'field_name': 'air_velocity_schedule_name',
                                          'table_name': 'People'},
                    'SPACE5-1 People 1': {'field_name': 'air_velocity_schedule_name',
                                          'table_name': 'People'},
                    'Type': 'Any Number'},
 'BasinHeaterSched': {'Main Cooling Coil 1': {'field_name': 'basin_heater_operating_schedule_name',
                                              'table_name': 'Coil:Cooling:DX:TwoSpeed'},
                      'Type': 'On/Off'},
 'Clg-SetP-Sch': {'CoolingSetpoint': {'field_name': 'setpoint_temperature_schedule_name',
                                      'table_name': 'ThermostatSetpoint:SingleCooling'},
                  'DualSetPoint': {'field_name': 'cooling_setpoint_temperature_schedule_name',
                                   'table_name': 'ThermostatSetpoint:DualSetpoint'},
                  'Type': 'Temperature'},
 'ClothingSch': {'Type': 'Any Number'},
 'CoolingCoilAvailSched': {'DX Cooling Coil System 1': {'field_name': 'availability_schedule_name',
                                                        'table_name': 'CoilSystem:Cooling:DX'},
                           'Main Cooling Coil 1': {'field_name': 'availability_schedule_name',
                                                   'table_name': 'Coil:Cooling:DX:TwoSpeed'},
                           'Type': 'Fraction'},
 'EQUIP-1': {'SPACE1-1 ElecEq 1': {'field_name': 'schedule_name',
                                   'table_name': 'ElectricEquipment'},
             'SPACE2-1 ElecEq 1': {'field_name': 'schedule_name',
                                   'table_name': 'ElectricEquipment'},
             'SPACE3-1 ElecEq 1': {'field_name': 'schedule_name',
                                   'table_name': 'ElectricEquipment'},
             'SPACE4-1 ElecEq 1': {'field_name': 'schedule_name',
                                   'table_name': 'ElectricEquipment'},
             'SPACE5-1 ElecEq 1': {'field_name': 'schedule_name',
                                   'table_name': 'ElectricEquipment'},
             'Type': 'Fraction'},
 'FanAvailSched': {'Supply Fan 1': {'field_name': 'availability_schedule_name',
                                    'table_name': 'Fan:VariableVolume'},
                   'Type': 'Fraction',
                   'VAV Sys 1 Avail': {'field_name': 'schedule_name',
                                       'table_name': 'AvailabilityManager:Scheduled'}},
 'Htg-SetP-Sch': {'DualSetPoint': {'field_name': 'heating_setpoint_temperature_schedule_name',
                                   'table_name': 'ThermostatSetpoint:DualSetpoint'},
                  'HeatingSetpoint': {'field_name': 'setpoint_temperature_schedule_name',
                                      'table_name': 'ThermostatSetpoint:SingleHeating'},
                  'Type': 'Temperature'},
 'INFIL-SCH': {'SPACE1-1 Infil 1': {'field_name': 'schedule_name',
                                    'table_name': 'ZoneInfiltration:DesignFlowRate'},
               'SPACE2-1 Infil 1': {'field_name': 'schedule_name',
                                    'table_name': 'ZoneInfiltration:DesignFlowRate'},
               'SPACE3-1 Infil 1': {'field_name': 'schedule_name',
                                    'table_name': 'ZoneInfiltration:DesignFlowRate'},
               'SPACE4-1 Infil 1': {'field_name': 'schedule_name',
                                    'table_name': 'ZoneInfiltration:DesignFlowRate'},
               'SPACE5-1 Infil 1': {'field_name': 'schedule_name',
                                    'table_name': 'ZoneInfiltration:DesignFlowRate'},
               'Type': 'Fraction'},
 'LIGHTS-1': {'SPACE1-1 Lights 1': {'field_name': 'schedule_name',
                                    'table_name': 'Lights'},
              'SPACE2-1 Lights 1': {'field_name': 'schedule_name',
                                    'table_name': 'Lights'},
              'SPACE3-1 Lights 1': {'field_name': 'schedule_name',
                                    'table_name': 'Lights'},
              'SPACE4-1 Lights 1': {'field_name': 'schedule_name',
                                    'table_name': 'Lights'},
              'SPACE5-1 Lights 1': {'field_name': 'schedule_name',
                                    'table_name': 'Lights'},
              'Type': 'Fraction'},
 'Min OA Sched': {'OA Controller 1': {'field_name': 'minimum_outdoor_air_schedule_name',
                                      'table_name': 'Controller:OutdoorAir'},
                  'Type': 'Fraction'},
 'Min OARequirements Sched': {'Type': 'Any Number',
                              'ZoneMinOARequirements': {'field_name': 'outdoor_air_schedule_name',
                                                        'table_name': 'DesignSpecification:OutdoorAir'}},
 'OCCUPY-1': {'SPACE1-1 People 1': {'field_name': 'number_of_people_schedule_name',
                                    'table_name': 'People'},
              'SPACE2-1 People 1': {'field_name': 'number_of_people_schedule_name',
                                    'table_name': 'People'},
              'SPACE3-1 People 1': {'field_name': 'number_of_people_schedule_name',
                                    'table_name': 'People'},
              'SPACE4-1 People 1': {'field_name': 'number_of_people_schedule_name',
                                    'table_name': 'People'},
              'SPACE5-1 People 1': {'field_name': 'number_of_people_schedule_name',
                                    'table_name': 'People'},
              'Type': 'Fraction'},
 'PlenumClg-SetP-Sch': {'PlenumCoolingSetpoint': {'field_name': 'setpoint_temperature_schedule_name',
                                                  'table_name': 'ThermostatSetpoint:SingleCooling'},
                        'Type': 'Temperature'},
 'PlenumHtg-SetP-Sch': {'PlenumHeatingSetpoint': {'field_name': 'setpoint_temperature_schedule_name',
                                                  'table_name': 'ThermostatSetpoint:SingleHeating'},
                        'Type': 'Temperature'},
 'ReheatCoilAvailSched': {'Main heating Coil 1': {'field_name': 'availability_schedule_name',
                                                  'table_name': 'Coil:Heating:Electric'},
                          'SPACE1-1 VAV Reheat': {'field_name': 'availability_schedule_name',
                                                  'table_name': 'AirTerminal:SingleDuct:VAV:Reheat'},
                          'SPACE1-1 Zone Coil': {'field_name': 'availability_schedule_name',
                                                 'table_name': 'Coil:Heating:Electric'},
                          'SPACE2-1 VAV Reheat': {'field_name': 'availability_schedule_name',
                                                  'table_name': 'AirTerminal:SingleDuct:VAV:Reheat'},
                          'SPACE2-1 Zone Coil': {'field_name': 'availability_schedule_name',
                                                 'table_name': 'Coil:Heating:Electric'},
                          'SPACE3-1 VAV Reheat': {'field_name': 'availability_schedule_name',
                                                  'table_name': 'AirTerminal:SingleDuct:VAV:Reheat'},
                          'SPACE3-1 Zone Coil': {'field_name': 'availability_schedule_name',
                                                 'table_name': 'Coil:Heating:Electric'},
                          'SPACE4-1 VAV Reheat': {'field_name': 'availability_schedule_name',
                                                  'table_name': 'AirTerminal:SingleDuct:VAV:Reheat'},
                          'SPACE4-1 Zone Coil': {'field_name': 'availability_schedule_name',
                                                 'table_name': 'Coil:Heating:Electric'},
                          'SPACE5-1 VAV Reheat': {'field_name': 'availability_schedule_name',
                                                  'table_name': 'AirTerminal:SingleDuct:VAV:Reheat'},
                          'SPACE5-1 Zone Coil': {'field_name': 'availability_schedule_name',
                                                 'table_name': 'Coil:Heating:Electric'},
                          'Type': 'Fraction'},
 'Seasonal Reset Supply Air Temp Sch': {'Type': 'Temperature'},
 'ShadeTransSch': {'Main South Overhang': {'field_name': 'transmittance_schedule_name',
                                           'table_name': 'Shading:Zone:Detailed'},
                   'South Door Overhang': {'field_name': 'transmittance_schedule_name',
                                           'table_name': 'Shading:Zone:Detailed'},
                   'Type': 'Fraction'},
 'WorkEffSch': {'SPACE1-1 People 1': {'field_name': 'work_efficiency_schedule_name',
                                      'table_name': 'People'},
                'SPACE2-1 People 1': {'field_name': 'work_efficiency_schedule_name',
                                      'table_name': 'People'},
                'SPACE3-1 People 1': {'field_name': 'work_efficiency_schedule_name',
                                      'table_name': 'People'},
                'SPACE4-1 People 1': {'field_name': 'work_efficiency_schedule_name',
                                      'table_name': 'People'},
                'SPACE5-1 People 1': {'field_name': 'work_efficiency_schedule_name',
                                      'table_name': 'People'},
                'Type': 'Fraction'},
 'Zone Control Type Sched': {'SPACE1-1 Control': {'field_name': 'control_type_schedule_name',
                                                  'table_name': 'ZoneControl:Thermostat'},
                             'SPACE2-1 Control': {'field_name': 'control_type_schedule_name',
                                                  'table_name': 'ZoneControl:Thermostat'},
                             'SPACE3-1 Control': {'field_name': 'control_type_schedule_name',
                                                  'table_name': 'ZoneControl:Thermostat'},
                             'SPACE4-1 Control': {'field_name': 'control_type_schedule_name',
                                                  'table_name': 'ZoneControl:Thermostat'},
                             'SPACE5-1 Control': {'field_name': 'control_type_schedule_name',
                                                  'table_name': 'ZoneControl:Thermostat'},
                             'Type': 'Control Type'}}

If you want to get an Excel file with that information, there’s a function for that:

[3]:
export_schedulers_to_excel(schedulers=schedulers,path='./example.xlsx')

19.2. Environment Properties

As mentioned, some environment features are created in the gym interface layer, but more information is calculated in the backend. Therefore, Sinergym environments have several properties to consult this information. For more details, visit the documentation, but here are some examples:

Note: We’re using the get_wrapper_attr method from Gym to get information about the attributes, in line with the new Gymnasium protocol.

[4]:
print('What is all the variables names which conform my Gymnasium observation?: {}'.format(env.get_wrapper_attr('observation_variables')))
print('What is all the variables names which conform my Gymnasium action?: {}'.format(env.get_wrapper_attr('action_variables')))
print('Is there an episode executing?: {}'.format(env.get_wrapper_attr('is_running')))
print('What is the episode run period?: {}'.format(env.get_wrapper_attr('runperiod')))
print('Episode length in seconds?: {}'.format(env.get_wrapper_attr('episode_length')))
print('How many steps have an episode?: {}'.format(env.get_wrapper_attr('timestep_per_episode')))
print('How often do steps changed?: {}'.format(env.get_wrapper_attr('step_size')))
print('What are the available zones?: {}'.format(env.get_wrapper_attr('zone_names')))
print('Where is the output path of Sinergym environment?: {}'.format(env.get_wrapper_attr('workspace_path')))
print('Where is the building used?: {}'.format(env.get_wrapper_attr('building_path')))
print('Where is the weather used?: {}'.format(env.get_wrapper_attr('weather_path')))
print('Is the action space discrete?: {}'.format(env.get_wrapper_attr('is_discrete')))
What is all the variables names which conform my Gymnasium observation?: ['month', 'day_of_month', 'hour', 'outdoor_temperature', 'htg_setpoint', 'clg_setpoint', 'air_temperature', 'air_humidity', 'HVAC_electricity_demand_rate']
What is all the variables names which conform my Gymnasium action?: ['Heating_Setpoint_RL', 'Cooling_Setpoint_RL']
Is there an episode executing?: False
What is the episode run period?: {'start_day': 1, 'start_month': 1, 'start_year': 1991, 'end_day': 1, 'end_month': 3, 'end_year': 1991, 'start_weekday': 0, 'n_steps_per_hour': 1}
Episode length in seconds?: 5184000.0
How many steps have an episode?: 1441
How often do steps changed?: 3600.0
What are the available zones?: ['PLENUM-1', 'SPACE1-1', 'SPACE2-1', 'SPACE3-1', 'SPACE4-1', 'SPACE5-1']
Where is the output path of Sinergym environment?: /workspaces/sinergym/examples/Eplus-env-demo-v1-res1
Where is the building used?: /workspaces/sinergym/sinergym/data/buildings/5ZoneAutoDXVAV.epJSON
Where is the weather used?: /workspaces/sinergym/sinergym/data/weather/USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3.epw
Is the action space discrete?: False

19.3. Handlers information

Similarly, we can consult the actuators, variables, and meters available in the environment, along with those we’re specifically controlling and observing with our environment.

You can consult it as follows:

[5]:
print('Available Handlers: {}'.format(env.get_wrapper_attr('available_handlers')))
print('Controlled actuators: {}'.format(env.get_wrapper_attr('actuator_handlers')))
print('Observed variables: {}'.format(env.get_wrapper_attr('var_handlers')))
print('Observed meters: {}'.format(env.get_wrapper_attr('meter_handlers')))
Available Handlers: None
Controlled actuators: None
Observed variables: None
Observed meters: None

As you can see, the information isn’t displayed. This is due to internal reasons of the EnergyPlus API. To make this information available, we need to perform the first reset() on the environment:

[6]:
env.reset()
print('Available Handlers: {}'.format(env.get_wrapper_attr('available_handlers')))
print('Controlled actuators: {}'.format(env.get_wrapper_attr('actuator_handlers')))
print('Observed variables: {}'.format(env.get_wrapper_attr('var_handlers')))
print('Observed meters: {}'.format(env.get_wrapper_attr('meter_handlers')))
#----------------------------------------------------------------------------------------------#
[ENVIRONMENT] (INFO) : Starting a new episode... [demo-v1] [Episode 1]
#----------------------------------------------------------------------------------------------#
[MODELING] (INFO) : Episode directory created [/workspaces/sinergym/examples/Eplus-env-demo-v1-res1/Eplus-env-sub_run1]
[MODELING] (INFO) : Weather file USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3.epw used.
[MODELING] (INFO) : Adapting weather to building model. [USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3.epw]
[ENVIRONMENT] (INFO) : Saving episode output path... [/workspaces/sinergym/examples/Eplus-env-demo-v1-res1/Eplus-env-sub_run1/output]
/usr/local/lib/python3.12/dist-packages/opyplus/weather_data/weather_data.py:485: FutureWarning: Downcasting behavior in `replace` is deprecated and will be removed in a future version. To retain the old behavior, explicitly call `result.infer_objects(copy=False)`. To opt-in to the future behavior, set `pd.set_option('future.no_silent_downcasting', True)`
  df = df.replace(
[SIMULATOR] (INFO) : Running EnergyPlus with args: ['-w', '/workspaces/sinergym/examples/Eplus-env-demo-v1-res1/Eplus-env-sub_run1/USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3.epw', '-d', '/workspaces/sinergym/examples/Eplus-env-demo-v1-res1/Eplus-env-sub_run1/output', '/workspaces/sinergym/examples/Eplus-env-demo-v1-res1/Eplus-env-sub_run1/5ZoneAutoDXVAV.epJSON']
[ENVIRONMENT] (INFO) : Episode 1 started.
[SIMULATOR] (INFO) : handlers initialized.
[SIMULATOR] (INFO) : handlers are ready.
[SIMULATOR] (INFO) : System is ready.
Available Handlers: **ACTUATORS**
Actuator,Schedule:Compact,Schedule Value,ACTSCHD;
Actuator,Schedule:Compact,Schedule Value,ACTIVITYSCH;
Actuator,Schedule:Compact,Schedule Value,AIRVELOCITYSCH;
Actuator,Schedule:Compact,Schedule Value,BASINHEATERSCHED;
Actuator,Schedule:Compact,Schedule Value,CLG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,CLOTHINGSCH;
Actuator,Schedule:Compact,Schedule Value,COOLINGCOILAVAILSCHED;
Actuator,Schedule:Compact,Schedule Value,EQUIP-1;
Actuator,Schedule:Compact,Schedule Value,FANAVAILSCHED;
Actuator,Schedule:Compact,Schedule Value,HTG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,INFIL-SCH;
Actuator,Schedule:Compact,Schedule Value,LIGHTS-1;
Actuator,Schedule:Compact,Schedule Value,MIN OA SCHED;
Actuator,Schedule:Compact,Schedule Value,MIN OAREQUIREMENTS SCHED;
Actuator,Schedule:Compact,Schedule Value,OCCUPY-1;
Actuator,Schedule:Compact,Schedule Value,PLENUMCLG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,PLENUMHTG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,REHEATCOILAVAILSCHED;
Actuator,Schedule:Compact,Schedule Value,SEASONAL RESET SUPPLY AIR TEMP SCH;
Actuator,Schedule:Compact,Schedule Value,SHADETRANSSCH;
Actuator,Schedule:Compact,Schedule Value,WORKEFFSCH;
Actuator,Schedule:Compact,Schedule Value,ZONE CONTROL TYPE SCHED;
Actuator,Weather Data,Outdoor Dry Bulb,Environment;
Actuator,Weather Data,Outdoor Dew Point,Environment;
Actuator,Weather Data,Outdoor Relative Humidity,Environment;
Actuator,Weather Data,Diffuse Solar,Environment;
Actuator,Weather Data,Direct Solar,Environment;
Actuator,Weather Data,Wind Speed,Environment;
Actuator,Weather Data,Wind Direction,Environment;
Actuator,Material,Surface Property Solar Absorptance,BR01;
Actuator,Material,Surface Property Thermal Absorptance,BR01;
Actuator,Material,Surface Property Visible Absorptance,BR01;
Actuator,Material,Surface Property Solar Absorptance,CC03;
Actuator,Material,Surface Property Thermal Absorptance,CC03;
Actuator,Material,Surface Property Visible Absorptance,CC03;
Actuator,Material,Surface Property Solar Absorptance,GP01;
Actuator,Material,Surface Property Thermal Absorptance,GP01;
Actuator,Material,Surface Property Visible Absorptance,GP01;
Actuator,Material,Surface Property Solar Absorptance,GP02;
Actuator,Material,Surface Property Thermal Absorptance,GP02;
Actuator,Material,Surface Property Visible Absorptance,GP02;
Actuator,Material,Surface Property Solar Absorptance,IN02;
Actuator,Material,Surface Property Thermal Absorptance,IN02;
Actuator,Material,Surface Property Visible Absorptance,IN02;
Actuator,Material,Surface Property Solar Absorptance,IN46;
Actuator,Material,Surface Property Thermal Absorptance,IN46;
Actuator,Material,Surface Property Visible Absorptance,IN46;
Actuator,Material,Surface Property Solar Absorptance,PW03;
Actuator,Material,Surface Property Thermal Absorptance,PW03;
Actuator,Material,Surface Property Visible Absorptance,PW03;
Actuator,Material,Surface Property Solar Absorptance,RG01;
Actuator,Material,Surface Property Thermal Absorptance,RG01;
Actuator,Material,Surface Property Visible Absorptance,RG01;
Actuator,Material,Surface Property Solar Absorptance,WD01;
Actuator,Material,Surface Property Thermal Absorptance,WD01;
Actuator,Material,Surface Property Visible Absorptance,WD01;
Actuator,Material,Surface Property Solar Absorptance,WD10;
Actuator,Material,Surface Property Thermal Absorptance,WD10;
Actuator,Material,Surface Property Visible Absorptance,WD10;
Actuator,Material,Surface Property Solar Absorptance,CP01;
Actuator,Material,Surface Property Thermal Absorptance,CP01;
Actuator,Material,Surface Property Visible Absorptance,CP01;
Actuator,Material,Surface Property Solar Absorptance,MAT-CLNG-1;
Actuator,Material,Surface Property Thermal Absorptance,MAT-CLNG-1;
Actuator,Material,Surface Property Visible Absorptance,MAT-CLNG-1;
Actuator,Material,Surface Property Solar Absorptance,MAT-FLOOR-1;
Actuator,Material,Surface Property Thermal Absorptance,MAT-FLOOR-1;
Actuator,Material,Surface Property Visible Absorptance,MAT-FLOOR-1;
Actuator,Material,Surface Property Solar Absorptance,MAT-SB-U;
Actuator,Material,Surface Property Thermal Absorptance,MAT-SB-U;
Actuator,Material,Surface Property Visible Absorptance,MAT-SB-U;
Actuator,People,Number of People,SPACE1-1 PEOPLE 1;
Actuator,People,Number of People,SPACE2-1 PEOPLE 1;
Actuator,People,Number of People,SPACE3-1 PEOPLE 1;
Actuator,People,Number of People,SPACE4-1 PEOPLE 1;
Actuator,People,Number of People,SPACE5-1 PEOPLE 1;
Actuator,Lights,Electricity Rate,SPACE1-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE2-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE3-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE4-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE5-1 LIGHTS 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE1-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE2-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE3-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE4-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE5-1 ELECEQ 1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,MAIN SOUTH OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,MAIN SOUTH OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,Mir-MAIN SOUTH OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,Mir-MAIN SOUTH OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SOUTH DOOR OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SOUTH DOOR OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,Mir-SOUTH DOOR OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,Mir-SOUTH DOOR OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PB;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PB;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PF;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PF;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PL;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PL;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PR;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PR;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C1-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C1-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C2-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C2-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C3-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C3-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C4-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C4-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C5-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C5-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,TOP-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,TOP-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,FRONT-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,FRONT-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB12;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB12;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB14;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB14;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB15;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB15;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F1-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F1-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C1-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C1-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,DF-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,DF-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WF-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WF-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,RIGHT-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,RIGHT-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB21;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB21;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB23;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB23;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB25;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB25;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F2-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F2-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C2-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C2-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WR-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WR-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,BACK-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,BACK-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB32;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB32;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB34;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB34;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB35;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB35;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F3-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F3-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C3-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C3-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,DB-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,DB-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WB-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WB-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,LEFT-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,LEFT-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB41;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB41;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB43;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB43;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB45;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB45;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F4-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F4-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C4-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C4-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WL-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WL-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB51;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB51;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB52;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB52;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB53;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB53;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB54;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB54;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F5-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F5-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C5-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C5-1;
Actuator,Surface,Construction State,WALL-1PB;
Actuator,Surface,Construction State,WALL-1PF;
Actuator,Surface,Construction State,WALL-1PL;
Actuator,Surface,Construction State,WALL-1PR;
Actuator,Surface,Construction State,C1-1P;
Actuator,Surface,Construction State,C2-1P;
Actuator,Surface,Construction State,C3-1P;
Actuator,Surface,Construction State,C4-1P;
Actuator,Surface,Construction State,C5-1P;
Actuator,Surface,Construction State,TOP-1;
Actuator,Surface,Construction State,FRONT-1;
Actuator,Surface,Construction State,SB12;
Actuator,Surface,Construction State,SB14;
Actuator,Surface,Construction State,SB15;
Actuator,Surface,Construction State,F1-1;
Actuator,Surface,Construction State,C1-1;
Actuator,Surface,Construction State,DF-1;
Actuator,Surface,Construction State,WF-1;
Actuator,Surface,Construction State,RIGHT-1;
Actuator,Surface,Construction State,SB21;
Actuator,Surface,Construction State,SB23;
Actuator,Surface,Construction State,SB25;
Actuator,Surface,Construction State,F2-1;
Actuator,Surface,Construction State,C2-1;
Actuator,Surface,Construction State,WR-1;
Actuator,Surface,Construction State,BACK-1;
Actuator,Surface,Construction State,SB32;
Actuator,Surface,Construction State,SB34;
Actuator,Surface,Construction State,SB35;
Actuator,Surface,Construction State,F3-1;
Actuator,Surface,Construction State,C3-1;
Actuator,Surface,Construction State,DB-1;
Actuator,Surface,Construction State,WB-1;
Actuator,Surface,Construction State,LEFT-1;
Actuator,Surface,Construction State,SB41;
Actuator,Surface,Construction State,SB43;
Actuator,Surface,Construction State,SB45;
Actuator,Surface,Construction State,F4-1;
Actuator,Surface,Construction State,C4-1;
Actuator,Surface,Construction State,WL-1;
Actuator,Surface,Construction State,SB51;
Actuator,Surface,Construction State,SB52;
Actuator,Surface,Construction State,SB53;
Actuator,Surface,Construction State,SB54;
Actuator,Surface,Construction State,F5-1;
Actuator,Surface,Construction State,C5-1;
Actuator,Surface,View Factor To Ground,WALL-1PB;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PB;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PB;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PB;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PB;
Actuator,Surface,View Factor To Ground,WALL-1PF;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PF;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PF;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PF;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PF;
Actuator,Surface,View Factor To Ground,WALL-1PL;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PL;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PL;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PL;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PL;
Actuator,Surface,View Factor To Ground,WALL-1PR;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PR;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PR;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PR;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PR;
Actuator,Surface,View Factor To Ground,TOP-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,TOP-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,TOP-1;
Actuator,Surface,Outdoor Air Wind Speed,TOP-1;
Actuator,Surface,Outdoor Air Wind Direction,TOP-1;
Actuator,Surface,View Factor To Ground,FRONT-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,FRONT-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,FRONT-1;
Actuator,Surface,Outdoor Air Wind Speed,FRONT-1;
Actuator,Surface,Outdoor Air Wind Direction,FRONT-1;
Actuator,Surface,View Factor To Ground,DF-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,DF-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,DF-1;
Actuator,Surface,Outdoor Air Wind Speed,DF-1;
Actuator,Surface,Outdoor Air Wind Direction,DF-1;
Actuator,Surface,View Factor To Ground,WF-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WF-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WF-1;
Actuator,Surface,Outdoor Air Wind Speed,WF-1;
Actuator,Surface,Outdoor Air Wind Direction,WF-1;
Actuator,Surface,View Factor To Ground,RIGHT-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,RIGHT-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,RIGHT-1;
Actuator,Surface,Outdoor Air Wind Speed,RIGHT-1;
Actuator,Surface,Outdoor Air Wind Direction,RIGHT-1;
Actuator,Surface,View Factor To Ground,WR-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WR-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WR-1;
Actuator,Surface,Outdoor Air Wind Speed,WR-1;
Actuator,Surface,Outdoor Air Wind Direction,WR-1;
Actuator,Surface,View Factor To Ground,BACK-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,BACK-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,BACK-1;
Actuator,Surface,Outdoor Air Wind Speed,BACK-1;
Actuator,Surface,Outdoor Air Wind Direction,BACK-1;
Actuator,Surface,View Factor To Ground,DB-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,DB-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,DB-1;
Actuator,Surface,Outdoor Air Wind Speed,DB-1;
Actuator,Surface,Outdoor Air Wind Direction,DB-1;
Actuator,Surface,View Factor To Ground,WB-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WB-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WB-1;
Actuator,Surface,Outdoor Air Wind Speed,WB-1;
Actuator,Surface,Outdoor Air Wind Direction,WB-1;
Actuator,Surface,View Factor To Ground,LEFT-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,LEFT-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,LEFT-1;
Actuator,Surface,Outdoor Air Wind Speed,LEFT-1;
Actuator,Surface,Outdoor Air Wind Direction,LEFT-1;
Actuator,Surface,View Factor To Ground,WL-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WL-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WL-1;
Actuator,Surface,Outdoor Air Wind Speed,WL-1;
Actuator,Surface,Outdoor Air Wind Direction,WL-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,PLENUM-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,PLENUM-1;
Actuator,Zone,Outdoor Air Wind Speed,PLENUM-1;
Actuator,Zone,Outdoor Air Wind Direction,PLENUM-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE1-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE1-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE1-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE1-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE2-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE2-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE2-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE2-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE3-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE3-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE3-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE3-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE4-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE4-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE4-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE4-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE5-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE5-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE5-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE5-1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE1-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE2-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE3-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE4-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE5-1 INFIL 1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE5-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE1-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE1-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE2-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE2-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE3-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE3-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE4-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE4-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE5-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE5-1;
Actuator,Fan,Fan Air Mass Flow Rate,SUPPLY FAN 1;
Actuator,Fan,Fan Pressure Rise,SUPPLY FAN 1;
Actuator,Fan,Fan Total Efficiency,SUPPLY FAN 1;
Actuator,Fan,Fan Autosized Air Flow Rate,SUPPLY FAN 1;
Actuator,Sizing:System,Main Supply Volume Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Coincident Peak Cooling Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Coincident Peak Heating Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Noncoincident Peak Cooling Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Noncoincident Peak Heating Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Heating Volume Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Cooling Volume Flow Rate,VAV SYS 1;
Actuator,Outdoor Air Controller,Air Mass Flow Rate,OA CONTROLLER 1;
Actuator,Curve,Curve Result,VARSPEEDCOOLCAPFT;
Actuator,Curve,Curve Result,VARSPEEDCOOLCAPLSFT;
Actuator,Curve,Curve Result,VARSPEEDCOOLEIRFT;
Actuator,Curve,Curve Result,VARSPEEDCOOLEIRLSFT;
Actuator,Curve,Curve Result,PACKAGEDRATEDCOOLCAPFFLOW;
Actuator,Curve,Curve Result,PACKAGEDRATEDCOOLEIRFFLOW;
Actuator,Curve,Curve Result,VARSPEEDCYCLINGPLFFPLR;
Actuator,System Node Setpoint,Temperature Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Temperature Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,Outdoor Air System Node,Drybulb Temperature,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Wetbulb Temperature,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Wind Speed,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Wind Direction,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Drybulb Temperature,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,Outdoor Air System Node,Wetbulb Temperature,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,Outdoor Air System Node,Wind Speed,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,Outdoor Air System Node,Wind Direction,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,AirLoopHVAC,Availability Status,VAV SYS 1;
**INTERNAL_VARIABLES**
InternalVariable,People Count Design Level,SPACE1-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE2-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE3-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE4-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE5-1 PEOPLE 1
InternalVariable,Lighting Power Design Level,SPACE1-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE2-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE3-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE4-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE5-1 LIGHTS 1
InternalVariable,Plug and Process Power Design Level,SPACE1-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE2-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE3-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE4-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE5-1 ELECEQ 1
InternalVariable,Zone Floor Area,PLENUM-1
InternalVariable,Zone Air Volume,PLENUM-1
InternalVariable,Zone Multiplier,PLENUM-1
InternalVariable,Zone List Multiplier,PLENUM-1
InternalVariable,Zone Floor Area,SPACE1-1
InternalVariable,Zone Air Volume,SPACE1-1
InternalVariable,Zone Multiplier,SPACE1-1
InternalVariable,Zone List Multiplier,SPACE1-1
InternalVariable,Zone Floor Area,SPACE2-1
InternalVariable,Zone Air Volume,SPACE2-1
InternalVariable,Zone Multiplier,SPACE2-1
InternalVariable,Zone List Multiplier,SPACE2-1
InternalVariable,Zone Floor Area,SPACE3-1
InternalVariable,Zone Air Volume,SPACE3-1
InternalVariable,Zone Multiplier,SPACE3-1
InternalVariable,Zone List Multiplier,SPACE3-1
InternalVariable,Zone Floor Area,SPACE4-1
InternalVariable,Zone Air Volume,SPACE4-1
InternalVariable,Zone Multiplier,SPACE4-1
InternalVariable,Zone List Multiplier,SPACE4-1
InternalVariable,Zone Floor Area,SPACE5-1
InternalVariable,Zone Air Volume,SPACE5-1
InternalVariable,Zone Multiplier,SPACE5-1
InternalVariable,Zone List Multiplier,SPACE5-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE1-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE1-1
InternalVariable,Final Zone Design Heating Load,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE1-1
InternalVariable,Final Zone Design Cooling Load,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE1-1
InternalVariable,Final Zone Design Heating Air Density,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE1-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE1-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE1-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE1-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE1-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE2-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE2-1
InternalVariable,Final Zone Design Heating Load,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE2-1
InternalVariable,Final Zone Design Cooling Load,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE2-1
InternalVariable,Final Zone Design Heating Air Density,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE2-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE2-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE2-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE2-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE2-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE3-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE3-1
InternalVariable,Final Zone Design Heating Load,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE3-1
InternalVariable,Final Zone Design Cooling Load,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE3-1
InternalVariable,Final Zone Design Heating Air Density,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE3-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE3-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE3-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE3-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE3-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE4-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE4-1
InternalVariable,Final Zone Design Heating Load,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE4-1
InternalVariable,Final Zone Design Cooling Load,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE4-1
InternalVariable,Final Zone Design Heating Air Density,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE4-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE4-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE4-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE4-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE4-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE5-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE5-1
InternalVariable,Final Zone Design Heating Load,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE5-1
InternalVariable,Final Zone Design Cooling Load,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE5-1
InternalVariable,Final Zone Design Heating Air Density,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE5-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE5-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE5-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE5-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE5-1
InternalVariable,Fan Maximum Mass Flow Rate,SUPPLY FAN 1
InternalVariable,Fan Nominal Pressure Rise,SUPPLY FAN 1
InternalVariable,Fan Nominal Total Efficiency,SUPPLY FAN 1
InternalVariable,Intermediate Air System Main Supply Volume Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Coincident Peak Cooling Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Coincident Peak Heating Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Noncoincident Peak Cooling Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Noncoincident Peak Heating Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Heating Volume Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Cooling Volume Flow Rate,VAV SYS 1
InternalVariable,Air System Cooling Design Sensible Capacity,VAV SYS 1
InternalVariable,Air System Cooling Design Total Capacity,VAV SYS 1
InternalVariable,Air System Heating Design Sensible Capacity,VAV SYS 1
InternalVariable,Air System Preheating Design Sensible Capacity,VAV SYS 1
InternalVariable,Air System Outdoor Air Design Volume Flow Rate,VAV SYS 1
InternalVariable,Air System Cooling Design Mixed Air Temperature,VAV SYS 1
InternalVariable,Air System Cooling Design Mixed Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Cooling Design Return Air Temperature,VAV SYS 1
InternalVariable,Air System Cooling Design Return Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Cooling Design Outdoor Air Temperature,VAV SYS 1
InternalVariable,Air System Cooling Design Outdoor Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Heating Design Mixed Air Temperature,VAV SYS 1
InternalVariable,Air System Heating Design Mixed Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Heating Design Return Air Temperature,VAV SYS 1
InternalVariable,Air System Heating Design Return Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Heating Design Outdoor Air Temperature,VAV SYS 1
InternalVariable,Air System Heating Design Outdoor Air Humidity Ratio,VAV SYS 1
InternalVariable,Outdoor Air Controller Maximum Mass Flow Rate,OA CONTROLLER 1
InternalVariable,Outdoor Air Controller Minimum Mass Flow Rate,OA CONTROLLER 1
**PLUGIN_GLOBAL_VARIABLES**
**TRENDS**
**METERS**
OutputMeter,Electricity:Facility
OutputMeter,Electricity:Building
OutputMeter,Electricity:Zone:SPACE1-1
OutputMeter,Electricity:SpaceType:GENERAL
OutputMeter,InteriorLights:Electricity
OutputMeter,InteriorLights:Electricity:Zone:SPACE1-1
OutputMeter,InteriorLights:Electricity:SpaceType:GENERAL
OutputMeter,GeneralLights:InteriorLights:Electricity
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE1-1
OutputMeter,GeneralLights:InteriorLights:Electricity:SpaceType:GENERAL
OutputMeter,Electricity:Zone:SPACE2-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE2-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE2-1
OutputMeter,Electricity:Zone:SPACE3-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE3-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE3-1
OutputMeter,Electricity:Zone:SPACE4-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE4-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE4-1
OutputMeter,Electricity:Zone:SPACE5-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE5-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE5-1
OutputMeter,InteriorEquipment:Electricity
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE1-1
OutputMeter,InteriorEquipment:Electricity:SpaceType:GENERAL
OutputMeter,General:InteriorEquipment:Electricity
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE1-1
OutputMeter,General:InteriorEquipment:Electricity:SpaceType:GENERAL
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE2-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE2-1
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE3-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE3-1
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE4-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE4-1
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE5-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE5-1
OutputMeter,EnergyTransfer:Facility
OutputMeter,EnergyTransfer:Building
OutputMeter,EnergyTransfer:Zone:PLENUM-1
OutputMeter,Heating:EnergyTransfer
OutputMeter,Heating:EnergyTransfer:Zone:PLENUM-1
OutputMeter,General:Heating:EnergyTransfer
OutputMeter,General:Heating:EnergyTransfer:Zone:PLENUM-1
OutputMeter,Cooling:EnergyTransfer
OutputMeter,Cooling:EnergyTransfer:Zone:PLENUM-1
OutputMeter,General:Cooling:EnergyTransfer
OutputMeter,General:Cooling:EnergyTransfer:Zone:PLENUM-1
OutputMeter,EnergyTransfer:Zone:SPACE1-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE1-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE1-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE1-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE1-1
OutputMeter,EnergyTransfer:Zone:SPACE2-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE2-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE2-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE2-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE2-1
OutputMeter,EnergyTransfer:Zone:SPACE3-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE3-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE3-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE3-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE3-1
OutputMeter,EnergyTransfer:Zone:SPACE4-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE4-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE4-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE4-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE4-1
OutputMeter,EnergyTransfer:Zone:SPACE5-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE5-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE5-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE5-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE5-1
OutputMeter,ElectricityPurchased:Facility
OutputMeter,ElectricityPurchased:Plant
OutputMeter,Cogeneration:ElectricityPurchased
OutputMeter,General:Cogeneration:ElectricityPurchased
OutputMeter,ElectricitySurplusSold:Facility
OutputMeter,ElectricitySurplusSold:Plant
OutputMeter,Cogeneration:ElectricitySurplusSold
OutputMeter,General:Cogeneration:ElectricitySurplusSold
OutputMeter,ElectricityNet:Facility
OutputMeter,ElectricityNet:Plant
OutputMeter,Cogeneration:ElectricityNet
OutputMeter,General:Cogeneration:ElectricityNet
OutputMeter,EnergyTransfer:HVAC
OutputMeter,HeatingCoils:EnergyTransfer
OutputMeter,Electricity:HVAC
OutputMeter,Heating:Electricity
OutputMeter,General:Heating:Electricity
OutputMeter,Fans:Electricity
OutputMeter,General:Fans:Electricity
OutputMeter,CoolingCoils:EnergyTransfer
OutputMeter,Cooling:Electricity
OutputMeter,General:Cooling:Electricity
OutputMeter,Water:Facility
OutputMeter,Water:HVAC
OutputMeter,Cooling:Water
OutputMeter,General:Cooling:Water
OutputMeter,MainsWater:Facility
OutputMeter,MainsWater:HVAC
OutputMeter,Cooling:MainsWater
OutputMeter,General:Cooling:MainsWater
OutputMeter,Carbon Equivalent:Facility
OutputMeter,CarbonEquivalentEmissions:Carbon Equivalent
**VARIABLES**
OutputVariable,Site Outdoor Air Drybulb Temperature,ENVIRONMENT
OutputVariable,Lights Electricity Energy,SPACE1-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE2-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE3-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE4-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE5-1 LIGHTS 1
OutputVariable,Electric Equipment Electricity Energy,SPACE1-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE2-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE3-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE4-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE5-1 ELECEQ 1
OutputVariable,Zone Air System Sensible Heating Energy,PLENUM-1
OutputVariable,Zone Air System Sensible Cooling Energy,PLENUM-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE1-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE1-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE2-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE2-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE3-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE3-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE4-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE4-1
OutputVariable,Zone Air Temperature,SPACE5-1
OutputVariable,Zone Air Relative Humidity,SPACE5-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE5-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE5-1
OutputVariable,Zone Thermostat Heating Setpoint Temperature,SPACE5-1
OutputVariable,Zone Thermostat Cooling Setpoint Temperature,SPACE5-1
OutputVariable,Facility Total Purchased Electricity Energy,WHOLE BUILDING
OutputVariable,Facility Total Surplus Electricity Energy,WHOLE BUILDING
OutputVariable,Facility Net Purchased Electricity Energy,WHOLE BUILDING
OutputVariable,Facility Total HVAC Electricity Demand Rate,WHOLE BUILDING
OutputVariable,Heating Coil Heating Energy,MAIN HEATING COIL 1
OutputVariable,Heating Coil Electricity Energy,MAIN HEATING COIL 1
OutputVariable,Heating Coil Heating Energy,SPACE1-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE1-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE2-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE2-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE3-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE3-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE4-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE4-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE5-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE5-1 ZONE COIL
OutputVariable,Fan Electricity Energy,SUPPLY FAN 1
OutputVariable,Cooling Coil Total Cooling Energy,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Electricity Energy,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Evaporative Condenser Water Volume,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Evaporative Condenser Mains Supply Water Volume,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Evaporative Condenser Pump Electricity Energy,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Basin Heater Electricity Energy,MAIN COOLING COIL 1
OutputVariable,Environmental Impact Total N2O Emissions Carbon Equivalent Mass,SITE
OutputVariable,Environmental Impact Total CH4 Emissions Carbon Equivalent Mass,SITE
OutputVariable,Environmental Impact Total CO2 Emissions Carbon Equivalent Mass,SITE

Controlled actuators: {'Heating_Setpoint_RL': 10, 'Cooling_Setpoint_RL': 5}
Observed variables: {'outdoor_temperature': 1, 'htg_setpoint': 26, 'clg_setpoint': 27, 'air_temperature': 22, 'air_humidity': 23, 'HVAC_electricity_demand_rate': 31}
Observed meters: {}

19.4. Displaying all the environment information

You can also print all the environment information. Just remember to do reset() beforehand to have handlers information too:

[7]:
env.info()

    #==================================================================================#
                                ENVIRONMENT NAME: demo-v1
    #==================================================================================#
    #----------------------------------------------------------------------------------#
                                ENVIRONMENT INFO:
    #----------------------------------------------------------------------------------#
    - Building file: /workspaces/sinergym/sinergym/data/buildings/5ZoneAutoDXVAV.epJSON
    - Zone names: ['PLENUM-1', 'SPACE1-1', 'SPACE2-1', 'SPACE3-1', 'SPACE4-1', 'SPACE5-1']
    - Weather file(s): ['USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3.epw']
    - Current weather used: /workspaces/sinergym/sinergym/data/weather/USA_PA_Pittsburgh-Allegheny.County.AP.725205_TMY3.epw
    - Episodes executed: 1
    - Workspace directory: /workspaces/sinergym/examples/Eplus-env-demo-v1-res1
    - Reward function: <sinergym.utils.rewards.LinearReward object at 0x7ff7829e4860>
    - Reset default options: {}
    - Run period: {'start_day': 1, 'start_month': 1, 'start_year': 1991, 'end_day': 1, 'end_month': 3, 'end_year': 1991, 'start_weekday': 0, 'n_steps_per_hour': 1}
    - Episode length (seconds): 5184000.0
    - Number of timesteps in an episode: 1441
    - Timestep size (seconds): 3600.0
    - It is discrete?: False
    #----------------------------------------------------------------------------------#
                                ENVIRONMENT SPACE:
    #----------------------------------------------------------------------------------#
    - Observation space: Box(-50000000.0, 50000000.0, (9,), float32)
    - Observation variables: ['month', 'day_of_month', 'hour', 'outdoor_temperature', 'htg_setpoint', 'clg_setpoint', 'air_temperature', 'air_humidity', 'HVAC_electricity_demand_rate']
    - Action space: Box([15.  22.5], [22.5 30. ], (2,), float32)
    - Action variables: ['Heating_Setpoint_RL', 'Cooling_Setpoint_RL']
    #==================================================================================#
                                    SIMULATOR
    #==================================================================================#
    *NOTE: To have information about available handlers and controlled elements, it is
    required to do env reset before to print information.*

    Is running? : True
    #----------------------------------------------------------------------------------#
                                AVAILABLE ELEMENTS:
    #----------------------------------------------------------------------------------#
    *Some variables can not be here depending if it is defined Output:Variable field
     in building model. See documentation for more information.*

    **ACTUATORS**
Actuator,Schedule:Compact,Schedule Value,ACTSCHD;
Actuator,Schedule:Compact,Schedule Value,ACTIVITYSCH;
Actuator,Schedule:Compact,Schedule Value,AIRVELOCITYSCH;
Actuator,Schedule:Compact,Schedule Value,BASINHEATERSCHED;
Actuator,Schedule:Compact,Schedule Value,CLG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,CLOTHINGSCH;
Actuator,Schedule:Compact,Schedule Value,COOLINGCOILAVAILSCHED;
Actuator,Schedule:Compact,Schedule Value,EQUIP-1;
Actuator,Schedule:Compact,Schedule Value,FANAVAILSCHED;
Actuator,Schedule:Compact,Schedule Value,HTG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,INFIL-SCH;
Actuator,Schedule:Compact,Schedule Value,LIGHTS-1;
Actuator,Schedule:Compact,Schedule Value,MIN OA SCHED;
Actuator,Schedule:Compact,Schedule Value,MIN OAREQUIREMENTS SCHED;
Actuator,Schedule:Compact,Schedule Value,OCCUPY-1;
Actuator,Schedule:Compact,Schedule Value,PLENUMCLG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,PLENUMHTG-SETP-SCH;
Actuator,Schedule:Compact,Schedule Value,REHEATCOILAVAILSCHED;
Actuator,Schedule:Compact,Schedule Value,SEASONAL RESET SUPPLY AIR TEMP SCH;
Actuator,Schedule:Compact,Schedule Value,SHADETRANSSCH;
Actuator,Schedule:Compact,Schedule Value,WORKEFFSCH;
Actuator,Schedule:Compact,Schedule Value,ZONE CONTROL TYPE SCHED;
Actuator,Weather Data,Outdoor Dry Bulb,Environment;
Actuator,Weather Data,Outdoor Dew Point,Environment;
Actuator,Weather Data,Outdoor Relative Humidity,Environment;
Actuator,Weather Data,Diffuse Solar,Environment;
Actuator,Weather Data,Direct Solar,Environment;
Actuator,Weather Data,Wind Speed,Environment;
Actuator,Weather Data,Wind Direction,Environment;
Actuator,Material,Surface Property Solar Absorptance,BR01;
Actuator,Material,Surface Property Thermal Absorptance,BR01;
Actuator,Material,Surface Property Visible Absorptance,BR01;
Actuator,Material,Surface Property Solar Absorptance,CC03;
Actuator,Material,Surface Property Thermal Absorptance,CC03;
Actuator,Material,Surface Property Visible Absorptance,CC03;
Actuator,Material,Surface Property Solar Absorptance,GP01;
Actuator,Material,Surface Property Thermal Absorptance,GP01;
Actuator,Material,Surface Property Visible Absorptance,GP01;
Actuator,Material,Surface Property Solar Absorptance,GP02;
Actuator,Material,Surface Property Thermal Absorptance,GP02;
Actuator,Material,Surface Property Visible Absorptance,GP02;
Actuator,Material,Surface Property Solar Absorptance,IN02;
Actuator,Material,Surface Property Thermal Absorptance,IN02;
Actuator,Material,Surface Property Visible Absorptance,IN02;
Actuator,Material,Surface Property Solar Absorptance,IN46;
Actuator,Material,Surface Property Thermal Absorptance,IN46;
Actuator,Material,Surface Property Visible Absorptance,IN46;
Actuator,Material,Surface Property Solar Absorptance,PW03;
Actuator,Material,Surface Property Thermal Absorptance,PW03;
Actuator,Material,Surface Property Visible Absorptance,PW03;
Actuator,Material,Surface Property Solar Absorptance,RG01;
Actuator,Material,Surface Property Thermal Absorptance,RG01;
Actuator,Material,Surface Property Visible Absorptance,RG01;
Actuator,Material,Surface Property Solar Absorptance,WD01;
Actuator,Material,Surface Property Thermal Absorptance,WD01;
Actuator,Material,Surface Property Visible Absorptance,WD01;
Actuator,Material,Surface Property Solar Absorptance,WD10;
Actuator,Material,Surface Property Thermal Absorptance,WD10;
Actuator,Material,Surface Property Visible Absorptance,WD10;
Actuator,Material,Surface Property Solar Absorptance,CP01;
Actuator,Material,Surface Property Thermal Absorptance,CP01;
Actuator,Material,Surface Property Visible Absorptance,CP01;
Actuator,Material,Surface Property Solar Absorptance,MAT-CLNG-1;
Actuator,Material,Surface Property Thermal Absorptance,MAT-CLNG-1;
Actuator,Material,Surface Property Visible Absorptance,MAT-CLNG-1;
Actuator,Material,Surface Property Solar Absorptance,MAT-FLOOR-1;
Actuator,Material,Surface Property Thermal Absorptance,MAT-FLOOR-1;
Actuator,Material,Surface Property Visible Absorptance,MAT-FLOOR-1;
Actuator,Material,Surface Property Solar Absorptance,MAT-SB-U;
Actuator,Material,Surface Property Thermal Absorptance,MAT-SB-U;
Actuator,Material,Surface Property Visible Absorptance,MAT-SB-U;
Actuator,People,Number of People,SPACE1-1 PEOPLE 1;
Actuator,People,Number of People,SPACE2-1 PEOPLE 1;
Actuator,People,Number of People,SPACE3-1 PEOPLE 1;
Actuator,People,Number of People,SPACE4-1 PEOPLE 1;
Actuator,People,Number of People,SPACE5-1 PEOPLE 1;
Actuator,Lights,Electricity Rate,SPACE1-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE2-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE3-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE4-1 LIGHTS 1;
Actuator,Lights,Electricity Rate,SPACE5-1 LIGHTS 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE1-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE2-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE3-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE4-1 ELECEQ 1;
Actuator,ElectricEquipment,Electricity Rate,SPACE5-1 ELECEQ 1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,MAIN SOUTH OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,MAIN SOUTH OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,Mir-MAIN SOUTH OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,Mir-MAIN SOUTH OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SOUTH DOOR OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SOUTH DOOR OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,Mir-SOUTH DOOR OVERHANG;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,Mir-SOUTH DOOR OVERHANG;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PB;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PB;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PF;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PF;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PL;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PL;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WALL-1PR;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WALL-1PR;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C1-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C1-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C2-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C2-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C3-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C3-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C4-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C4-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C5-1P;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C5-1P;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,TOP-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,TOP-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,FRONT-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,FRONT-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB12;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB12;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB14;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB14;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB15;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB15;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F1-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F1-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C1-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C1-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,DF-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,DF-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WF-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WF-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,RIGHT-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,RIGHT-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB21;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB21;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB23;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB23;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB25;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB25;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F2-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F2-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C2-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C2-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WR-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WR-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,BACK-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,BACK-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB32;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB32;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB34;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB34;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB35;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB35;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F3-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F3-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C3-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C3-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,DB-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,DB-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WB-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WB-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,LEFT-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,LEFT-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB41;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB41;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB43;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB43;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB45;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB45;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F4-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F4-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C4-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C4-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,WL-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,WL-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB51;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB51;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB52;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB52;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB53;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB53;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,SB54;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,SB54;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,F5-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,F5-1;
Actuator,Surface,Interior Surface Convection Heat Transfer Coefficient,C5-1;
Actuator,Surface,Exterior Surface Convection Heat Transfer Coefficient,C5-1;
Actuator,Surface,Construction State,WALL-1PB;
Actuator,Surface,Construction State,WALL-1PF;
Actuator,Surface,Construction State,WALL-1PL;
Actuator,Surface,Construction State,WALL-1PR;
Actuator,Surface,Construction State,C1-1P;
Actuator,Surface,Construction State,C2-1P;
Actuator,Surface,Construction State,C3-1P;
Actuator,Surface,Construction State,C4-1P;
Actuator,Surface,Construction State,C5-1P;
Actuator,Surface,Construction State,TOP-1;
Actuator,Surface,Construction State,FRONT-1;
Actuator,Surface,Construction State,SB12;
Actuator,Surface,Construction State,SB14;
Actuator,Surface,Construction State,SB15;
Actuator,Surface,Construction State,F1-1;
Actuator,Surface,Construction State,C1-1;
Actuator,Surface,Construction State,DF-1;
Actuator,Surface,Construction State,WF-1;
Actuator,Surface,Construction State,RIGHT-1;
Actuator,Surface,Construction State,SB21;
Actuator,Surface,Construction State,SB23;
Actuator,Surface,Construction State,SB25;
Actuator,Surface,Construction State,F2-1;
Actuator,Surface,Construction State,C2-1;
Actuator,Surface,Construction State,WR-1;
Actuator,Surface,Construction State,BACK-1;
Actuator,Surface,Construction State,SB32;
Actuator,Surface,Construction State,SB34;
Actuator,Surface,Construction State,SB35;
Actuator,Surface,Construction State,F3-1;
Actuator,Surface,Construction State,C3-1;
Actuator,Surface,Construction State,DB-1;
Actuator,Surface,Construction State,WB-1;
Actuator,Surface,Construction State,LEFT-1;
Actuator,Surface,Construction State,SB41;
Actuator,Surface,Construction State,SB43;
Actuator,Surface,Construction State,SB45;
Actuator,Surface,Construction State,F4-1;
Actuator,Surface,Construction State,C4-1;
Actuator,Surface,Construction State,WL-1;
Actuator,Surface,Construction State,SB51;
Actuator,Surface,Construction State,SB52;
Actuator,Surface,Construction State,SB53;
Actuator,Surface,Construction State,SB54;
Actuator,Surface,Construction State,F5-1;
Actuator,Surface,Construction State,C5-1;
Actuator,Surface,View Factor To Ground,WALL-1PB;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PB;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PB;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PB;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PB;
Actuator,Surface,View Factor To Ground,WALL-1PF;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PF;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PF;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PF;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PF;
Actuator,Surface,View Factor To Ground,WALL-1PL;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PL;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PL;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PL;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PL;
Actuator,Surface,View Factor To Ground,WALL-1PR;
Actuator,Surface,Outdoor Air Drybulb Temperature,WALL-1PR;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WALL-1PR;
Actuator,Surface,Outdoor Air Wind Speed,WALL-1PR;
Actuator,Surface,Outdoor Air Wind Direction,WALL-1PR;
Actuator,Surface,View Factor To Ground,TOP-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,TOP-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,TOP-1;
Actuator,Surface,Outdoor Air Wind Speed,TOP-1;
Actuator,Surface,Outdoor Air Wind Direction,TOP-1;
Actuator,Surface,View Factor To Ground,FRONT-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,FRONT-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,FRONT-1;
Actuator,Surface,Outdoor Air Wind Speed,FRONT-1;
Actuator,Surface,Outdoor Air Wind Direction,FRONT-1;
Actuator,Surface,View Factor To Ground,DF-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,DF-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,DF-1;
Actuator,Surface,Outdoor Air Wind Speed,DF-1;
Actuator,Surface,Outdoor Air Wind Direction,DF-1;
Actuator,Surface,View Factor To Ground,WF-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WF-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WF-1;
Actuator,Surface,Outdoor Air Wind Speed,WF-1;
Actuator,Surface,Outdoor Air Wind Direction,WF-1;
Actuator,Surface,View Factor To Ground,RIGHT-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,RIGHT-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,RIGHT-1;
Actuator,Surface,Outdoor Air Wind Speed,RIGHT-1;
Actuator,Surface,Outdoor Air Wind Direction,RIGHT-1;
Actuator,Surface,View Factor To Ground,WR-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WR-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WR-1;
Actuator,Surface,Outdoor Air Wind Speed,WR-1;
Actuator,Surface,Outdoor Air Wind Direction,WR-1;
Actuator,Surface,View Factor To Ground,BACK-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,BACK-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,BACK-1;
Actuator,Surface,Outdoor Air Wind Speed,BACK-1;
Actuator,Surface,Outdoor Air Wind Direction,BACK-1;
Actuator,Surface,View Factor To Ground,DB-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,DB-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,DB-1;
Actuator,Surface,Outdoor Air Wind Speed,DB-1;
Actuator,Surface,Outdoor Air Wind Direction,DB-1;
Actuator,Surface,View Factor To Ground,WB-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WB-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WB-1;
Actuator,Surface,Outdoor Air Wind Speed,WB-1;
Actuator,Surface,Outdoor Air Wind Direction,WB-1;
Actuator,Surface,View Factor To Ground,LEFT-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,LEFT-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,LEFT-1;
Actuator,Surface,Outdoor Air Wind Speed,LEFT-1;
Actuator,Surface,Outdoor Air Wind Direction,LEFT-1;
Actuator,Surface,View Factor To Ground,WL-1;
Actuator,Surface,Outdoor Air Drybulb Temperature,WL-1;
Actuator,Surface,Outdoor Air Wetbulb Temperature,WL-1;
Actuator,Surface,Outdoor Air Wind Speed,WL-1;
Actuator,Surface,Outdoor Air Wind Direction,WL-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,PLENUM-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,PLENUM-1;
Actuator,Zone,Outdoor Air Wind Speed,PLENUM-1;
Actuator,Zone,Outdoor Air Wind Direction,PLENUM-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE1-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE1-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE1-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE1-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE2-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE2-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE2-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE2-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE3-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE3-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE3-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE3-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE4-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE4-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE4-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE4-1;
Actuator,Zone,Outdoor Air Drybulb Temperature,SPACE5-1;
Actuator,Zone,Outdoor Air Wetbulb Temperature,SPACE5-1;
Actuator,Zone,Outdoor Air Wind Speed,SPACE5-1;
Actuator,Zone,Outdoor Air Wind Direction,SPACE5-1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE1-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE2-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE3-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE4-1 INFIL 1;
Actuator,Zone Infiltration,Air Exchange Flow Rate,SPACE5-1 INFIL 1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE1-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE2-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE3-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE4-1;
Actuator,Sizing:Zone,Zone Design Heating Air Mass Flow Rate,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Cooling Air Mass Flow Rate,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Heating Load,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Cooling Load,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Heating Vol Flow,SPACE5-1;
Actuator,Sizing:Zone,Zone Design Cooling Vol Flow,SPACE5-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE1-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE1-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE2-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE2-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE3-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE3-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE4-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE4-1;
Actuator,Zone Temperature Control,Heating Setpoint,SPACE5-1;
Actuator,Zone Temperature Control,Cooling Setpoint,SPACE5-1;
Actuator,Fan,Fan Air Mass Flow Rate,SUPPLY FAN 1;
Actuator,Fan,Fan Pressure Rise,SUPPLY FAN 1;
Actuator,Fan,Fan Total Efficiency,SUPPLY FAN 1;
Actuator,Fan,Fan Autosized Air Flow Rate,SUPPLY FAN 1;
Actuator,Sizing:System,Main Supply Volume Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Coincident Peak Cooling Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Coincident Peak Heating Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Noncoincident Peak Cooling Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Supply Noncoincident Peak Heating Mass Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Heating Volume Flow Rate,VAV SYS 1;
Actuator,Sizing:System,Main Cooling Volume Flow Rate,VAV SYS 1;
Actuator,Outdoor Air Controller,Air Mass Flow Rate,OA CONTROLLER 1;
Actuator,Curve,Curve Result,VARSPEEDCOOLCAPFT;
Actuator,Curve,Curve Result,VARSPEEDCOOLCAPLSFT;
Actuator,Curve,Curve Result,VARSPEEDCOOLEIRFT;
Actuator,Curve,Curve Result,VARSPEEDCOOLEIRLSFT;
Actuator,Curve,Curve Result,PACKAGEDRATEDCOOLCAPFFLOW;
Actuator,Curve,Curve Result,PACKAGEDRATEDCOOLEIRFFLOW;
Actuator,Curve,Curve Result,VARSPEEDCYCLINGPLFFPLR;
Actuator,System Node Setpoint,Temperature Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,OUTSIDE AIR INLET NODE 1;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,VAV SYS 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MIXED AIR NODE 1;
Actuator,System Node Setpoint,Temperature Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MAIN COOLING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MAIN HEATING COIL 1 OUTLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,VAV SYS 1 INLET NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,ZONE EQ IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,PLENUM-1 OUT NODE;
Actuator,System Node Setpoint,Temperature Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 ATU IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE1-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE2-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE3-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE4-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,SPACE5-1 ZONE COIL AIR IN NODE;
Actuator,System Node Setpoint,Temperature Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,PLENUM-1 NODE;
Actuator,System Node Setpoint,Temperature Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Temperature Minimum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Temperature Maximum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Maximum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Humidity Ratio Minimum Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Maximum Available Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,System Node Setpoint,Mass Flow Rate Minimum Available Setpoint,RELIEF AIR OUTLET NODE 1;
Actuator,Outdoor Air System Node,Drybulb Temperature,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Wetbulb Temperature,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Wind Speed,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Wind Direction,OUTSIDE AIR INLET NODE 1;
Actuator,Outdoor Air System Node,Drybulb Temperature,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,Outdoor Air System Node,Wetbulb Temperature,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,Outdoor Air System Node,Wind Speed,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,Outdoor Air System Node,Wind Direction,MAIN COOLING COIL 1 CONDENSER NODE;
Actuator,AirLoopHVAC,Availability Status,VAV SYS 1;
**INTERNAL_VARIABLES**
InternalVariable,People Count Design Level,SPACE1-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE2-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE3-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE4-1 PEOPLE 1
InternalVariable,People Count Design Level,SPACE5-1 PEOPLE 1
InternalVariable,Lighting Power Design Level,SPACE1-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE2-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE3-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE4-1 LIGHTS 1
InternalVariable,Lighting Power Design Level,SPACE5-1 LIGHTS 1
InternalVariable,Plug and Process Power Design Level,SPACE1-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE2-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE3-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE4-1 ELECEQ 1
InternalVariable,Plug and Process Power Design Level,SPACE5-1 ELECEQ 1
InternalVariable,Zone Floor Area,PLENUM-1
InternalVariable,Zone Air Volume,PLENUM-1
InternalVariable,Zone Multiplier,PLENUM-1
InternalVariable,Zone List Multiplier,PLENUM-1
InternalVariable,Zone Floor Area,SPACE1-1
InternalVariable,Zone Air Volume,SPACE1-1
InternalVariable,Zone Multiplier,SPACE1-1
InternalVariable,Zone List Multiplier,SPACE1-1
InternalVariable,Zone Floor Area,SPACE2-1
InternalVariable,Zone Air Volume,SPACE2-1
InternalVariable,Zone Multiplier,SPACE2-1
InternalVariable,Zone List Multiplier,SPACE2-1
InternalVariable,Zone Floor Area,SPACE3-1
InternalVariable,Zone Air Volume,SPACE3-1
InternalVariable,Zone Multiplier,SPACE3-1
InternalVariable,Zone List Multiplier,SPACE3-1
InternalVariable,Zone Floor Area,SPACE4-1
InternalVariable,Zone Air Volume,SPACE4-1
InternalVariable,Zone Multiplier,SPACE4-1
InternalVariable,Zone List Multiplier,SPACE4-1
InternalVariable,Zone Floor Area,SPACE5-1
InternalVariable,Zone Air Volume,SPACE5-1
InternalVariable,Zone Multiplier,SPACE5-1
InternalVariable,Zone List Multiplier,SPACE5-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE1-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE1-1
InternalVariable,Final Zone Design Heating Load,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE1-1
InternalVariable,Final Zone Design Cooling Load,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE1-1
InternalVariable,Final Zone Design Heating Air Density,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE1-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE1-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE1-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE1-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE1-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE1-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE1-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE2-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE2-1
InternalVariable,Final Zone Design Heating Load,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE2-1
InternalVariable,Final Zone Design Cooling Load,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE2-1
InternalVariable,Final Zone Design Heating Air Density,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE2-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE2-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE2-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE2-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE2-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE2-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE2-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE3-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE3-1
InternalVariable,Final Zone Design Heating Load,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE3-1
InternalVariable,Final Zone Design Cooling Load,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE3-1
InternalVariable,Final Zone Design Heating Air Density,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE3-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE3-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE3-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE3-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE3-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE3-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE3-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE4-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE4-1
InternalVariable,Final Zone Design Heating Load,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE4-1
InternalVariable,Final Zone Design Cooling Load,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE4-1
InternalVariable,Final Zone Design Heating Air Density,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE4-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE4-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE4-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE4-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE4-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE4-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE4-1
InternalVariable,Final Zone Design Heating Air Mass Flow Rate,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Air Mass Flow Rate,SPACE5-1
InternalVariable,Final Zone Design Cooling Air Mass Flow Rate,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Air Mass Flow Rate,SPACE5-1
InternalVariable,Final Zone Design Heating Load,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Load,SPACE5-1
InternalVariable,Final Zone Design Cooling Load,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Load,SPACE5-1
InternalVariable,Final Zone Design Heating Air Density,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Air Density,SPACE5-1
InternalVariable,Final Zone Design Cooling Air Density,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Air Density,SPACE5-1
InternalVariable,Final Zone Design Heating Volume Flow,SPACE5-1
InternalVariable,Intermediate Zone Design Heating Volume Flow,SPACE5-1
InternalVariable,Final Zone Design Cooling Volume Flow,SPACE5-1
InternalVariable,Intermediate Zone Design Cooling Volume Flow,SPACE5-1
InternalVariable,Zone Outdoor Air Design Volume Flow Rate,SPACE5-1
InternalVariable,Fan Maximum Mass Flow Rate,SUPPLY FAN 1
InternalVariable,Fan Nominal Pressure Rise,SUPPLY FAN 1
InternalVariable,Fan Nominal Total Efficiency,SUPPLY FAN 1
InternalVariable,Intermediate Air System Main Supply Volume Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Coincident Peak Cooling Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Coincident Peak Heating Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Noncoincident Peak Cooling Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Noncoincident Peak Heating Mass Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Heating Volume Flow Rate,VAV SYS 1
InternalVariable,Intermediate Air System Cooling Volume Flow Rate,VAV SYS 1
InternalVariable,Air System Cooling Design Sensible Capacity,VAV SYS 1
InternalVariable,Air System Cooling Design Total Capacity,VAV SYS 1
InternalVariable,Air System Heating Design Sensible Capacity,VAV SYS 1
InternalVariable,Air System Preheating Design Sensible Capacity,VAV SYS 1
InternalVariable,Air System Outdoor Air Design Volume Flow Rate,VAV SYS 1
InternalVariable,Air System Cooling Design Mixed Air Temperature,VAV SYS 1
InternalVariable,Air System Cooling Design Mixed Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Cooling Design Return Air Temperature,VAV SYS 1
InternalVariable,Air System Cooling Design Return Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Cooling Design Outdoor Air Temperature,VAV SYS 1
InternalVariable,Air System Cooling Design Outdoor Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Heating Design Mixed Air Temperature,VAV SYS 1
InternalVariable,Air System Heating Design Mixed Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Heating Design Return Air Temperature,VAV SYS 1
InternalVariable,Air System Heating Design Return Air Humidity Ratio,VAV SYS 1
InternalVariable,Air System Heating Design Outdoor Air Temperature,VAV SYS 1
InternalVariable,Air System Heating Design Outdoor Air Humidity Ratio,VAV SYS 1
InternalVariable,Outdoor Air Controller Maximum Mass Flow Rate,OA CONTROLLER 1
InternalVariable,Outdoor Air Controller Minimum Mass Flow Rate,OA CONTROLLER 1
**PLUGIN_GLOBAL_VARIABLES**
**TRENDS**
**METERS**
OutputMeter,Electricity:Facility
OutputMeter,Electricity:Building
OutputMeter,Electricity:Zone:SPACE1-1
OutputMeter,Electricity:SpaceType:GENERAL
OutputMeter,InteriorLights:Electricity
OutputMeter,InteriorLights:Electricity:Zone:SPACE1-1
OutputMeter,InteriorLights:Electricity:SpaceType:GENERAL
OutputMeter,GeneralLights:InteriorLights:Electricity
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE1-1
OutputMeter,GeneralLights:InteriorLights:Electricity:SpaceType:GENERAL
OutputMeter,Electricity:Zone:SPACE2-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE2-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE2-1
OutputMeter,Electricity:Zone:SPACE3-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE3-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE3-1
OutputMeter,Electricity:Zone:SPACE4-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE4-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE4-1
OutputMeter,Electricity:Zone:SPACE5-1
OutputMeter,InteriorLights:Electricity:Zone:SPACE5-1
OutputMeter,GeneralLights:InteriorLights:Electricity:Zone:SPACE5-1
OutputMeter,InteriorEquipment:Electricity
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE1-1
OutputMeter,InteriorEquipment:Electricity:SpaceType:GENERAL
OutputMeter,General:InteriorEquipment:Electricity
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE1-1
OutputMeter,General:InteriorEquipment:Electricity:SpaceType:GENERAL
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE2-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE2-1
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE3-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE3-1
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE4-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE4-1
OutputMeter,InteriorEquipment:Electricity:Zone:SPACE5-1
OutputMeter,General:InteriorEquipment:Electricity:Zone:SPACE5-1
OutputMeter,EnergyTransfer:Facility
OutputMeter,EnergyTransfer:Building
OutputMeter,EnergyTransfer:Zone:PLENUM-1
OutputMeter,Heating:EnergyTransfer
OutputMeter,Heating:EnergyTransfer:Zone:PLENUM-1
OutputMeter,General:Heating:EnergyTransfer
OutputMeter,General:Heating:EnergyTransfer:Zone:PLENUM-1
OutputMeter,Cooling:EnergyTransfer
OutputMeter,Cooling:EnergyTransfer:Zone:PLENUM-1
OutputMeter,General:Cooling:EnergyTransfer
OutputMeter,General:Cooling:EnergyTransfer:Zone:PLENUM-1
OutputMeter,EnergyTransfer:Zone:SPACE1-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE1-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE1-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE1-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE1-1
OutputMeter,EnergyTransfer:Zone:SPACE2-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE2-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE2-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE2-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE2-1
OutputMeter,EnergyTransfer:Zone:SPACE3-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE3-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE3-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE3-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE3-1
OutputMeter,EnergyTransfer:Zone:SPACE4-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE4-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE4-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE4-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE4-1
OutputMeter,EnergyTransfer:Zone:SPACE5-1
OutputMeter,Heating:EnergyTransfer:Zone:SPACE5-1
OutputMeter,General:Heating:EnergyTransfer:Zone:SPACE5-1
OutputMeter,Cooling:EnergyTransfer:Zone:SPACE5-1
OutputMeter,General:Cooling:EnergyTransfer:Zone:SPACE5-1
OutputMeter,ElectricityPurchased:Facility
OutputMeter,ElectricityPurchased:Plant
OutputMeter,Cogeneration:ElectricityPurchased
OutputMeter,General:Cogeneration:ElectricityPurchased
OutputMeter,ElectricitySurplusSold:Facility
OutputMeter,ElectricitySurplusSold:Plant
OutputMeter,Cogeneration:ElectricitySurplusSold
OutputMeter,General:Cogeneration:ElectricitySurplusSold
OutputMeter,ElectricityNet:Facility
OutputMeter,ElectricityNet:Plant
OutputMeter,Cogeneration:ElectricityNet
OutputMeter,General:Cogeneration:ElectricityNet
OutputMeter,EnergyTransfer:HVAC
OutputMeter,HeatingCoils:EnergyTransfer
OutputMeter,Electricity:HVAC
OutputMeter,Heating:Electricity
OutputMeter,General:Heating:Electricity
OutputMeter,Fans:Electricity
OutputMeter,General:Fans:Electricity
OutputMeter,CoolingCoils:EnergyTransfer
OutputMeter,Cooling:Electricity
OutputMeter,General:Cooling:Electricity
OutputMeter,Water:Facility
OutputMeter,Water:HVAC
OutputMeter,Cooling:Water
OutputMeter,General:Cooling:Water
OutputMeter,MainsWater:Facility
OutputMeter,MainsWater:HVAC
OutputMeter,Cooling:MainsWater
OutputMeter,General:Cooling:MainsWater
OutputMeter,Carbon Equivalent:Facility
OutputMeter,CarbonEquivalentEmissions:Carbon Equivalent
**VARIABLES**
OutputVariable,Site Outdoor Air Drybulb Temperature,ENVIRONMENT
OutputVariable,Lights Electricity Energy,SPACE1-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE2-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE3-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE4-1 LIGHTS 1
OutputVariable,Lights Electricity Energy,SPACE5-1 LIGHTS 1
OutputVariable,Electric Equipment Electricity Energy,SPACE1-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE2-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE3-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE4-1 ELECEQ 1
OutputVariable,Electric Equipment Electricity Energy,SPACE5-1 ELECEQ 1
OutputVariable,Zone Air System Sensible Heating Energy,PLENUM-1
OutputVariable,Zone Air System Sensible Cooling Energy,PLENUM-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE1-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE1-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE2-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE2-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE3-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE3-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE4-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE4-1
OutputVariable,Zone Air Temperature,SPACE5-1
OutputVariable,Zone Air Relative Humidity,SPACE5-1
OutputVariable,Zone Air System Sensible Heating Energy,SPACE5-1
OutputVariable,Zone Air System Sensible Cooling Energy,SPACE5-1
OutputVariable,Zone Thermostat Heating Setpoint Temperature,SPACE5-1
OutputVariable,Zone Thermostat Cooling Setpoint Temperature,SPACE5-1
OutputVariable,Facility Total Purchased Electricity Energy,WHOLE BUILDING
OutputVariable,Facility Total Surplus Electricity Energy,WHOLE BUILDING
OutputVariable,Facility Net Purchased Electricity Energy,WHOLE BUILDING
OutputVariable,Facility Total HVAC Electricity Demand Rate,WHOLE BUILDING
OutputVariable,Heating Coil Heating Energy,MAIN HEATING COIL 1
OutputVariable,Heating Coil Electricity Energy,MAIN HEATING COIL 1
OutputVariable,Heating Coil Heating Energy,SPACE1-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE1-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE2-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE2-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE3-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE3-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE4-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE4-1 ZONE COIL
OutputVariable,Heating Coil Heating Energy,SPACE5-1 ZONE COIL
OutputVariable,Heating Coil Electricity Energy,SPACE5-1 ZONE COIL
OutputVariable,Fan Electricity Energy,SUPPLY FAN 1
OutputVariable,Cooling Coil Total Cooling Energy,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Electricity Energy,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Evaporative Condenser Water Volume,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Evaporative Condenser Mains Supply Water Volume,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Evaporative Condenser Pump Electricity Energy,MAIN COOLING COIL 1
OutputVariable,Cooling Coil Basin Heater Electricity Energy,MAIN COOLING COIL 1
OutputVariable,Environmental Impact Total N2O Emissions Carbon Equivalent Mass,SITE
OutputVariable,Environmental Impact Total CH4 Emissions Carbon Equivalent Mass,SITE
OutputVariable,Environmental Impact Total CO2 Emissions Carbon Equivalent Mass,SITE

    #----------------------------------------------------------------------------------#
                                CONTROLLED ELEMENTS:
    #----------------------------------------------------------------------------------#
    - Actuators: {'Heating_Setpoint_RL': 10, 'Cooling_Setpoint_RL': 5}
    - Variables: {'outdoor_temperature': 1, 'htg_setpoint': 26, 'clg_setpoint': 27, 'air_temperature': 22, 'air_humidity': 23, 'HVAC_electricity_demand_rate': 31}
    - Meters: {}
    - Internal Variables: None


/usr/local/lib/python3.12/dist-packages/gymnasium/core.py:311: UserWarning: WARN: env.info to get variables from other wrappers is deprecated and will be removed in v1.0, to get this variable you can do `env.unwrapped.info` for environment variables or `env.get_wrapper_attr('info')` that will search the reminding wrappers.
  logger.warn(