Class: ZEDGK12Kitchen

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

Overview

start the measure

Instance Method Summary collapse

Instance Method Details

#arguments(model) ⇒ Object

define the arguments that the user will input



34
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
# File 'lib/measures/zedgk_12_kitchen/measure.rb', line 34

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

  # make an argument for material and installation cost
  costTotalKitchenSystem = OpenStudio::Measure::OSArgument.makeDoubleArgument('costTotalKitchenSystem', true)
  costTotalKitchenSystem.setDisplayName('Total Cost for Kitchen System ($).')
  costTotalKitchenSystem.setDefaultValue(0.0)
  args << costTotalKitchenSystem

  # make an argument number of students
  numberOfStudents = OpenStudio::Measure::OSArgument.makeIntegerArgument('numberOfStudents', true)
  numberOfStudents.setDisplayName('Total Number of Students.')
  # calculate default value
  # get total number of students
  studentCount = 0
  model.getThermalZones.each do |zone|
    zoneMultiplier = zone.multiplier
    zone.spaces.each do |space|
      if space.spaceType.is_initialized
        if space.spaceType.get.name.is_initialized
          if space.spaceType.get.name.get.include? 'Classroom'
            # add up number of people from each classroom space
            studentCount += space.numberOfPeople * zoneMultiplier
          end
        end
      end
    end
  end
  if studentCount.to_i > 0
    numberOfStudents.setDefaultValue(studentCount.to_i)
  end
  # calculate default value
  # get total number of students
  studentCount = 0
  model.getThermalZones.each do |zone|
    zoneMultiplier = zone.multiplier
    zone.spaces.each do |space|
      if space.spaceType.is_initialized
        if space.spaceType.get.standardsSpaceType.is_initialized
          if space.spaceType.get.standardsSpaceType.get.include? 'Classroom'
            # add up number of people from each classroom space
            studentCount += space.numberOfPeople * zoneMultiplier
          end
        end
      end
    end
  end
  if studentCount.to_i > 0
    numberOfStudents.setDefaultValue(studentCount.to_i)
  end
  args << numberOfStudents
  return args
end

#nameObject

define the name that a user will see, this method may be deprecated as the display name in PAT comes from the name field in measure.xml



29
30
31
# File 'lib/measures/zedgk_12_kitchen/measure.rb', line 29

def name
  return 'ZEDG K12 Kitchen'
end

#run(model, runner, user_arguments) ⇒ Object

define what happens when the measure is run



