-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmodel_tests.rb
2382 lines (1819 loc) · 55.2 KB
/
model_tests.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
87
88
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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# frozen_string_literal: true
require 'openstudio' unless defined?(OpenStudio)
# The config and helpers are inside this file
require_relative 'test_helpers'
# TODO: Include the other ones?
# require_relative 'highlevel_tests.rb'
# Ensure high level tests pass before continuing
# require 'minitest'
# success = Minitest.run(["-n", "/HighLevelTests/"])
# success = HighLevelTests::run Minitest::Reporters::DefaultReporter.new
# if not success
# raise "High level tests failed"
# end
# the tests
class ModelTests < Minitest::Test
parallelize_me!
# simulation tests
def test_absorption_chillers_rb
result = sim_test('absorption_chillers.rb')
end
def test_absorption_chillers_py
result = sim_test('absorption_chillers.py')
end
def test_absorption_chillers_osm
result = sim_test('absorption_chillers.osm')
end
def test_adiabatic_construction_set_rb
result = sim_test('adiabatic_construction_set.rb')
end
def test_adiabatic_construction_set_py
result = sim_test('adiabatic_construction_set.py')
end
def test_adiabatic_construction_set_osm
result = sim_test('adiabatic_construction_set.osm')
end
def test_airterminal_cooledbeam_osm
result = sim_test('airterminal_cooledbeam.osm')
end
def test_airterminal_cooledbeam_rb
result = sim_test('airterminal_cooledbeam.rb')
end
def test_airterminal_cooledbeam_py
result = sim_test('airterminal_cooledbeam.py')
end
def test_airterminal_fourpipebeam_rb
result = sim_test('airterminal_fourpipebeam.rb')
end
def test_airterminal_fourpipebeam_py
result = sim_test('airterminal_fourpipebeam.py')
end
def test_airterminal_fourpipebeam_osm
result = sim_test('airterminal_fourpipebeam.osm')
end
def test_airterminal_inletsidemixer_rb
result = sim_test('airterminal_inletsidemixer.rb')
end
def test_airterminal_inletsidemixer_py
result = sim_test('airterminal_inletsidemixer.py')
end
def test_airterminal_inletsidemixer_osm
result = sim_test('airterminal_inletsidemixer.osm')
end
def test_air_chillers_osm
result = sim_test('air_chillers.osm')
end
def test_air_chillers_rb
result = sim_test('air_chillers.rb')
end
def test_air_chillers_py
result = sim_test('air_chillers.py')
end
def test_air_terminals_osm
result = sim_test('air_terminals.osm')
end
def test_air_terminals_rb
result = sim_test('air_terminals.rb')
end
def test_air_terminals_py
result = sim_test('air_terminals.py')
end
def test_airloop_and_zonehvac_rb
result = sim_test('airloop_and_zonehvac.rb')
end
def test_airloop_and_zonehvac_py
result = sim_test('airloop_and_zonehvac.py')
end
def test_airloop_and_zonehvac_osm
result = sim_test('airloop_and_zonehvac.osm')
end
def test_ptac_othercoils_rb
result = sim_test('ptac_othercoils.rb')
end
def test_ptac_othercoils_py
result = sim_test('ptac_othercoils.py')
end
def test_ptac_othercoils_osm
result = sim_test('ptac_othercoils.osm')
end
def test_pthp_othercoils_rb
result = sim_test('pthp_othercoils.rb')
end
def test_pthp_othercoils_py
result = sim_test('pthp_othercoils.py')
end
def test_pthp_othercoils_osm
result = sim_test('pthp_othercoils.osm')
end
def test_airloop_avms_rb
result = sim_test('airloop_avms.rb')
end
def test_airloop_avms_py
result = sim_test('airloop_avms.py')
end
def test_airloop_avms_osm
result = sim_test('airloop_avms.osm')
end
def test_asymmetric_interior_constructions_osm
result = sim_test('asymmetric_interior_constructions.osm')
end
def test_availability_managers_rb
result = sim_test('availability_managers.rb')
end
def test_availability_managers_py
result = sim_test('availability_managers.py')
end
def test_availability_managers_osm
result = sim_test('availability_managers.osm')
end
def test_baseline_sys01_osm
result = sim_test('baseline_sys01.osm')
end
def test_baseline_sys01_rb
result = sim_test('baseline_sys01.rb')
end
def test_baseline_sys01_py
result = sim_test('baseline_sys01.py')
end
def test_baseline_sys02_osm
result = sim_test('baseline_sys02.osm')
end
def test_baseline_sys02_rb
result = sim_test('baseline_sys02.rb')
end
def test_baseline_sys02_py
result = sim_test('baseline_sys02.py')
end
def test_baseline_sys03_osm
result = sim_test('baseline_sys03.osm')
end
def test_baseline_sys03_rb
result = sim_test('baseline_sys03.rb')
end
def test_baseline_sys03_py
result = sim_test('baseline_sys03.py')
end
def test_baseline_sys04_osm
result = sim_test('baseline_sys04.osm')
end
def test_baseline_sys04_rb
result = sim_test('baseline_sys04.rb')
end
def test_baseline_sys04_py
result = sim_test('baseline_sys04.py')
end
def test_baseline_sys05_osm
result = sim_test('baseline_sys05.osm')
end
def test_baseline_sys05_rb
result = sim_test('baseline_sys05.rb')
end
def test_baseline_sys05_py
result = sim_test('baseline_sys05.py')
end
def test_baseline_sys06_osm
result = sim_test('baseline_sys06.osm')
end
def test_baseline_sys06_rb
result = sim_test('baseline_sys06.rb')
end
def test_baseline_sys06_py
result = sim_test('baseline_sys06.py')
end
def test_baseline_sys07_osm
result = sim_test('baseline_sys07.osm')
end
def test_baseline_sys07_rb
result = sim_test('baseline_sys07.rb')
end
def test_baseline_sys07_py
result = sim_test('baseline_sys07.py')
end
def test_baseline_sys08_osm
result = sim_test('baseline_sys08.osm')
end
def test_baseline_sys08_rb
result = sim_test('baseline_sys08.rb')
end
def test_baseline_sys08_py
result = sim_test('baseline_sys08.py')
end
def test_baseline_sys09_osm
result = sim_test('baseline_sys09.osm')
end
def test_baseline_sys09_rb
result = sim_test('baseline_sys09.rb')
end
def test_baseline_sys09_py
result = sim_test('baseline_sys09.py')
end
def test_baseline_sys10_osm
result = sim_test('baseline_sys10.osm')
end
def test_baseline_sys10_rb
result = sim_test('baseline_sys10.rb')
end
def test_baseline_sys10_py
result = sim_test('baseline_sys10.py')
end
def test_coil_cooling_dx_rb
result = sim_test('coil_cooling_dx.rb')
end
def test_coil_cooling_dx_py
result = sim_test('coil_cooling_dx.py')
end
def test_coil_cooling_dx_osm
result = sim_test('coil_cooling_dx.osm')
end
def test_coil_cooling_dx_airloop_rb
result = sim_test('coil_cooling_dx_airloop.rb')
end
def test_coil_cooling_dx_airloop_py
result = sim_test('coil_cooling_dx_airloop.py')
end
def test_coil_cooling_dx_airloop_osm
result = sim_test('coil_cooling_dx_airloop.osm')
end
def test_coil_cooling_dx_singlespeed_thermalstorage_rb
result = sim_test('coil_cooling_dx_singlespeed_thermalstorage.rb')
end
def test_coil_cooling_dx_singlespeed_thermalstorage_py
result = sim_test('coil_cooling_dx_singlespeed_thermalstorage.py')
end
def test_coil_cooling_dx_singlespeed_thermalstorage_osm
result = sim_test('coil_cooling_dx_singlespeed_thermalstorage.osm')
end
def test_centralheatpumpsystem_osm
result = sim_test('centralheatpumpsystem.osm')
end
def test_centralheatpumpsystem_rb
result = sim_test('centralheatpumpsystem.rb')
end
def test_centralheatpumpsystem_py
result = sim_test('centralheatpumpsystem.py')
end
def test_chiller_electric_ashrae205_rb
result = sim_test('chiller_electric_ashrae205.rb')
end
def test_chiller_electric_ashrae205_py
result = sim_test('chiller_electric_ashrae205.py')
end
# Note JM: there is a special case in sim_test for this test to copy the
# necessary cbor perf file to testruns/chiller_electric_ashrae205.osm/
# We cannot do it here since sim_test starts by deleting and recreating
# this folder
def test_chiller_electric_ashrae205_osm
result = sim_test('chiller_electric_ashrae205.osm')
end
def test_chiller_reformulated_rb
result = sim_test('chiller_reformulated.rb')
end
def test_chiller_reformulated_py
result = sim_test('chiller_reformulated.py')
end
def test_chiller_reformulated_osm
result = sim_test('chiller_reformulated.osm')
end
def test_chillers_tertiary_rb
result = sim_test('chillers_tertiary.rb')
end
def test_chillers_tertiary_py
result = sim_test('chillers_tertiary.py')
end
def test_chillers_tertiary_osm
result = sim_test('chillers_tertiary.osm')
end
def test_coilsystem_waterhx_rb
result = sim_test('coilsystem_waterhx.rb')
end
def test_coilsystem_waterhx_py
result = sim_test('coilsystem_waterhx.py')
end
def test_coilsystem_waterhx_osm
result = sim_test('coilsystem_waterhx.osm')
end
def test_coilsystem_dxhx_rb
result = sim_test('coilsystem_dxhx.rb')
end
def test_coilsystem_dxhx_py
result = sim_test('coilsystem_dxhx.py')
end
def test_coilsystem_dxhx_osm
result = sim_test('coilsystem_dxhx.osm')
end
def test_coilsystem_dxhx_desiccant_balancedflow_rb
result = sim_test('coilsystem_dxhx_desiccant_balancedflow.rb')
end
def test_coilsystem_dxhx_desiccant_balancedflow_py
result = sim_test('coilsystem_dxhx_desiccant_balancedflow.py')
end
def test_coilsystem_dxhx_desiccant_balancedflow_osm
result = sim_test('coilsystem_dxhx_desiccant_balancedflow.osm')
end
def test_coilsystem_integrated_heatpump_rb
result = sim_test('coilsystem_integrated_heatpump.rb')
end
def test_coilsystem_integrated_heatpump_py
result = sim_test('coilsystem_integrated_heatpump.py')
end
def test_coilsystem_integrated_heatpump_osm
result = sim_test('coilsystem_integrated_heatpump.osm')
end
def test_coolingtowers_osm
result = sim_test('coolingtowers.osm')
end
def test_coolingtowers_rb
result = sim_test('coolingtowers.rb')
end
def test_coolingtowers_py
result = sim_test('coolingtowers.py')
end
def test_cooling_coils_rb
result = sim_test('cooling_coils.rb')
end
def test_cooling_coils_py
result = sim_test('cooling_coils.py')
end
def test_cooling_coils_osm
result = sim_test('cooling_coils.osm')
end
def test_daylighting_devices_rb
result = sim_test('daylighting_devices.rb')
end
def test_daylighting_devices_py
result = sim_test('daylighting_devices.py')
end
def test_daylighting_devices_osm
result = sim_test('daylighting_devices.osm')
end
def test_daylighting_no_shades_rb
result = sim_test('daylighting_no_shades.rb')
end
def test_daylighting_no_shades_py
result = sim_test('daylighting_no_shades.py')
end
def test_daylighting_no_shades_osm
result = sim_test('daylighting_no_shades.osm')
end
def test_daylighting_shades_rb
result = sim_test('daylighting_shades.rb')
end
def test_daylighting_shades_py
result = sim_test('daylighting_shades.py')
end
def test_daylighting_shades_osm
result = sim_test('daylighting_shades.osm')
end
def test_design_day_rb
result = sim_test('design_day.rb')
end
def test_design_day_py
result = sim_test('design_day.py')
end
def test_design_day_osm
result = sim_test('design_day.osm')
end
def test_dist_ht_cl_osm
result = sim_test('dist_ht_cl.osm')
end
def test_dist_ht_cl_rb
result = sim_test('dist_ht_cl.rb')
end
def test_dist_ht_cl_py
result = sim_test('dist_ht_cl.py')
end
def test_doas_osm
result = sim_test('doas.osm')
end
def test_doas_rb
result = sim_test('doas.rb')
end
def test_doas_py
result = sim_test('doas.py')
end
def test_doas_coil_cooling_dx_two_speed_osm
result = sim_test('doas_coil_cooling_dx_two_speed.osm')
end
def test_doas_coil_cooling_dx_two_speed_rb
result = sim_test('doas_coil_cooling_dx_two_speed.rb')
end
def test_doas_coil_cooling_dx_two_speed_py
result = sim_test('doas_coil_cooling_dx_two_speed.py')
end
def test_doas_heatexchanger_airtoair_sensibleandlatent_osm
result = sim_test('doas_heatexchanger_airtoair_sensibleandlatent.osm')
end
def test_doas_heatexchanger_airtoair_sensibleandlatent_rb
result = sim_test('doas_heatexchanger_airtoair_sensibleandlatent.rb')
end
def test_doas_heatexchanger_airtoair_sensibleandlatent_py
result = sim_test('doas_heatexchanger_airtoair_sensibleandlatent.py')
end
def test_dsn_oa_w_ideal_loads_osm
result = sim_test('dsn_oa_w_ideal_loads.osm')
end
def test_dsn_oa_w_ideal_loads_rb
result = sim_test('dsn_oa_w_ideal_loads.rb')
end
def test_dsn_oa_w_ideal_loads_py
result = sim_test('dsn_oa_w_ideal_loads.py')
end
def test_ideal_loads_w_plenums_rb
result = sim_test('ideal_loads_w_plenums.rb')
end
def test_ideal_loads_w_plenums_py
result = sim_test('ideal_loads_w_plenums.py')
end
def test_ideal_loads_w_plenums_osm
result = sim_test('ideal_loads_w_plenums.osm')
end
def test_dual_duct_rb
result = sim_test('dual_duct.rb')
end
def test_dual_duct_py
result = sim_test('dual_duct.py')
end
def test_dual_duct_osm
result = sim_test('dual_duct.osm')
end
def test_ducts_and_pipes_rb
result = sim_test('ducts_and_pipes.rb')
end
def test_ducts_and_pipes_py
result = sim_test('ducts_and_pipes.py')
end
def test_ducts_and_pipes_osm
result = sim_test('ducts_and_pipes.osm')
end
def test_elcd_no_generators_rb
result = sim_test('elcd_no_generators.rb')
end
def test_elcd_no_generators_py
result = sim_test('elcd_no_generators.py')
end
def test_elcd_no_generators_osm
result = sim_test('elcd_no_generators.osm')
end
def test_electric_equipment_ITE_rb
result = sim_test('electric_equipment_ITE.rb')
end
def test_electric_equipment_ITE_py
result = sim_test('electric_equipment_ITE.py')
end
def test_electric_equipment_ITE_osm
result = sim_test('electric_equipment_ITE.osm')
end
def test_ems_osm
result = sim_test('ems.osm')
end
def test_ems_scott_osm
result = sim_test('ems_scott.osm')
end
def test_ems_1floor_SpaceType_1space_osm
result = sim_test('ems_1floor_SpaceType_1space.osm')
end
def test_ems_rb
result = sim_test('ems.rb')
end
def test_ems_py
result = sim_test('ems.py')
end
def test_environmental_factors_rb
result = sim_test('environmental_factors.rb')
end
def test_environmental_factors_py
result = sim_test('environmental_factors.py')
end
def test_environmental_factors_osm
result = sim_test('environmental_factors.osm')
end
def test_evaporative_cooling_osm
result = sim_test('evaporative_cooling.osm')
end
def test_evaporative_cooling_rb
result = sim_test('evaporative_cooling.rb')
end
def test_evaporative_cooling_py
result = sim_test('evaporative_cooling.py')
end
def test_ExampleModel_rb
result = sim_test('ExampleModel.rb')
end
def test_ExampleModel_py
result = sim_test('ExampleModel.py')
end
def test_exterior_equipment_rb
result = sim_test('exterior_equipment.rb')
end
def test_exterior_equipment_py
result = sim_test('exterior_equipment.py')
end
def test_exterior_equipment_osm
result = sim_test('exterior_equipment.osm')
end
def test_fan_on_off_osm
result = sim_test('fan_on_off.osm')
end
def test_fan_on_off_rb
result = sim_test('fan_on_off.rb')
end
def test_fan_on_off_py
result = sim_test('fan_on_off.py')
end
def test_fan_systemmodel_osm
result = sim_test('fan_systemmodel.osm')
end
def test_fan_systemmodel_rb
result = sim_test('fan_systemmodel.rb')
end
def test_fan_systemmodel_py
result = sim_test('fan_systemmodel.py')
end
def test_fan_componentmodel_osm
result = sim_test('fan_componentmodel.osm')
end
def test_fan_componentmodel_rb
result = sim_test('fan_componentmodel.rb')
end
def test_fan_componentmodel_py
result = sim_test('fan_componentmodel.py')
end
def test_fluid_coolers_rb
result = sim_test('fluid_coolers.rb')
end
def test_fluid_coolers_py
result = sim_test('fluid_coolers.py')
end
def test_fluid_coolers_osm
result = sim_test('fluid_coolers.osm')
end
def test_foundation_kiva_rb
result = sim_test('foundation_kiva.rb')
end
def test_foundation_kiva_py
result = sim_test('foundation_kiva.py')
end
def test_foundation_kiva_osm
result = sim_test('foundation_kiva.osm')
end
def test_foundation_kiva_customblocks_rb
result = sim_test('foundation_kiva_customblocks.rb')
end
def test_foundation_kiva_customblocks_py
result = sim_test('foundation_kiva_customblocks.py')
end
def test_foundation_kiva_customblocks_osm
result = sim_test('foundation_kiva_customblocks.osm')
end
def test_fuelcell_osm
result = sim_test('fuelcell.osm')
end
def test_fuelcell_rb
result = sim_test('fuelcell.rb')
end
def test_fuelcell_py
result = sim_test('fuelcell.py')
end
def test_generator_microturbine_rb
result = sim_test('generator_microturbine.rb')
end
def test_generator_microturbine_py
result = sim_test('generator_microturbine.py')
end
def test_generator_microturbine_osm
result = sim_test('generator_microturbine.osm')
end
def test_generator_windturbine_rb
result = sim_test('generator_windturbine.rb')
end
def test_generator_windturbine_py
result = sim_test('generator_windturbine.py')
end
def test_generator_windturbine_osm
result = sim_test('generator_windturbine.osm')
end
def test_ghx_horizontal_trench_kusuda_rb
result = sim_test('ghx_horizontal_trench_kusuda.rb')
end
def test_ghx_horizontal_trench_kusuda_py
result = sim_test('ghx_horizontal_trench_kusuda.py')
end
def test_ghx_horizontal_trench_kusuda_osm
result = sim_test('ghx_horizontal_trench_kusuda.osm')
end
def test_ghx_horizontal_trench_xing_rb
result = sim_test('ghx_horizontal_trench_xing.rb')
end
def test_ghx_horizontal_trench_xing_py
result = sim_test('ghx_horizontal_trench_xing.py')
end
def test_ghx_horizontal_trench_xing_osm
result = sim_test('ghx_horizontal_trench_xing.osm')
end
def test_ghx_vertical_kusuda_rb
result = sim_test('ghx_vertical_kusuda.rb')
end
def test_ghx_vertical_kusuda_py
result = sim_test('ghx_vertical_kusuda.py')
end
def test_ghx_vertical_kusuda_osm
result = sim_test('ghx_vertical_kusuda.osm')
end
def test_ghx_vertical_xing_rb
result = sim_test('ghx_vertical_xing.rb')
end
def test_ghx_vertical_xing_py
result = sim_test('ghx_vertical_xing.py')
end
def test_ghx_vertical_xing_osm
result = sim_test('ghx_vertical_xing.osm')
end
def test_coil_waterheating_desuperheater_osm
result = sim_test('coil_waterheating_desuperheater.osm')
end
def test_coil_waterheating_desuperheater_rb
result = sim_test('coil_waterheating_desuperheater.rb')
end
def test_coil_waterheating_desuperheater_py
result = sim_test('coil_waterheating_desuperheater.py')
end
def test_coil_waterheating_desuperheater_2_osm
result = sim_test('coil_waterheating_desuperheater_2.osm')
end
def test_coil_waterheating_desuperheater_2_rb
result = sim_test('coil_waterheating_desuperheater_2.rb')
end
def test_coil_waterheating_desuperheater_2_py
result = sim_test('coil_waterheating_desuperheater_2.py')
end
def test_coil_userdefined_rb
result = sim_test('coil_userdefined.rb')
end
def test_coil_userdefined_py
result = sim_test('coil_userdefined.py')
end
def test_coil_userdefined_osm
result = sim_test('coil_userdefined.osm')
end
def test_headered_pumps_osm
result = sim_test('headered_pumps.osm')
end
def test_headered_pumps_rb
result = sim_test('headered_pumps.rb')
end
def test_headered_pumps_py
result = sim_test('headered_pumps.py')
end
def test_heatexchanger_airtoair_sensibleandlatent_osm
result = sim_test('heatexchanger_airtoair_sensibleandlatent.osm')
end
def test_heatexchanger_airtoair_sensibleandlatent_rb
result = sim_test('heatexchanger_airtoair_sensibleandlatent.rb')
end
def test_heatexchanger_airtoair_sensibleandlatent_py
result = sim_test('heatexchanger_airtoair_sensibleandlatent.py')
end
def test_heatexchanger_desiccant_balancedflow_rb
result = sim_test('heatexchanger_desiccant_balancedflow.rb')
end
def test_heatexchanger_desiccant_balancedflow_py
result = sim_test('heatexchanger_desiccant_balancedflow.py')
end
def test_heatexchanger_desiccant_balancedflow_osm
result = sim_test('heatexchanger_desiccant_balancedflow.osm')
end
def test_heatpump_airtowater_fuelfired_rb
result = sim_test('heatpump_airtowater_fuelfired.rb')
end
def test_heatpump_airtowater_fuelfired_py
result = sim_test('heatpump_airtowater_fuelfired.py')
end
def test_heatpump_airtowater_fuelfired_osm
result = sim_test('heatpump_airtowater_fuelfired.osm')
end
def test_heatpump_hot_water_rb
result = sim_test('heatpump_hot_water.rb')
end
def test_heatpump_hot_water_py
result = sim_test('heatpump_hot_water.py')
end
def test_heatpump_hot_water_osm
result = sim_test('heatpump_hot_water.osm')
end
def test_heatpump_plantloop_eir_rb
result = sim_test('heatpump_plantloop_eir.rb')
end
def test_heatpump_plantloop_eir_py
result = sim_test('heatpump_plantloop_eir.py')
end
def test_heatpump_plantloop_eir_osm
result = sim_test('heatpump_plantloop_eir.osm')
end
def test_heatpump_plantloop_eir_heatrecovery_rb
result = sim_test('heatpump_plantloop_eir_heatrecovery.rb')
end
def test_heatpump_plantloop_eir_heatrecovery_py
result = sim_test('heatpump_plantloop_eir_heatrecovery.py')
end
def test_heatpump_plantloop_eir_heatrecovery_osm
result = sim_test('heatpump_plantloop_eir_heatrecovery.osm')
end
def test_heatpump_varspeed_rb
result = sim_test('heatpump_varspeed.rb')
end
def test_heatpump_varspeed_py
result = sim_test('heatpump_varspeed.py')
end
def test_heatpump_varspeed_osm
result = sim_test('heatpump_varspeed.osm')
end
def test_heatrecovery_chiller_rb
result = sim_test('heatrecovery_chiller.rb')
end
def test_heatrecovery_chiller_py
result = sim_test('heatrecovery_chiller.py')
end
def test_heatrecovery_chiller_osm
result = sim_test('heatrecovery_chiller.osm')
end
def test_hightemprad_rb
result = sim_test('hightemprad.rb')
end
def test_hightemprad_py
result = sim_test('hightemprad.py')
end
def test_hightemprad_osm
result = sim_test('hightemprad.osm')
end
def test_hot_water_rb
result = sim_test('hot_water.rb')
end
def test_hot_water_py