-
Notifications
You must be signed in to change notification settings - Fork 0
/
cea-grasshopper.json
3371 lines (3371 loc) · 146 KB
/
cea-grasshopper.json
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
{
"name": "cea-grasshopper",
"author": "daren-thomas",
"version": "0.1",
"components": [
{
"id": "a421ddc7-5429-4b42-936c-36c87a3c484d",
"class-name": "ArchetypesMapper",
"abbreviation": "archetypes-mapper",
"name": "Archetypes Mapper",
"description": "Assign building properties and systems types from the Archetypes DataBase",
"category": "City Energy Analyst",
"subcategory": "Data Management",
"icon": "icons/archetypes-mapper.png",
"main-module": "cea_scripts",
"main-function": "archetypes_mapper",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "archetypes-mapper:input-databases",
"description": "List of inputs to map from your databases to your new/existing scenario",
"nick-name": "input-databases",
"default": "comfort, architecture, air-conditioning, internal-loads, supply, schedules",
"access": "item"
},
{
"type": "string",
"name": "archetypes-mapper:buildings",
"description": "List of buildings to create schedules for (leave blank to consider all).",
"nick-name": "buildings",
"default": "",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "e66bdf31-8967-404a-8a15-368ecb1afa8e",
"class-name": "WeatherHelper",
"abbreviation": "weather-helper",
"name": "Weather helper",
"description": "Sets the weather file to use for simulation for a scenario",
"category": "City Energy Analyst",
"subcategory": "Data Management",
"icon": "icons/weather-helper.png",
"main-module": "cea_scripts",
"main-function": "weather_helper",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "weather-helper:weather",
"description": "Either a full path to a weather file or the name of one of the weather files contained within the CEA.",
"nick-name": "weather",
"default": "",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "fb8f613c-8817-4f2a-b6d6-9f4afe172c06",
"class-name": "SurroundingsHelper",
"abbreviation": "surroundings-helper",
"name": "Surroundings helper",
"description": "Query geometry of surrounding buildings from Open Street Maps",
"category": "City Energy Analyst",
"subcategory": "Data Management",
"icon": "icons/surroundings-helper.png",
"main-module": "cea_scripts",
"main-function": "surroundings_helper",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "surroundings-helper:buffer",
"description": "Perimeter buffer length to the surrounding area (in meters).",
"nick-name": "buffer",
"default": "50",
"access": "item"
},
{
"type": "string",
"name": "surroundings-helper:height-ag",
"description": "Average height of buildings within the surroundings (in meters). Leave it blank to obtain from Open Street Maps (less accurate).",
"nick-name": "height-ag",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "surroundings-helper:floors-ag",
"description": "Average number of floors above ground of all buildings within the surroundings. Leave it blank to obtain from Open Street Maps (less accurate).",
"nick-name": "floors-ag",
"default": "",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "c42ebdbd-d485-44d4-bf9c-79cf6b172481",
"class-name": "TerrainHelper",
"abbreviation": "terrain-helper",
"name": "Terrain helper",
"description": "Query topography with a fixed elevation",
"category": "City Energy Analyst",
"subcategory": "Data Management",
"icon": "icons/terrain-helper.png",
"main-module": "cea_scripts",
"main-function": "terrain_helper",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "terrain-helper:grid-size",
"description": "Grid size for the terrain file (do not use less than 10 meters).",
"nick-name": "grid-size",
"default": "30",
"access": "item"
},
{
"type": "string",
"name": "terrain-helper:elevation",
"description": "Fixed elevation of the terrain (in meters).",
"nick-name": "elevation",
"default": "1",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "aa9567b6-afbf-4f21-93a8-902f32bb7154",
"class-name": "StreetsHelper",
"abbreviation": "streets-helper",
"name": "Streets helper",
"description": "Query streets geometry from Open Street Maps",
"category": "City Energy Analyst",
"subcategory": "Data Management",
"icon": "icons/streets-helper.png",
"main-module": "cea_scripts",
"main-function": "streets_helper",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "streets-helper:bbox",
"description": "The bounding box of the surroundings using the surroundings shapefile (leave blank) or a list of coordinates (bbox = min Longitude , min Latitude , max Longitude , max Latitude)",
"nick-name": "bbox",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "streets-helper:streets",
"description": "The type of streets to gather.",
"nick-name": "streets",
"default": "all_private",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "5e682c1a-c39f-471d-918a-493d2a095017",
"class-name": "Radiation",
"abbreviation": "radiation",
"name": "Building Solar radiation",
"description": "Use Daysim to calculate solar radiation for a scenario",
"category": "City Energy Analyst",
"subcategory": "Demand forecasting",
"icon": "icons/radiation.png",
"main-module": "cea_scripts",
"main-function": "radiation",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "general:multiprocessing",
"description": "Multiprocessing (if available) for quicker calculation.",
"nick-name": "multiprocessing",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "general:number-of-cpus-to-keep-free",
"description": "Limits the maximum number of processors to use for multiprocessing. By default, one CPU is kept free.",
"nick-name": "number-of-cpus-to-keep-free",
"default": "1",
"access": "item"
},
{
"type": "string",
"name": "general:debug",
"description": "Enable debugging-specific behaviors.",
"nick-name": "debug",
"default": "false",
"access": "item"
},
{
"type": "string",
"name": "radiation:buildings",
"description": "List of buildings considered for the radiation simulation (to simulate all buildings leave blank).",
"nick-name": "buildings",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "radiation:use-latest-daysim-binaries",
"description": "Set true to use latest Daysim binaries which is faster and able to run larger sites, but it produces non-deterministic results. Set false to use the old binary for reproducibility.",
"nick-name": "use-latest-daysim-binaries",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "radiation:albedo",
"description": "Albedo of the terrain.",
"nick-name": "albedo",
"default": "0.2",
"access": "item"
},
{
"type": "string",
"name": "radiation:roof-grid",
"description": "Grid resolution for the roof surfaces. Use 200 (maximum) if you want only one point per surface.",
"nick-name": "roof-grid",
"default": "10",
"access": "item"
},
{
"type": "string",
"name": "radiation:walls-grid",
"description": "Grid resolution for wall surfaces. Use 200 (maximum) if you want only one point per surface.",
"nick-name": "walls-grid",
"default": "200",
"access": "item"
},
{
"type": "string",
"name": "radiation:zone-geometry",
"description": "Simplification level of the zone geometry (1 is the lowest).",
"nick-name": "zone-geometry",
"default": "2",
"access": "item"
},
{
"type": "string",
"name": "radiation:surrounding-geometry",
"description": "Simplification level of the surroundings geometry (1 is the lowest).",
"nick-name": "surrounding-geometry",
"default": "5",
"access": "item"
},
{
"type": "string",
"name": "radiation:consider-floors",
"description": "True if floors are considered in the geometry.",
"nick-name": "consider-floors",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "radiation:consider-intersections",
"description": "True if intersecting walls between buildings are considered (this increases simulation time in x5), but can give more precise estimates.",
"nick-name": "consider-intersections",
"default": "false",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-ab",
"description": "Number of ambient bounces.",
"nick-name": "rad-ab",
"default": "4",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-ad",
"description": "Number of ambient divisions.",
"nick-name": "rad-ad",
"default": "512",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-as",
"description": "Number of ambient super-samples.",
"nick-name": "rad-as",
"default": "32",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-ar",
"description": "Ambient resolution.",
"nick-name": "rad-ar",
"default": "20",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-aa",
"description": "Ambient accuracy.",
"nick-name": "rad-aa",
"default": "0.15",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-lr",
"description": "Maximum number of reflections.",
"nick-name": "rad-lr",
"default": "8",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-st",
"description": "Specular sampling threshold.",
"nick-name": "rad-st",
"default": "0.5",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-sj",
"description": "Specular sampling jitter.",
"nick-name": "rad-sj",
"default": "0.7",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-lw",
"description": "Minimum weight of each ray.",
"nick-name": "rad-lw",
"default": "0.05",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-dj",
"description": "Direct jitter.",
"nick-name": "rad-dj",
"default": "0.7",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-ds",
"description": "Direct sampling ration.",
"nick-name": "rad-ds",
"default": "0",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-dr",
"description": "Number of relays from secondary sources.",
"nick-name": "rad-dr",
"default": "0",
"access": "item"
},
{
"type": "string",
"name": "radiation:rad-dp",
"description": "Secondary source pre-sampling density.",
"nick-name": "rad-dp",
"default": "32",
"access": "item"
},
{
"type": "string",
"name": "radiation:daysim-bin-directory",
"description": "Path to the Daysim binaries. This path will be used instead of the default CEA Dependencies.",
"nick-name": "daysim-bin-directory",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "radiation:n-buildings-in-chunk",
"description": "Minimum number of building groups (chunks) to be sent for multiprocessing.",
"nick-name": "n-buildings-in-chunk",
"default": "100",
"access": "item"
},
{
"type": "string",
"name": "radiation:write-sensor-data",
"description": "Write also data per point in the grid. (Only needed to run solar technologies). False saves space in disk",
"nick-name": "write-sensor-data",
"default": "true",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "6ce3458c-21c6-44d4-81a5-39ee48c6d32e",
"class-name": "ScheduleMaker",
"abbreviation": "schedule-maker",
"name": "Building Schedules",
"description": "Use CEA models and input schedules to estimate the occupancy profile of buildings",
"category": "City Energy Analyst",
"subcategory": "Demand forecasting",
"icon": "icons/schedule-maker.png",
"main-module": "cea_scripts",
"main-function": "schedule_maker",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "general:multiprocessing",
"description": "Multiprocessing (if available) for quicker calculation.",
"nick-name": "multiprocessing",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "general:number-of-cpus-to-keep-free",
"description": "Limits the maximum number of processors to use for multiprocessing. By default, one CPU is kept free.",
"nick-name": "number-of-cpus-to-keep-free",
"default": "1",
"access": "item"
},
{
"type": "string",
"name": "general:debug",
"description": "Enable debugging-specific behaviors.",
"nick-name": "debug",
"default": "false",
"access": "item"
},
{
"type": "string",
"name": "schedule-maker:buildings",
"description": "List of buildings considered for the schedule model (to simulate all buildings leave blank).",
"nick-name": "buildings",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "schedule-maker:schedule-model",
"description": "Type of schedule model to use (stochastic or deterministic)",
"nick-name": "schedule-model",
"default": "deterministic",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "9d50d3c0-7e40-470e-8eb9-edf769ed53cd",
"class-name": "Demand",
"abbreviation": "demand",
"name": "Building Energy demand",
"description": "Calculate the Demand",
"category": "City Energy Analyst",
"subcategory": "Demand forecasting",
"icon": "icons/demand.png",
"main-module": "cea_scripts",
"main-function": "demand",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "general:multiprocessing",
"description": "Multiprocessing (if available) for quicker calculation.",
"nick-name": "multiprocessing",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "general:number-of-cpus-to-keep-free",
"description": "Limits the maximum number of processors to use for multiprocessing. By default, one CPU is kept free.",
"nick-name": "number-of-cpus-to-keep-free",
"default": "1",
"access": "item"
},
{
"type": "string",
"name": "general:debug",
"description": "Enable debugging-specific behaviors.",
"nick-name": "debug",
"default": "false",
"access": "item"
},
{
"type": "string",
"name": "demand:buildings",
"description": "List of buildings considered for the demand simulation (to simulate all buildings leave blank).",
"nick-name": "buildings",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "demand:loads-output",
"description": "List of loads output by the demand simulation (to simulate all load types in demand_writer, leave blank).",
"nick-name": "loads-output",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "demand:massflows-output",
"description": "List of mass flow rates output by the demand simulation (to simulate all system mass flow rates in demand_writer, leave blank).",
"nick-name": "massflows-output",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "demand:temperatures-output",
"description": "List of temperatures output by the demand simulation (to simulate all temperatures in demand_writer, leave blank).",
"nick-name": "temperatures-output",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "demand:resolution-output",
"description": "Time step resolution of the demand simulation (hourly or monthly).",
"nick-name": "resolution-output",
"default": "hourly",
"access": "item"
},
{
"type": "string",
"name": "demand:use-dynamic-infiltration-calculation",
"description": "True if dynamic infiltration calculations are considered (slower run times!).",
"nick-name": "use-dynamic-infiltration-calculation",
"default": "false",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "415729cc-8dfe-4e26-9626-d9f1e6319917",
"class-name": "Emissions",
"abbreviation": "emissions",
"name": "Emissions",
"description": "Calculate emissions and primary energy due to building, construction, operation, dismantling and induced mobility",
"category": "City Energy Analyst",
"subcategory": "Life Cycle Analysis",
"icon": "icons/emissions.png",
"main-module": "cea_scripts",
"main-function": "emissions",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "emissions:year-to-calculate",
"description": "Defines the time period (year-to-calculate - year_built or year_renovated) over which embodied emissions are calculated. If greater than 60 years, embodied emissions are not considered.",
"nick-name": "year-to-calculate",
"default": "2020",
"access": "item"
},
{
"type": "string",
"name": "emissions:embodied",
"description": "Estimate emissions due to construction and dismantling of buidlings (allocated according to the age input database, LCA database and building geometry)",
"nick-name": "embodied",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "emissions:operation",
"description": "Estimate emissions due to supply systems operation (allocated according to the supply-systems input database)",
"nick-name": "operation",
"default": "true",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "35b30813-7a0c-4fc1-bbff-692ed8cd7f9a",
"class-name": "SystemCosts",
"abbreviation": "system-costs",
"name": "System Costs",
"description": "Calculate costs due to supply systems",
"category": "City Energy Analyst",
"subcategory": "Life Cycle Analysis",
"icon": "icons/system-costs.png",
"main-module": "cea_scripts",
"main-function": "system_costs",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "costs:capital",
"description": "Estimate Capital costs (total and annualized) due to supply systems (allocated according to the supply-systems input database)",
"nick-name": "capital",
"default": "true",
"access": "item"
},
{
"type": "string",
"name": "costs:operational",
"description": "Estimate Operational costs (variable and fixed) due to supply systems operation (allocated according to the supply-systems input database)",
"nick-name": "operational",
"default": "true",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "df60b6e8-d1ea-4431-a0a6-e21520db2c10",
"class-name": "ShallowGeothermalPotential",
"abbreviation": "shallow-geothermal-potential",
"name": "Shallow geothermal potential",
"description": "Calculate the heat extracted from a geothermal probes (up to 50 m length)",
"category": "City Energy Analyst",
"subcategory": "Energy potentials",
"icon": "icons/shallow-geothermal-potential.png",
"main-module": "cea_scripts",
"main-function": "shallow_geothermal_potential",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "shallow-geothermal:buildings-available",
"description": "List of buildings whose footprint can be used for shallow geothermal exploration. Leave it blank to get all buildings area",
"nick-name": "buildings-available",
"default": "",
"access": "item"
},
{
"type": "string",
"name": "shallow-geothermal:extra-area-available",
"description": "Add extra area where shallow geothermal probes can be installed in m2.",
"nick-name": "extra-area-available",
"default": "0.0",
"access": "item"
},
{
"type": "string",
"name": "shallow-geothermal:average-probe-depth",
"description": "Average depth of geothermal probes in m.",
"nick-name": "average-probe-depth",
"default": "10",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "f52dfce8-03a9-4a96-af05-33ba43c35100",
"class-name": "WaterBodyPotential",
"abbreviation": "water-body-potential",
"name": "Water body potential",
"description": "Calculate the heat extracted from a lake or a water body",
"category": "City Energy Analyst",
"subcategory": "Energy potentials",
"icon": "icons/water-body-potential.png",
"main-module": "cea_scripts",
"main-function": "water_body_potential",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"
},
{
"type": "string",
"name": "water-body:max-water-volume-withdrawal",
"description": "max water volume that can be withdrawn in m3/h",
"nick-name": "max-water-volume-withdrawal",
"default": "1000",
"access": "item"
},
{
"type": "string",
"name": "water-body:max-delta-temperature-withdrawal",
"description": "max delta of temperature that can be withdrawn in C",
"nick-name": "max-delta-temperature-withdrawal",
"default": "8",
"access": "item"
},
{
"type": "string",
"name": "water-body:temperature-max",
"description": "maximum temperature of the water body during the year at the extraction point in C",
"nick-name": "temperature-max",
"default": "6",
"access": "item"
},
{
"type": "string",
"name": "water-body:temperature-min",
"description": "= average temperature of the water body during the year at the extraction point (it can be 30m) in C",
"nick-name": "temperature-min",
"default": "4",
"access": "item"
}
],
"outputs": [
{
"type": "boolean",
"name": "continue",
"description": "This is set to true if component successfully ran and start was set to true",
"nick-name": "continue"
}
]
},
{
"id": "4af79d42-e907-4109-9f8f-0d8c297f26a4",
"class-name": "PhotovoltaicThermal",
"abbreviation": "photovoltaic-thermal",
"name": "Photovoltaic-thermal Panels",
"description": "Calculate electricity & heat production from photovoltaic / thermal technologies",
"category": "City Energy Analyst",
"subcategory": "Energy potentials",
"icon": "icons/photovoltaic-thermal.png",
"main-module": "cea_scripts",
"main-function": "photovoltaic_thermal",
"use-kwargs": true,
"inputs": [
{
"type": "boolean",
"name": "start",
"description": "Set this to true to start computation",
"default": false,
"nick-name": "start"
},
{
"type": "string",
"name": "general:scenario",
"description": "Select the scenario you're working on.",
"nick-name": "scenario",
"default": "{general:project}/{general:scenario-name}",
"access": "item"