Class: CoilHeatingElectricPercentChange

Inherits:
OpenStudio::Measure::ModelMeasure
  • Object
show all
Defined in:
lib/measures/CoilHeatingElectricPercentChange/measure.rb

Overview

start the measure

Instance Method Summary collapse

Instance Method Details

#arguments(model) ⇒ Object

define the arguments that the user will input



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/measures/CoilHeatingElectricPercentChange/measure.rb', line 35

def arguments(model)
  args = OpenStudio::Measure::OSArgumentVector.new

  # populate choice argument for constructions that are applied to surfaces in the model
  loop_handles = OpenStudio::StringVector.new
  loop_display_names = OpenStudio::StringVector.new

  # putting air loops and names into hash
  loop_args = model.getAirLoopHVACs
  loop_args_hash = {}
  loop_args.each do |loop_arg|
    loop_args_hash[loop_arg.name.to_s] = loop_arg
  end

  # looping through sorted hash of air loops
  loop_args_hash.sort.map do |_key, value|
    show_loop = false
    components = value.supplyComponents
    components.each do |component|
      next if component.to_CoilHeatingElectric.empty?

      show_loop = true
      loop_handles << component.handle.to_s
      loop_display_names << component.name.to_s
    end

    # if loop as object of correct type then add to hash.
    # if show_loop == true
    # loop_handles << value.handle.to_s
    # loop_display_names << key
    # end
  end

  # add building to string vector with space type
  building = model.getBuilding
  loop_handles << building.handle.to_s
  loop_display_names << '*All Electric Heating Coils*'
  loop_handles << '0'
  loop_display_names << '*None*'

  # make a choice argument for space type
  coil_arg = OpenStudio::Measure::OSArgument.makeChoiceArgument('coil', loop_handles, loop_display_names)
  coil_arg.setDisplayName('Apply the Measure to a SINGLE Electric Heating Coil, ALL the Electric Heating Coils or NONE.')
  coil_arg.setDefaultValue('*All Electric Heating Coils*') # if no space type is chosen this will run on the entire building
  args << coil_arg

  # coil_efficiency_perc_change
  coil_efficiency_perc_change = OpenStudio::Measure::OSArgument.makeDoubleArgument('coil_efficiency_perc_change', true)
  coil_efficiency_perc_change.setDisplayName('Percent Change for coil Efficiency.')
  coil_efficiency_perc_change.setDescription('Percent Change for coil Efficiency.')
  coil_efficiency_perc_change.setDefaultValue(0.0)
  args << coil_efficiency_perc_change

  # coil_capacity_perc_change
  coil_capacity_perc_change = OpenStudio::Measure::OSArgument.makeDoubleArgument('coil_capacity_perc_change', true)
  coil_capacity_perc_change.setDisplayName('Percent Change for coil Capacity.')
  coil_capacity_perc_change.setDescription('Percent Change for coil Capacity.')
  coil_capacity_perc_change.setDefaultValue(0.0)
  args << coil_capacity_perc_change

  args
end

#change_name(object, coil_efficiency_perc_change, coil_capacity_perc_change) ⇒ Object



23
24
25
26
27
28
29
30
31
32
# File 'lib/measures/CoilHeatingElectricPercentChange/measure.rb', line 23

def change_name(object, coil_efficiency_perc_change, coil_capacity_perc_change)
  nameString = object.name.get.to_s
  if coil_efficiency_perc_change != 1.0
    nameString += " #{coil_efficiency_perc_change.round(2)}percng coilEff"
  end
  if coil_capacity_perc_change != 1.0
    nameString += " #{coil_capacity_perc_change.round(2)}percng coilCap"
  end
  object.setName(nameString)
end

#descriptionObject

human readable description



14
15
16
# File 'lib/measures/CoilHeatingElectricPercentChange/measure.rb', line 14

def description
  'This is a general purpose measure to calibrate Electric Heating Coils with a Percent Change.'
end

#modeler_descriptionObject

human readable description of modeling approach



19
20
21
# File 'lib/measures/CoilHeatingElectricPercentChange/measure.rb', line 19

def modeler_description
  'It will be used for calibration of rated capacity and efficiency and parasitic loads. User can choose between a SINGLE coil or ALL the Coils.'