89
90
91
92
93
94
95
96
97
98
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
# File 'lib/measures/zedgk_12_kitchen/measure.rb', line 89

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

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

  ### START INPUTS
  # assign the user inputs to variables
  costTotalKitchenSystem = runner.getDoubleArgumentValue('costTotalKitchenSystem', user_arguments)
  numberOfStudents = runner.getIntegerArgumentValue('numberOfStudents', user_arguments)
  # default building/kitchen space types
  standardBuildingTypeTest = ['PrimarySchool', 'SecondarySchool']
  primarySpaceType = 'Classroom'
  kitchenSpaceType = 'Kitchen'

  # look at upstream measure for 'numberOfStudents' argument
  # todo - in future make template in this measure an optional argument and only override value when it is not initialized. There may be valid use cases for using different template values in different measures within the same workflow.
  value_from_osw = OsLib_HelperMethods.check_upstream_measure_for_arg(runner, 'numberOfStudents')
  if !value_from_osw.empty?
    runner.registerInfo("Replacing argument named 'numberOfStudents' from current measure with a value of #{value_from_osw[:value]} from #{value_from_osw[:measure_name]}.")
    numberOfStudents = value_from_osw[:value].to_i
  end

  # equipment inputs
  # electric equipment
  electricEquipmentPerStudent = {}
  electricEquipmentPerStudent['PrimarySchool'] = 67 # W/student changed from 39.51
  electricEquipmentPerStudent['SecondarySchool'] = 57 # W/student changed from 23.25
  # gas equipment
  gasEquipmentPerStudent = {}
  gasEquipmentPerStudent['PrimarySchool'] = 0.0 # W/student
  gasEquipmentPerStudent['SecondarySchool'] = 0.0 # W/student
  # refrigeration equipment

  # exhaust flow
  exhaustFlowPerStudent = {}
  exhaustFlowPerStudent['PrimarySchool'] = 0.002541 # m3/s*student changed from 0.001692
  exhaustFlowPerStudent['SecondarySchool'] = 0.002359 # m3/s*student changed from 0.002833
  ### END INPUTS

  ### START FIND REPRESENTATIVE THERMAL ZONE AND SPACE
  maxKitchenZoneArea = 0
  kitchenZones = []
  kitchenZone = false
  # find representative kitchen zone
  model.getThermalZones.each do |zone|
    isKitchenZone = false
    zoneArea = 0
    zone.spaces.each do |space|
      zoneArea += space.floorArea
      if space.spaceType.is_initialized
        if space.spaceType.get.standardsSpaceType.is_initialized
          if space.spaceType.get.standardsSpaceType.get.include? kitchenSpaceType
            # if zone contains a kitchen space, assume it is a kitchen zone
            isKitchenZone = true
          end
        end
      end
    end
    if isKitchenZone
      kitchenZones << zone
      if zoneArea > maxKitchenZoneArea
        # set zone as the representative kitchen zone if it is the largest kitchen zone
        kitchenZone = zone
        maxKitchenZoneArea = zoneArea
      end
    end
  end
  # find largest space in representative kitchen zone
  kitchenSpace = false
  if kitchenZone
    maxKitchenSpaceArea = 0
    kitchenZone.spaces.each do |space|
      if space.spaceType.is_initialized
        if space.spaceType.get.standardsSpaceType.is_initialized
          if space.spaceType.get.standardsSpaceType.get.include? kitchenSpaceType
            if space.floorArea > maxKitchenSpaceArea
              maxKitchenSpaceArea = space.floorArea
              kitchenSpace = space
            end
          end
        end
      end
    end
  else
    runner.registerInfo('Model does not have any kitchen spaces.  Measure will not modify the model.')
    return true
  end
  ### END FIND REPRESENTATIVE THERMAL ZONE AND SPACE

  # register initial condition
  runner.registerInitialCondition("Identified #{kitchenSpace.name} as primary kitchen space,it has #{kitchenSpace.electricEquipment.size} electric equipment objects.")

  ### START DETERMINE BUILDING TYPE
  standardBuildingType = false
  if model.building.is_initialized
    if model.building.get.standardsBuildingType.is_initialized
      standardBuildingType = model.building.get.standardsBuildingType.get
    end
  end
  unless standardBuildingType
    # search primary space type for standardsBuildingType
    model.getSpaces.each do |space|
      next if standardBuildingType
      if space.spaceType.is_initialized
        if space.spaceType.get.standardsSpaceType.is_initialized
          if space.spaceType.get.standardsSpaceType.get.include? primarySpaceType
            if space.spaceType.get.standardsBuildingType.is_initialized
              standardBuildingType = space.spaceType.get.standardsBuildingType.get
            end
          end
        end
      end
    end
  end
  building_type = false
  standardBuildingTypeTest.each do |building_type_test|
    if standardBuildingType == building_type_test
      building_type = building_type_test
    end
  end
  unless building_type
    # building type not specified or not appropriate for this measure
    runner.registerInfo("Building type is not specified or not supported.  Measure will proceed assuming type is #{standardBuildingTypeTest[0]}.")
    building_type = standardBuildingTypeTest[0]
  end
  ### END DETERMINE BUILDING TYPE

  ### START DELETE EXISTING EQUIPMENT
  # delete equipment from space types
  model.getSpaceTypes.each do |spaceType|
    if spaceType.standardsSpaceType.is_initialized
      if spaceType.standardsSpaceType.get.include? kitchenSpaceType
        # space type is kitchen; delete equipment
        spaceType.electricEquipment.each(&:remove)
        spaceType.gasEquipment.each(&:remove)
      end
    end
  end
  # delete additional equipment defined at the space level
  model.getSpaces.each do |space|
    if space.spaceType.is_initialized
      if space.spaceType.get.standardsSpaceType.is_initialized
        if space.spaceType.get.standardsSpaceType.get.include? kitchenSpaceType
          # space type is kitchen; delete equipment
          space.spaceType.get.electricEquipment.each(&:remove)
          space.spaceType.get.gasEquipment.each(&:remove)
        end
      end
    end
  end
  # Kitchen Exhaust Fans (delete all in zones with kitchen spaces)
  model.getFanZoneExhausts.each do |exhaust_fan|
    if exhaust_fan.thermalZone.is_initialized
      if kitchenZones.include? exhaust_fan.thermalZone.get
        # exhaust fan is a kitchen exhaust fan
        exhaust_fan.remove
      end
    end
  end
  # Refrigeration Systems
  # assume all refrigeration systems are tied to the kitchen
  model.getRefrigerationSystems.each do |refrigeration_system|
    refrigeration_system.cases.each(&:remove)
    refrigeration_system.walkins.each(&:remove)
    refrigeration_system.remove
  end
  ### END DELETE EXISTING EQUIPMENT

  ### START APPLY COOKING EQUIPMENT RECOMMENDATIONS
  # Electric Equipment (add to representative kitchen zone)
  electricEquipmentDefinition = OpenStudio::Model::ElectricEquipmentDefinition.new(model)
  electricEquipmentDefinition.setDesignLevel(electricEquipmentPerStudent[building_type] * numberOfStudents)
  electricEquipment = OpenStudio::Model::ElectricEquipment.new(electricEquipmentDefinition)
  electricEquipment.setSpace(kitchenSpace)
  runner.registerInfo("Adding an electrical load to #{kitchenSpace.name} of #{electricEquipmentDefinition.designLevel} W")
  # create kitchen electric equipment schedule
  if building_type == 'PrimarySchool'
    ruleset_name = 'ZEDG K-12 Primary Kitchen Electric Equipment Schedule'
    winter_design_day = [[24, 0]]
    summer_design_day = [[7, 0.09], [10, 0.5], [14, 1], [24, 0.09]]
    default_day = ['Weekday', [7, 0.09], [10, 0.5], [14, 1], [24, 0.09]]
    rules = []
    rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0.09]]
    rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [24, 0.09]]
    options_kitchen_electric = { 'name' => ruleset_name,
                                 'winter_design_day' => winter_design_day,
                                 'summer_design_day' => summer_design_day,
                                 'default_day' => default_day,
                                 'rules' => rules }
    kitchenElectricSchedule = OsLib_Schedules.createComplexSchedule(model, options_kitchen_electric)
  elsif building_type == 'SecondarySchool'
    ruleset_name = 'ZEDG K-12 Secondary Kitchen Electric Equipment Schedule'
    winter_design_day = [[24, 0]]
    summer_design_day = [[7, 0.08], [10, 0.5], [14, 1], [24, 0.08]]
    default_day = ['Weekday', [7, 0.08], [10, 0.5], [14, 1], [24, 0.08]]
    rules = []
    rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0.38]]
    rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [24, 0.08]]
    options_kitchen_electric = { 'name' => ruleset_name,
                                 'winter_design_day' => winter_design_day,
                                 'summer_design_day' => summer_design_day,
                                 'default_day' => default_day,
                                 'rules' => rules }
    kitchenElectricSchedule = OsLib_Schedules.createComplexSchedule(model, options_kitchen_electric)
  end
  electricEquipment.setSchedule(kitchenElectricSchedule)
  # Gas Equipment
  if gasEquipmentPerStudent[building_type] > 0
    gasEquipmentDefinition = OpenStudio::Model::GasEquipmentDefinition.new(model)
    gasEquipmentDefinition.setDesignLevel(gasEquipmentPerStudent[building_type] * numberOfStudents)
    gasEquipment = OpenStudio::Model::GasEquipment.new(gasEquipmentDefinition)
    gasEquipment.setSpace(kitchenSpace)
    runner.registerInfo("Adding a gas load to #{kitchenSpace.name} of #{gasEquipmentDefinition.designLevel} W")
    # create kitchen gas equipment schedule
    if building_type == 'PrimarySchool'
      ruleset_name = 'ZEDG K-12 Primary Kitchen Gas Equipment Schedule'
      winter_design_day = [[24, 0]]
      summer_design_day = [[6, 0.04], [8, 1.00], [9, 0.32], [10, 0.06], [13, 1.00], [24, 0.04]]
      default_day = ['Weekday', [6, 0.04], [8, 1.00], [9, 0.32], [10, 0.06], [13, 1.00], [24, 0.04]]
      rules = []
      rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0.04]]
      rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [24, 0.04]]
      options_kitchen_gas = { 'name' => ruleset_name,
                              'winter_design_day' => winter_design_day,
                              'summer_design_day' => summer_design_day,
                              'default_day' => default_day,
                              'rules' => rules }
      kitchenGasSchedule = OsLib_Schedules.createComplexSchedule(model, options_kitchen_gas)
    elsif building_type == 'SecondarySchool'
      ruleset_name = 'ZEDG K-12 Secondary Kitchen Gas Equipment Schedule'
      winter_design_day = [[24, 0]]
      summer_design_day = [[3, 0.02], [6, 0.22], [7, 0.99], [8, 0.79], [10, 0.40], [11, 0.86], [13, 1.00], [24, 0.02]]
      default_day = ['Weekday', [3, 0.02], [6, 0.22], [7, 0.99], [8, 0.79], [10, 0.40], [11, 0.86], [13, 1.00], [24, 0.02]]
      rules = []
      rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0.02]]
      rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [24, 0.02]]
      options_kitchen_gas = { 'name' => ruleset_name,
                              'winter_design_day' => winter_design_day,
                              'summer_design_day' => summer_design_day,
                              'default_day' => default_day,
                              'rules' => rules }
      kitchenGasSchedule = OsLib_Schedules.createComplexSchedule(model, options_kitchen_gas)
    end
    gasEquipment.setSchedule(kitchenGasSchedule)
  end

  # Exhaust Equipment
  # create new exhaust fan
  exhaustFan = OpenStudio::Model::FanZoneExhaust.new(model)
  # create exhaust fan schedule
  airloops = model.getAirLoopHVACs
  # find airloop with most primary spaces
  max_primary_spaces = 0
  representative_airloop = false
  kitchen_exhaust_schedule = false
  airloops.each do |air_loop|
    primary_spaces = 0
    air_loop.thermalZones.each do |thermal_zone|
      thermal_zone.spaces.each do |space|
        if space.spaceType.is_initialized
          if space.spaceType.get.name.is_initialized
            if space.spaceType.get.name.get.include? primarySpaceType
              primary_spaces += 1
            end
          end
        end
      end
    end
    if primary_spaces > max_primary_spaces
      max_primary_spaces = primary_spaces
      representative_airloop = air_loop
    end
  end
  if representative_airloop
    if representative_airloop.airLoopHVACOutdoorAirSystem.is_initialized
      building_ventilation_schedule = representative_airloop.airLoopHVACOutdoorAirSystem.get.getControllerOutdoorAir.maximumFractionofOutdoorAirSchedule
      if building_ventilation_schedule.is_initialized
        kitchen_exhaust_schedule = building_ventilation_schedule.get
      end
    end
  end
  unless kitchen_exhaust_schedule
    ruleset_name = 'ZEDG K-12 Kitchen Exhaust Schedule'
    winter_design_day = [[24, 1]]
    summer_design_day = [[24, 1]]
    default_day = ['Weekday', [6, 0], [18, 1], [24, 0]]
    rules = []
    rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0]]
    rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [8, 0], [13, 1], [24, 0]]
    options_kitchen_exhaust = { 'name' => ruleset_name,
                                'winter_design_day' => winter_design_day,
                                'summer_design_day' => summer_design_day,
                                'default_day' => default_day,
                                'rules' => rules }
    kitchen_exhaust_schedule = OsLib_Schedules.createComplexSchedule(model, options_kitchen_exhaust)
  end

  # Adding Flow fraction schedule
  ruleset_name = 'ZEDG K-12 Kitchen Flow Fraction Schedule'
  winter_design_day = [[24, 1]]
  summer_design_day = [[24, 1]]
  default_day = ['Weekday', [6, 0], [12, 1], [24, 0]]
  rules = []
  rules << ['Weekend', '1/1-12/31', 'Sat/Sun', [24, 0]]
  rules << ['Summer Weekday', '7/1-8/31', 'Mon/Tue/Wed/Thu/Fri', [24, 0]]
  options_kitchen_exhaust = { 'name' => ruleset_name,
                              'winter_design_day' => winter_design_day,
                              'summer_design_day' => summer_design_day,
                              'default_day' => default_day,
                              'rules' => rules }
  kitchen_flowFraction_schedule = OsLib_Schedules.createComplexSchedule(model, options_kitchen_exhaust)

  exhaustFan.setAvailabilitySchedule(kitchen_exhaust_schedule)
  exhaustFan.setFlowFractionSchedule(kitchen_flowFraction_schedule)
  exhaustFan.setFanEfficiency(0.6) # Anoop changed from 0.45 to 0.6

  exhaustFan.setPressureRise(125) # Pa
  exhaustFan.setMaximumFlowRate(exhaustFlowPerStudent[building_type] * numberOfStudents)
  exhaustFan.addToThermalZone(kitchenZone)
  max_flow_rate_ip = OpenStudio.convert(exhaustFan.maximumFlowRate.get, 'm^3/s', 'ft^3/min').get
  runner.registerInfo("Adding exhaust fan to #{kitchenZone.name} with maximum flow rate of #{max_flow_rate_ip.round} ft^3/min")

  # Refrigeration Equipment (Anoop commentated lines 398 to 657. Deleting refrigeration components since it has been included in kitchen loads)
  # create new medium temperature refrigeration system
  # refrigerationSystemMediumTemp = OpenStudio::Model::RefrigerationSystem.new(model)
  # refrigerationSystemMediumTemp.setSumUASuctionPiping(150) # W/K, conservatively estimated from model of real refrigeration system
  # refrigerationSystemMediumTemp.setSuctionPipingZone(kitchenZone)
  # create compressors
  # compressors = []
  # compressors << compressor1 = OpenStudio::Model::RefrigerationCompressor.new(model)
  # compressors << compressor2 = OpenStudio::Model::RefrigerationCompressor.new(model)
  # compressors << compressor3 = OpenStudio::Model::RefrigerationCompressor.new(model)
  # # assign curves to compressors and attach to refrigeration system
  # compressors.each do |compressor|
  # # create compressorMedTempPwrCurve
  # compressorMedTempPwrCurve = OpenStudio::Model::CurveBicubic.new(model)
  # compressorMedTempPwrCurve.setCoefficient1Constant(3913)
  # compressorMedTempPwrCurve.setCoefficient2x(-107.7)
  # compressorMedTempPwrCurve.setCoefficient3xPOW2(-3.694)
  # compressorMedTempPwrCurve.setCoefficient4y(166.9)
  # compressorMedTempPwrCurve.setCoefficient5yPOW2(0.2619)
  # compressorMedTempPwrCurve.setCoefficient6xTIMESY(4.543)
  # compressorMedTempPwrCurve.setCoefficient7xPOW3(-0.02113)
  # compressorMedTempPwrCurve.setCoefficient8yPOW3(-0.006456)
  # compressorMedTempPwrCurve.setCoefficient9xPOW2TIMESY(0.03008)
  # compressorMedTempPwrCurve.setCoefficient10xTIMESYPOW2(0.004171)
  # compressorMedTempPwrCurve.setMinimumValueofx(-17.8)
  # compressorMedTempPwrCurve.setMaximumValueofx(4.4)
  # compressorMedTempPwrCurve.setMinimumValueofy(10.0)
  # compressorMedTempPwrCurve.setMaximumValueofy(48.9)
  # # create compressorMedTempCapCurve
  # compressorMedTempCapCurve = OpenStudio::Model::CurveBicubic.new(model)
  # compressorMedTempCapCurve.setCoefficient1Constant(93210)
  # compressorMedTempCapCurve.setCoefficient2x(3325)
  # compressorMedTempCapCurve.setCoefficient3xPOW2(34.15)
  # compressorMedTempCapCurve.setCoefficient4y(-683.6)
  # compressorMedTempCapCurve.setCoefficient5yPOW2(-9.723)
  # compressorMedTempCapCurve.setCoefficient6xTIMESY(-30.48)
  # compressorMedTempCapCurve.setCoefficient7xPOW3(-0.03525)
  # compressorMedTempCapCurve.setCoefficient8yPOW3(0.07694)
  # compressorMedTempCapCurve.setCoefficient9xPOW2TIMESY(-0.3221)
  # compressorMedTempCapCurve.setCoefficient10xTIMESYPOW2(-0.05519)
  # compressorMedTempCapCurve.setMinimumValueofx(-17.8)
  # compressorMedTempCapCurve.setMaximumValueofx(4.4)
  # compressorMedTempCapCurve.setMinimumValueofy(10.0)
  # compressorMedTempCapCurve.setMaximumValueofy(48.9)
  # # assign curves
  # compressor.setRefrigerationCompressorPowerCurve(compressorMedTempPwrCurve)
  # compressor.setRefrigerationCompressorCapacityCurve(compressorMedTempCapCurve)
  # refrigerationSystemMediumTemp.addCompressor(compressor)
  # end
  # # create condenser and attach to refrigeration system
  # condenser = OpenStudio::Model::RefrigerationCondenserAirCooled.new(model)
  # condenser.setCondenserFanSpeedControlType("Fixed") # estimated from model of real refrigeration system
  # condenser.setRatedFanPower(350) # This was missing previously. Anoop added it on 3/28, based on AEDG kitchen measure.
  # condenser.setMinimumFanAirFlowRatio(0.2) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve = OpenStudio::Model::CurveLinear.new(model)
  # condenserHeatRejectionCurve.setCoefficient1Constant(0) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve.setCoefficient2x(35000) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve.setMinimumValueofx(8.3) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve.setMaximumValueofx(33.3) # estimated from model of real refrigeration system
  # condenser.setRatedEffectiveTotalHeatRejectionRateCurve(condenserHeatRejectionCurve)
  # refrigerationSystemMediumTemp.setRefrigerationCondenser(condenser)
  # # create medium temperature case
  # scheduleDefrost = OsLib_Schedules.createComplexSchedule(model, {"name" => "Always Off",
  # "default_day" => ["All Days",[24,0]]})
  # caseRefrigeration = OpenStudio::Model::RefrigerationCase.new(model,scheduleDefrost)
  # caseRefrigeration.setThermalZone(kitchenZone)
  # caseRefrigeration.setRatedAmbientTemperature(23.88)
  # caseRefrigeration.setRatedAmbientRelativeHumidity(55.0)
  # caseRefrigeration.setRatedTotalCoolingCapacityperUnitLength(734)
  # caseRefrigeration.setRatedLatentHeatRatio(0.08)
  # caseRefrigeration.setRatedRuntimeFraction(0.85)
  # if building_type == "PrimarySchool"
  # caseRefrigeration.setCaseLength(3.66)
  # elsif building_type == "SecondarySchool"
  # caseRefrigeration.setCaseLength(7.32)
  # end
  # caseRefrigeration.setCaseOperatingTemperature(2)
  # # latent case credit curve
  # latentCaseCreditCurve = OpenStudio::Model::CurveCubic.new(model)
  # latentCaseCreditCurve.setCoefficient1Constant(0.026526281)
  # latentCaseCreditCurve.setCoefficient2x(0.001078032)
  # latentCaseCreditCurve.setCoefficient3xPOW2(0.0000602558)
  # latentCaseCreditCurve.setCoefficient4xPOW3(0.00000123732)
  # latentCaseCreditCurve.setMinimumValueofx(-35.0)
  # latentCaseCreditCurve.setMaximumValueofx(20.0)
  # caseRefrigeration.setLatentCaseCreditCurve(latentCaseCreditCurve)
  # caseRefrigeration.setStandardCaseFanPowerperUnitLength(55)
  # caseRefrigeration.setOperatingCaseFanPowerperUnitLength(40)
  # caseRefrigeration.setStandardCaseLightingPowerperUnitLength(33)
  # caseRefrigeration.setInstalledCaseLightingPowerperUnitLength(75)
  # # get relevant lighting schedule
  # maxLightingPower = 0
  # kitchenSpaceFloorArea = kitchenSpace.floorArea
  # kitchenSpaceNumPeople = 0
  # kitchenSpace.people.each do |people|
  # if people.numberOfPeople.is_initialized
  # kitchenSpaceNumPeople += people.numberOfPeople.get
  # end
  # end
  # representativeLight = false
  # caseLightingSchedule = false
  # kitchenSpace.spaceType.get.lights.each do |light|
  # lightPower = light.getLightingPower(kitchenSpaceFloorArea,kitchenSpaceNumPeople)
  # if lightPower > maxLightingPower
  # maxLightingPower = lightPower
  # representativeLight = light
  # end
  # end
  # if representativeLight
  # if representativeLight.schedule.is_initialized
  # caseLightingSchedule = representativeLight.schedule.get
  # end
  # end
  # unless caseLightingSchedule
  # runner.registerInfo("No lighting schedule is specified for space named #{kitchenSpace.name} in thermal zone named #{kitchenZone.name}.  Measure will assign #{caseRefrigeration.name} refrigerated case lighting schedule as always on.")
  # caseLightingSchedule = model.alwaysOnDiscreteSchedule()
  # end
  # caseRefrigeration.setCaseLightingSchedule(caseLightingSchedule)
  # caseRefrigeration.setFractionofLightingEnergytoCase(1)
  # caseRefrigeration.setCaseAntiSweatHeaterPowerperUnitLength(0)
  # caseRefrigeration.setMinimumAntiSweatHeaterPowerperUnitLength(0)
  # caseRefrigeration.setAntiSweatHeaterControlType("None")
  # caseRefrigeration.setHumidityatZeroAntiSweatHeaterEnergy(0)
  # caseRefrigeration.setCaseHeight(0)
  # caseRefrigeration.setFractionofAntiSweatHeaterEnergytoCase(0.2)
  # caseRefrigeration.setCaseDefrostPowerperUnitLength(0)
  # caseRefrigeration.setCaseDefrostType("None")
  # caseRefrigeration.setDefrostEnergyCorrectionCurveType("None")
  # caseRefrigeration.setUnderCaseHVACReturnAirFraction(0.05)
  # scheduleRestocking = OsLib_Schedules.createComplexSchedule(model, {"name" => "AEDG Medium Temperature Case Restocking Schedule",
  # "default_day" => ["All Days",[6,0],[7,50],[9,70],[10,80],[11,70],[13,50],[14,80],[15,90],[16,80],[24,0]]})
  # caseRefrigeration.setRefrigeratedCaseRestockingSchedule(scheduleRestocking)
  # caseRefrigeration.setDesignEvaporatorTemperatureorBrineInletTemperature(-7.22) # estimated from model of real refrigeration system
  # # assign case to system
  # refrigerationSystemMediumTemp.addCase(caseRefrigeration)
  # # create new low temperature refrigeration system
  # refrigerationSystemLowTemp = OpenStudio::Model::RefrigerationSystem.new(model)
  # refrigerationSystemLowTemp.setSumUASuctionPiping(150) # W/K, conservatively estimated from model of real refrigeration system
  # refrigerationSystemLowTemp.setSuctionPipingZone(kitchenZone)
  # # create compressors
  # compressors = []
  # compressors << compressor1 = OpenStudio::Model::RefrigerationCompressor.new(model)
  # compressors << compressor2 = OpenStudio::Model::RefrigerationCompressor.new(model)
  # compressors << compressor3 = OpenStudio::Model::RefrigerationCompressor.new(model)
  # # assign curves to compressors and attach to refrigeration system
  # compressors.each do |compressor|
  # # create compressorLowTempPwrCurve
  # compressorLowTempPwrCurve = OpenStudio::Model::CurveBicubic.new(model)
  # compressorLowTempPwrCurve.setCoefficient1Constant(25230)
  # compressorLowTempPwrCurve.setCoefficient2x(982.8)
  # compressorLowTempPwrCurve.setCoefficient3xPOW2(18.47)
  # compressorLowTempPwrCurve.setCoefficient4y(-624.9)
  # compressorLowTempPwrCurve.setCoefficient5yPOW2(14.10)
  # compressorLowTempPwrCurve.setCoefficient6xTIMESY(-21.91)
  # compressorLowTempPwrCurve.setCoefficient7xPOW3(0.1344)
  # compressorLowTempPwrCurve.setCoefficient8yPOW3(-0.08536)
  # compressorLowTempPwrCurve.setCoefficient9xPOW2TIMESY(-0.2288)
  # compressorLowTempPwrCurve.setCoefficient10xTIMESYPOW2(0.1977)
  # compressorLowTempPwrCurve.setMinimumValueofx(-40.0)
  # compressorLowTempPwrCurve.setMaximumValueofx(-17.8)
  # compressorLowTempPwrCurve.setMinimumValueofy(10.0)
  # compressorLowTempPwrCurve.setMaximumValueofy(48.9)
  # # create compressorLowTempCapCurve
  # compressorLowTempCapCurve = OpenStudio::Model::CurveBicubic.new(model)
  # compressorLowTempCapCurve.setCoefficient1Constant(170800)
  # compressorLowTempCapCurve.setCoefficient2x(5801)
  # compressorLowTempCapCurve.setCoefficient3xPOW2(65.95)
  # compressorLowTempCapCurve.setCoefficient4y(-3117)
  # compressorLowTempCapCurve.setCoefficient5yPOW2(22.54)
  # compressorLowTempCapCurve.setCoefficient6xTIMESY(-96.33)
  # compressorLowTempCapCurve.setCoefficient7xPOW3(0.3026)
  # compressorLowTempCapCurve.setCoefficient8yPOW3(-0.05385)
  # compressorLowTempCapCurve.setCoefficient9xPOW2TIMESY(-0.6427)
  # compressorLowTempCapCurve.setCoefficient10xTIMESYPOW2(0.5012)
  # compressorLowTempCapCurve.setMinimumValueofx(-40.0)
  # compressorLowTempCapCurve.setMaximumValueofx(-17.8)
  # compressorLowTempCapCurve.setMinimumValueofy(10.0)
  # compressorLowTempCapCurve.setMaximumValueofy(48.9)
  # # set curves
  # compressor.setRefrigerationCompressorPowerCurve(compressorLowTempPwrCurve)
  # compressor.setRefrigerationCompressorCapacityCurve(compressorLowTempCapCurve)
  # refrigerationSystemLowTemp.addCompressor(compressor)
  # end
  # # create condenser and attach to refrigeration system
  # condenser = OpenStudio::Model::RefrigerationCondenserAirCooled.new(model)
  # condenser.setCondenserFanSpeedControlType("Fixed") # estimated from model of real refrigeration system
  # condenser.setRatedFanPower(350) # This was missing previously. Anoop added it on 3/28, based on AEDG kitchen measure.
  # condenser.setMinimumFanAirFlowRatio(0.2) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve = OpenStudio::Model::CurveLinear.new(model)
  # condenserHeatRejectionCurve.setCoefficient1Constant(0) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve.setCoefficient2x(25000) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve.setMinimumValueofx(5.6) # estimated from model of real refrigeration system
  # condenserHeatRejectionCurve.setMaximumValueofx(33.3) # estimated from model of real refrigeration system
  # condenser.setRatedEffectiveTotalHeatRejectionRateCurve(condenserHeatRejectionCurve)
  # refrigerationSystemLowTemp.setRefrigerationCondenser(condenser)
  # # create low temperature case
  # scheduleDefrost = OsLib_Schedules.createComplexSchedule(model, {"name" => "AEDG Low Temperature Case Defrost Schedule",
  # "default_day" => ["All Days",[11,0],[11.33,1],[23,0],[23.33,1],[24,0]]})
  # caseRefrigeration = OpenStudio::Model::RefrigerationCase.new(model,scheduleDefrost)
  # caseRefrigeration.setThermalZone(kitchenZone)
  # caseRefrigeration.setRatedAmbientTemperature(23.88)
  # caseRefrigeration.setRatedAmbientRelativeHumidity(55.0)
  # caseRefrigeration.setRatedTotalCoolingCapacityperUnitLength(734)
  # caseRefrigeration.setRatedLatentHeatRatio(0.10)
  # caseRefrigeration.setRatedRuntimeFraction(0.40)
  # if building_type == "PrimarySchool"
  # caseRefrigeration.setCaseLength(3.66)
  # elsif building_type == "SecondarySchool"
  # caseRefrigeration.setCaseLength(7.32)
  # end
  # caseRefrigeration.setCaseOperatingTemperature(-23)
  # # latent case credit curve
  # latentCaseCreditCurve = OpenStudio::Model::CurveCubic.new(model)
  # latentCaseCreditCurve.setCoefficient1Constant(0.0236)
  # latentCaseCreditCurve.setCoefficient2x(0.0006)
  # latentCaseCreditCurve.setCoefficient3xPOW2(0.0)
  # latentCaseCreditCurve.setCoefficient4xPOW3(0.0)
  # latentCaseCreditCurve.setMinimumValueofx(-35.0)
  # latentCaseCreditCurve.setMaximumValueofx(20.0)
  # caseRefrigeration.setLatentCaseCreditCurve(latentCaseCreditCurve)
  # caseRefrigeration.setStandardCaseFanPowerperUnitLength(68.3)
  # caseRefrigeration.setOperatingCaseFanPowerperUnitLength(172.2)
  # caseRefrigeration.setStandardCaseLightingPowerperUnitLength(33)
  # caseRefrigeration.setInstalledCaseLightingPowerperUnitLength(28.1)
  # # use same lighting schedule as for medium temperature case
  # caseRefrigeration.setCaseLightingSchedule(caseLightingSchedule)
  # caseRefrigeration.setFractionofLightingEnergytoCase(1)
  # caseRefrigeration.setCaseAntiSweatHeaterPowerperUnitLength(0)
  # caseRefrigeration.setMinimumAntiSweatHeaterPowerperUnitLength(0)
  # caseRefrigeration.setAntiSweatHeaterControlType("None")
  # caseRefrigeration.setHumidityatZeroAntiSweatHeaterEnergy(0)
  # caseRefrigeration.setCaseHeight(0)
  # caseRefrigeration.setFractionofAntiSweatHeaterEnergytoCase(0)
  # if building_type == "PrimarySchool"
  # caseRefrigeration.setCaseDefrostPowerperUnitLength(547)
  # elsif building_type == "SecondarySchool"
  # caseRefrigeration.setCaseDefrostPowerperUnitLength(410)
  # end
  # caseRefrigeration.setCaseDefrostType("Electric")
  # scheduleDripDown = OsLib_Schedules.createComplexSchedule(model, {"name" => "AEDG Low Temperature Case Drip Down Schedule",
  # "default_day" => ["All Days",[11,0],[11.5,1],[23,0],[23.5,1],[24,0]]})
  # caseRefrigeration.setCaseDefrostDripDownSchedule(scheduleDripDown)
  # caseRefrigeration.setDefrostEnergyCorrectionCurveType("None")
  # caseRefrigeration.setUnderCaseHVACReturnAirFraction(0.0)
  # ruleset_name = "AEDG Low Temperature Case Restocking Schedule"
  # default_day = ["All Other Days",[4,0],[5,125],[6,117],[7,90],[19,0],[20,125],[21,117],[22,90],[24,0]]
  # rules = []
  # rules << ["Tuesdays and Thursdays","1/1-12/31","Tue/Thu",[4,0],[5,725],[6,417],[7,290],[24,0]]
  # options_restock = {"name" => ruleset_name,
  # "default_day" => default_day,
  # "rules" => rules}
  # scheduleRestocking = OsLib_Schedules.createComplexSchedule(model, options_restock)
  # caseRefrigeration.setRefrigeratedCaseRestockingSchedule(scheduleRestocking)
  # scheduleCaseCreditFraction = OsLib_Schedules.createComplexSchedule(model, {"name" => "AEDG Low Temperature Case Credit Fraction Schedule",
  # "default_day" => ["All Days",[7,0.2],[21,0.4],[24,0.2]]})
  # caseRefrigeration.setCaseCreditFractionSchedule(scheduleCaseCreditFraction)
  # caseRefrigeration.setDesignEvaporatorTemperatureorBrineInletTemperature(-25.56) # estimated from model of real refrigeration system
  # # assign case to system
  # refrigerationSystemLowTemp.addCase(caseRefrigeration)

  # lifecycle costs
  expected_life = 25
  years_until_costs_start = 0
  costKitchen = costTotalKitchenSystem
  lcc_mat = OpenStudio::Model::LifeCycleCost.createLifeCycleCost('Kitchen Equipment', model.getBuilding, costKitchen, 'CostPerEach', 'Construction', expected_life, years_until_costs_start).get

  # register final condition
  runner.registerFinalCondition("Identified #{kitchenSpace.name} as primary kitchen space, it has #{kitchenSpace.electricEquipment.size} electric equipment objects.")

  return true
end