-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcosting.json
More file actions
732 lines (732 loc) · 27.1 KB
/
Copy pathcosting.json
File metadata and controls
732 lines (732 loc) · 27.1 KB
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
{
"costing": {
"documentation": "Costing of all fusion power plant elements"
},
"costing.availability": {
"data_type": "FLT_0D",
"documentation": "Availability fraction of the plant",
"type": "static"
},
"costing.code": {
"data_type": "STRUCTURE",
"documentation": "Generic decription of the code-specific parameters for the code that has produced this IDS",
"full_path": "costing/code",
"lifecycle_status": "active",
"structure_reference": "code"
},
"costing.code.commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/code/commit",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/code/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.library": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of external libraries used by the code that has produced this IDS",
"full_path": "costing/code/library(i1)",
"lifecycle_status": "active",
"maxoccur": "10",
"structure_reference": "library"
},
"costing.code.library[:].commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/code/library(i1)/commit",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.library[:].description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/code/library(i1)/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.library[:].name": {
"data_type": "STR_0D",
"documentation": "Name of software",
"full_path": "costing/code/library(i1)/name",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.library[:].parameters": {
"data_type": "STR_0D",
"documentation": "List of the code specific parameters in XML format",
"full_path": "costing/code/library(i1)/parameters",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.library[:].repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/code/library(i1)/repository",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.library[:].version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/code/library(i1)/version",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.name": {
"data_type": "STR_0D",
"documentation": "Name of software generating IDS",
"full_path": "costing/code/name",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.output_flag": {
"coordinates": [
"equilibrium.time"
],
"data_type": "INT_1D",
"documentation": "Output flag : 0 means the run is successful, other values mean some difficulty has been encountered, the exact meaning is then code specific. Negative values mean the result shall not be used.",
"full_path": "costing/code/output_flag(:)",
"lifecycle_status": "active",
"timebasepath": "/time",
"type": "dynamic"
},
"costing.code.parameters": {
"data_type": "STR_0D",
"documentation": "List of the code specific parameters in XML format",
"full_path": "costing/code/parameters",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/code/repository",
"lifecycle_status": "active",
"type": "constant"
},
"costing.code.version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/code/version",
"lifecycle_status": "active",
"type": "constant"
},
"costing.construction_start_year": {
"data_type": "FLT_0D",
"documentation": "Year that plant construction begins",
"type": "static",
"units": "year"
},
"costing.cost_decommissioning.cost": {
"data_type": "FLT_0D",
"documentation": "Cost to decomission the plant",
"type": "static",
"units": "$M"
},
"costing.cost_decommissioning.system": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of costed systems"
},
"costing.cost_decommissioning.system[:].cost": {
"data_type": "FLT_0D",
"documentation": "Cost to decommission the system",
"type": "static",
"units": "$M"
},
"costing.cost_decommissioning.system[:].name": {
"data_type": "STR_0D",
"documentation": "Name of the system to decommission",
"type": "static"
},
"costing.cost_decommissioning.system[:].subsystem": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of costed subsystems"
},
"costing.cost_decommissioning.system[:].subsystem[:].cost": {
"data_type": "FLT_0D",
"documentation": "Cost to decommission the subsystem",
"type": "static",
"units": "$M"
},
"costing.cost_decommissioning.system[:].subsystem[:].name": {
"data_type": "STR_0D",
"documentation": "Name of the subsystem to decommission",
"type": "static"
},
"costing.cost_direct_capital.cost": {
"data_type": "FLT_0D",
"documentation": "Total direct capital",
"type": "static",
"units": "$M"
},
"costing.cost_direct_capital.system": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of costed systems"
},
"costing.cost_direct_capital.system[:].cost": {
"data_type": "FLT_0D",
"documentation": "Cost of the system",
"type": "static",
"units": "$M"
},
"costing.cost_direct_capital.system[:].name": {
"data_type": "STR_0D",
"documentation": "Name of the system",
"type": "static"
},
"costing.cost_direct_capital.system[:].subsystem": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of costed subsystems"
},
"costing.cost_direct_capital.system[:].subsystem[:].cost": {
"data_type": "FLT_0D",
"documentation": "Cost of the subsystem",
"type": "static",
"units": "$M"
},
"costing.cost_direct_capital.system[:].subsystem[:].name": {
"data_type": "STR_0D",
"documentation": "Name of the subsystem",
"type": "static"
},
"costing.cost_lifetime": {
"data_type": "FLT_0D",
"documentation": "Total cost of fusion power plant",
"type": "static",
"units": "$M"
},
"costing.cost_operations.system": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of costed systems"
},
"costing.cost_operations.system[:].name": {
"data_type": "STR_0D",
"documentation": "Name of the system",
"type": "static"
},
"costing.cost_operations.system[:].subsystem": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "List of costed subsystems"
},
"costing.cost_operations.system[:].subsystem[:].name": {
"data_type": "STR_0D",
"documentation": "Name of the subsystem",
"type": "static"
},
"costing.cost_operations.system[:].subsystem[:].yearly_cost": {
"data_type": "FLT_0D",
"documentation": "Cost of the subsystem per year",
"type": "static",
"units": "$M/year"
},
"costing.cost_operations.system[:].yearly_cost": {
"data_type": "FLT_0D",
"documentation": "Cost of system per year",
"type": "static",
"units": "$M/year"
},
"costing.cost_operations.yearly_cost": {
"data_type": "FLT_0D",
"documentation": "Anual cost to operate the plant",
"type": "static",
"units": "$M/year"
},
"costing.future.inflation_rate": {
"data_type": "FLT_0D",
"documentation": "Predicted average rate of future inflation",
"type": "static"
},
"costing.future.learning.hts.learning_rate": {
"data_type": "FLT_0D",
"documentation": "Learning rate for ReBCO technology production",
"type": "static"
},
"costing.future.learning.hts.production_increase": {
"data_type": "FLT_0D",
"documentation": "Factor by which production of ReBCO multiplies",
"type": "static"
},
"costing.ids_properties": {
"data_type": "STRUCTURE",
"documentation": "Interface Data Structure properties. This element identifies the node above as an IDS",
"full_path": "costing/ids_properties",
"lifecycle_status": "active",
"structure_reference": "ids_properties"
},
"costing.ids_properties.comment": {
"data_type": "STR_0D",
"documentation": "Any comment describing the content of this IDS",
"full_path": "costing/ids_properties/comment",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.creation_date": {
"data_type": "STR_0D",
"documentation": "Date at which this data has been produced",
"full_path": "costing/ids_properties/creation_date",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.homogeneous_time": {
"data_type": "INT_0D",
"documentation": "This node must be filled (with 0, 1, or 2) for the IDS to be valid. If 1, the time of this IDS is homogeneous, i.e. the time values for this IDS are stored in the time node just below the root of this IDS. If 0, the time values are stored in the various time fields at lower levels in the tree. In the case only constant or static nodes are filled within the IDS, homogeneous_time must be set to 2",
"full_path": "costing/ids_properties/homogeneous_time",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.name": {
"data_type": "STR_0D",
"documentation": "User-defined name for this IDS occurrence",
"full_path": "costing/ids_properties/name",
"introduced_after_version": "3.39.0",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.occurrence": {
"data_type": "INT_0D",
"description": "occurrence number [NOTE: this field only exists in OMAS and is not part of the ITER PDM]",
"full_path": "costing.ids_properties.occurrence"
},
"costing.ids_properties.occurrence_type": {
"data_type": "STRUCTURE",
"doc_identifier": "utilities/occurrence_type_identifier.xml",
"documentation": "Type of data contained in this occurrence\n1) reconstruction : Equilibrium reconstruction\n2) prediction_fixed : Equilibrium prediction, fixed boundary\n3) prediction_free : Equilibrium prediction, free boundary\n4) mapping : Used for mapping costing results from one grid type / resolution to another, or for including variables not present in the first set such as the calculation of magnetic field of other derived parameters",
"full_path": "costing/ids_properties/occurrence_type",
"introduced_after_version": "3.39.0",
"lifecycle_status": "active",
"structure_reference": "identifier"
},
"costing.ids_properties.occurrence_type.description": {
"data_type": "STR_0D",
"documentation": "Verbose description",
"full_path": "costing/ids_properties/occurrence_type/description",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.occurrence_type.index": {
"data_type": "INT_0D",
"documentation": "Integer identifier (enumeration index within a list). Private identifier values must be indicated by a negative index.",
"full_path": "costing/ids_properties/occurrence_type/index",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.occurrence_type.name": {
"data_type": "STR_0D",
"documentation": "Short string identifier",
"full_path": "costing/ids_properties/occurrence_type/name",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.plugins": {
"data_type": "STRUCTURE",
"documentation": "Information about the plugins used to write/read this IDS. This structure is filled automatically by the Access Layer at GET/PUT time, no need to fill it via a user program.",
"full_path": "costing/ids_properties/plugins",
"introduced_after_version": "3.38.1",
"lifecycle_status": "alpha",
"lifecycle_version": "3.39.0",
"structure_reference": "ids_plugins"
},
"costing.ids_properties.plugins.infrastructure_get": {
"data_type": "STRUCTURE",
"documentation": "Plugin infrastructure used to GET the data",
"full_path": "costing/ids_properties/plugins/infrastructure_get",
"lifecycle_status": "alpha",
"structure_reference": "code_constant_noparam"
},
"costing.ids_properties.plugins.infrastructure_get.commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/ids_properties/plugins/infrastructure_get/commit",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_get.description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/ids_properties/plugins/infrastructure_get/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_get.name": {
"data_type": "STR_0D",
"documentation": "Name of software used",
"full_path": "costing/ids_properties/plugins/infrastructure_get/name",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_get.repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/ids_properties/plugins/infrastructure_get/repository",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_get.version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/ids_properties/plugins/infrastructure_get/version",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_put": {
"data_type": "STRUCTURE",
"documentation": "Plugin infrastructure used to PUT the data",
"full_path": "costing/ids_properties/plugins/infrastructure_put",
"lifecycle_status": "alpha",
"structure_reference": "code_constant_noparam"
},
"costing.ids_properties.plugins.infrastructure_put.commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/ids_properties/plugins/infrastructure_put/commit",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_put.description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/ids_properties/plugins/infrastructure_put/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_put.name": {
"data_type": "STR_0D",
"documentation": "Name of software used",
"full_path": "costing/ids_properties/plugins/infrastructure_put/name",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_put.repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/ids_properties/plugins/infrastructure_put/repository",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.infrastructure_put.version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/ids_properties/plugins/infrastructure_put/version",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "Set of IDS nodes for which a plugin has been applied",
"full_path": "costing/ids_properties/plugins/node(i1)",
"lifecycle_status": "alpha",
"maxoccur": "20",
"structure_reference": "ids_plugins_node",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].get_operation": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "Plugins actually used to read back a node (potentially, multiple plugins can be applied, listed in reverse order of application). This information is filled by the plugin infrastructure during the GET operation.",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)",
"lifecycle_status": "alpha",
"maxoccur": "10",
"structure_reference": "code_constant"
},
"costing.ids_properties.plugins.node[:].get_operation[:].commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)/commit",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].get_operation[:].description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].get_operation[:].name": {
"data_type": "STR_0D",
"documentation": "Name of software used",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)/name",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].get_operation[:].parameters": {
"data_type": "STR_0D",
"documentation": "List of the code specific parameters in XML format",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)/parameters",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].get_operation[:].repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)/repository",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].get_operation[:].version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/ids_properties/plugins/node(i1)/get_operation(i2)/version",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].path": {
"data_type": "STR_0D",
"documentation": "Path of the node within the IDS, following the syntax given in the link below. If empty, means the plugin applies to the whole IDS.",
"full_path": "costing/ids_properties/plugins/node(i1)/path",
"lifecycle_status": "alpha",
"type": "constant",
"url": "utilities/IDS-path-syntax.md"
},
"costing.ids_properties.plugins.node[:].put_operation": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "Plugins used to PUT a node (potentially, multiple plugins can be applied, if so they are listed by order of application)",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)",
"lifecycle_status": "alpha",
"maxoccur": "10",
"structure_reference": "code_constant"
},
"costing.ids_properties.plugins.node[:].put_operation[:].commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)/commit",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].put_operation[:].description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].put_operation[:].name": {
"data_type": "STR_0D",
"documentation": "Name of software used",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)/name",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].put_operation[:].parameters": {
"data_type": "STR_0D",
"documentation": "List of the code specific parameters in XML format",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)/parameters",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].put_operation[:].repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)/repository",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].put_operation[:].version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/ids_properties/plugins/node(i1)/put_operation(i2)/version",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].readback": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "Plugins to be used to read back a node (potentially, multiple plugins can be applied, listed in reverse order of application) ",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)",
"lifecycle_status": "alpha",
"maxoccur": "10",
"structure_reference": "code_constant"
},
"costing.ids_properties.plugins.node[:].readback[:].commit": {
"data_type": "STR_0D",
"documentation": "Unique commit reference of software",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)/commit",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].readback[:].description": {
"data_type": "STR_0D",
"documentation": "Short description of the software (type, purpose)",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)/description",
"introduced_after_version": "3.38.1",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].readback[:].name": {
"data_type": "STR_0D",
"documentation": "Name of software used",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)/name",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].readback[:].parameters": {
"data_type": "STR_0D",
"documentation": "List of the code specific parameters in XML format",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)/parameters",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].readback[:].repository": {
"data_type": "STR_0D",
"documentation": "URL of software repository",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)/repository",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.plugins.node[:].readback[:].version": {
"data_type": "STR_0D",
"documentation": "Unique version (tag) of software",
"full_path": "costing/ids_properties/plugins/node(i1)/readback(i2)/version",
"lifecycle_status": "alpha",
"type": "constant"
},
"costing.ids_properties.provenance": {
"data_type": "STRUCTURE",
"documentation": "Provenance information about this IDS",
"full_path": "costing/ids_properties/provenance",
"lifecycle_status": "alpha",
"lifecycle_version": "3.34.0",
"structure_reference": "ids_provenance"
},
"costing.ids_properties.provenance.node": {
"coordinates": [
"1...N"
],
"data_type": "STRUCT_ARRAY",
"documentation": "Set of IDS nodes for which the provenance is given. The provenance information applies to the whole structure below the IDS node. For documenting provenance information for the whole IDS, set the size of this array of structure to 1 and leave the child \"path\" node empty",
"full_path": "costing/ids_properties/provenance/node(i1)",
"lifecycle_status": "alpha",
"maxoccur": "20",
"structure_reference": "ids_provenance_node",
"type": "constant"
},
"costing.ids_properties.provenance.node[:].path": {
"data_type": "STR_0D",
"documentation": "Path of the node within the IDS, following the syntax given in the link below. If empty, means the provenance information applies to the whole IDS.",
"full_path": "costing/ids_properties/provenance/node(i1)/path",
"lifecycle_status": "alpha",
"type": "constant",
"url": "utilities/IDS-path-syntax.md"
},
"costing.ids_properties.provenance.node[:].sources": {
"coordinates": [
"1...N"
],
"data_type": "STR_1D",
"documentation": "List of sources used to import or calculate this node, identified as explained below. In case the node is the result of of a calculation / data processing, the source is an input to the process described in the \"code\" structure at the root of the IDS. The source can be an IDS (identified by a URI or a persitent identifier, see syntax in the link below) or non-IDS data imported directly from an non-IMAS database (identified by the command used to import the source, or the persistent identifier of the data source). Often data are obtained by a chain of processes, however only the last process input are recorded here. The full chain of provenance has then to be reconstructed recursively from the provenance information contained in the data sources.",
"full_path": "costing/ids_properties/provenance/node(i1)/sources(:)",
"lifecycle_status": "alpha",
"type": "constant",
"url": "utilities/IMAS-URI-scheme.md"
},
"costing.ids_properties.provider": {
"data_type": "STR_0D",
"documentation": "Name of the person in charge of producing this data",
"full_path": "costing/ids_properties/provider",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.source": {
"data_type": "STR_0D",
"documentation": "Source of the data (any comment describing the origin of the data : code, path to diagnostic signals, processing method, ...). Superseeded by the new provenance structure.",
"full_path": "costing/ids_properties/source",
"lifecycle_status": "obsolescent",
"lifecycle_version": "3.34.0",
"type": "constant"
},
"costing.ids_properties.version_put": {
"data_type": "STRUCTURE",
"documentation": "Version of the access layer package used to PUT this IDS",
"full_path": "costing/ids_properties/version_put",
"lifecycle_status": "active",
"structure_reference": "version_dd_al"
},
"costing.ids_properties.version_put.access_layer": {
"data_type": "STR_0D",
"documentation": "Version of Access Layer used to PUT this IDS",
"full_path": "costing/ids_properties/version_put/access_layer",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.version_put.access_layer_language": {
"data_type": "STR_0D",
"documentation": "Programming language of the Access Layer high level API used to PUT this IDS",
"full_path": "costing/ids_properties/version_put/access_layer_language",
"lifecycle_status": "active",
"type": "constant"
},
"costing.ids_properties.version_put.data_dictionary": {
"data_type": "STR_0D",
"documentation": "Version of Data Dictionary used to PUT this IDS",
"full_path": "costing/ids_properties/version_put/data_dictionary",
"lifecycle_status": "active",
"type": "constant"
},
"costing.levelized_CoE": {
"data_type": "FLT_0D",
"documentation": "Levelized cost of electiricity (total cost / total electricity generated)",
"type": "static",
"units": "$/kWh"
},
"costing.plant_lifetime": {
"data_type": "FLT_0D",
"documentation": "Lifetime of the plant",
"type": "static",
"units": "year"
},
"costing.time": {
"units": "s",
"coordinates": [
"1...N"
],
"lifecycle_status": "active",
"data_type": "FLT_1D_TYPE",
"full_path": "costing/time(:)",
"timebasepath": "time",
"documentation": "Generic time",
"type": "dynamic"
}
}