end

#nameObject

human readable name



9
10
11
# File 'lib/measures/CoilHeatingElectricPercentChange/measure.rb', line 9

def name
  'Heating Coils Electric Percent Change'
end

#run(model, runner, user_arguments) ⇒ Object

define what happens when the measure is run



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/measures/CoilHeatingElectricPercentChange/measure.rb', line 99

def run(model, runner, user_arguments)
  super(model, runner, user_arguments)

  # use the built-in error checking
  unless runner.validateUserArguments(arguments(model), user_arguments)
    return false
  end

  # assign the user inputs to variables
  coil_object = runner.getOptionalWorkspaceObjectChoiceValue('coil', user_arguments, model)
  coil_handle = runner.getStringArgumentValue('coil', user_arguments)

  coil_capacity_perc_change = runner.getDoubleArgumentValue('coil_capacity_perc_change', user_arguments)
  coil_efficiency_perc_change = runner.getDoubleArgumentValue('coil_efficiency_perc_change', user_arguments)

  # find objects to change
  coils = []
  building = model.getBuilding
  building_handle = building.handle.to_s
  runner.registerInfo("coil_handle: #{coil_handle}")
  # setup coils
  if coil_handle == building_handle
    # Use ALL coils
    runner.registerInfo('Applying change to ALL Coils')
    loops = model.getAirLoopHVACs
    # loop through air loops
    loops.each do |loop|
      supply_components = loop.supplyComponents
      # find coils on loops
      supply_components.each do |supply_component|
        unless supply_component.to_CoilHeatingElectric.empty?
          coils << supply_component.to_CoilHeatingElectric.get
        end
      end
    end
  elsif coil_handle == 0.to_s
    # coils set to NONE so do nothing
    runner.registerInfo('Applying change to NONE Coils')
  elsif !coil_handle.empty?
    # Single coil handle found, check if object is good
    if !coil_object.get.to_CoilHeatingElectric.empty?
      runner.registerInfo("Applying change to #{coil_object.get.name} coil")
      coils << coil_object.get.to_CoilHeatingElectric.get
    else
      runner.registerError("coil with handle #{coil_handle} could not be found.")
    end
  else
    runner.registerError('coil handle is empty.')
    return false
  end

  # report initial condition of model
  runner.registerInitialCondition("Coils to change: #{coils.size}")
  runner.registerInfo("Coils to change: #{coils.size}")
  altered_coils = []
  altered_capacity = []
  altered_coilefficiency = []
  # loop through coils
  coils.each do |coil|
    altered_coil = false
    # coil_capacity_perc_change
    if coil_capacity_perc_change != 0.0 && coil.nominalCapacity.is_initialized
      runner.registerInfo("Applying nominalCapacity #{coil_capacity_perc_change} Percent Change to #{coil.name.get}.")
      coil.setNominalCapacity(coil.nominalCapacity.get + coil.nominalCapacity.get * coil_capacity_perc_change * 0.01)
      altered_capacity << coil.handle.to_s
      altered_coil = true
    end

    # modify coil_efficiency_perc_change
    if coil_efficiency_perc_change != 0.0
      runner.registerInfo("Applying efficiency #{coil_efficiency_perc_change} Percent Change to #{coil.name.get}.")
      if (coil.efficiency + coil.efficiency * coil_efficiency_perc_change * 0.01) <= 1
        coil.setEfficiency(coil.efficiency + coil.efficiency * coil_efficiency_perc_change * 0.01)
      else
        coil.setEfficiency(1.0)
        runner.registerWarning("#{coil_efficiency_perc_change} Percent Change results in Efficiency greater than 1.")
      end
      altered_coilefficiency << coil.handle.to_s
      altered_coil = true
    end

    next unless altered_coil

    altered_coils << coil.handle.to_s
    change_name(coil, coil_efficiency_perc_change, coil_capacity_perc_change)
    runner.registerInfo("coil name changed to: #{coil.name.get}")
  end

  # na if nothing in model to look at
  if altered_coils.empty?
    runner.registerAsNotApplicable('No Coils were altered in the model')
    return true
  end

  # report final condition of model
  runner.registerFinalCondition("#{altered_coils.size} Coils objects were altered.")

  true
end