-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema_v_0.0.3.json
More file actions
672 lines (672 loc) · 25.1 KB
/
schema_v_0.0.3.json
File metadata and controls
672 lines (672 loc) · 25.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Standard Flowsheet Format (SFF)",
"version": "0.0.3",
"description": "A standardized, machine-readable representation of a process flowsheet designed for interoperability and data exchange. It represents the process as a directed graph with rich data attached to both nodes (units) and edges (streams).",
"type": "object",
"properties": {
"metadata": {
"description": "Information about the source, context, and version of the flowsheet.",
"type": "object",
"properties": {
"sff_version": {
"type": "string",
"description": "Version of the SFF schema used, in semantic versioning notation; e.g., '1.0.0'."
},
"TEA_currency": {
"type": "string",
"description": "Currency used to report cost results.",
"default": "USD"
},
"TEA_year": {
"type": "number",
"description": "TEA year used to report cost results."
},
"source_doi": {
"type": "string",
"description": "Digital Object Identifier (DOI) of the source publication, if any."
},
"feedstocks": {
"type": "array",
"description": "Feedstock material streams for this flowsheet (distinct from raw material streams).",
"items": {
"type": "object",
"properties": {
"display_name": { "type": "string", "description": "Human-interpretable display name for this stream." },
"stream_id": { "type": "string", "description": "Stream ID as used in the rest of this flowsheet." }
},
"required": ["stream_id"]
}
},
"products": {
"type": "array",
"description": "Product and co-product material streams for this flowsheet (distinct from waste streams).",
"items": {
"type": "object",
"properties": {
"display_name": { "type": "string", "description": "Human-interpretable display name for this stream." },
"stream_id": { "type": "string", "description": "Stream ID as used in the rest of this flowsheet." }
},
"required": ["stream_id"]
}
},
"microorganisms": {
"type": "string",
"description": "Microorganisms used in this flowsheet for conversions, if applicable."
},
"process_title": {
"type": "string",
"description": "A descriptive title for the process."
},
"process_simulator": {
"type": "object",
"description": "The process simulator in which this flowsheet was originally modeled.",
"properties": {
"name": {
"type": "string",
"description": "Name of the process simulator."
},
"version": {
"type": "string",
"description": "Version number of the process simulator."
}
},
"required": [
"name",
"version"
]
},
"flowsheet_designers": {
"type": "string",
"description": "Name(s) of the authors who designed this flowsheet."
},
"relevant_patents": {
"type": "array",
"description": "Any patents associated with this flowsheet.",
"items": {
"type": "object",
"properties": {
"label": { "type": "string", "description": "Patent number or title." },
"url": { "type": "string", "description": "Web link to the patent or application." }
},
"required": ["label"]
}
}
},
"required": [
"sff_version",
"TEA_year",
"process_simulator",
"feedstocks",
"products"
],
"additionalProperties": {
"type": "string"
}
},
"units": {
"description": "An array of all unit operations, representing the nodes of the process graph.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for this unit operation."
},
"unit_type": {
"type": "string",
"description": "A short description of the type of unit operation (e.g., 'Distillation', 'Solids centrifugation')."
},
"design_input_specs": {
"type": "object",
"description": "Design input specifications for the unit operation. If provided, these specifications -- combined with the provided compositions of streams entering this unit operation and the method described in 'design_simulation_method' -- should be sufficient to generate all design results, cost results, utility results, and compositions of all streams effluent from this unit operation."
},
"design_simulation_method": {
"type": "string",
"description": "Design and simulation method for the unit operation, (e.g., for distillation, this could be 'McCabe-Thiele', 'Fenske-Underwood-Gilliland', or 'MESH'). If provided, this method -- combined with the provided 'design_input_specs' and compositions of streams entering this unit operation -- should be sufficient to generate all design results, cost results, utility results, and compositions of all streams effluent from this unit operation."
},
"thermo_property_package": {
"type": "object",
"description": "A thermodynamic property package, with qualitative descriptions of property estimation methods.",
"properties": {
"id": {
"type": "string"
},
"mixture": {
"type": "string",
"description": "Method for computing mixture properties (e.g., 'ideal mixture').",
"default": "Ideal"
},
"gamma": {
"type": "string",
"description": "Method for computing activity coefficients (e.g., 'UNIFAC').",
"default": "Ideal"
},
"phi": {
"type": "string",
"description": "Method for computing fugacity coefficients (e.g., 'Ideal').",
"default": "Ideal"
},
"PCF": {
"type": "string",
"description": "Method for computing Poynting correction factors (e.g., 'None').",
"default": "None"
}
},
"additionalProperties": {
"type": "string"
}
},
"reactions": {
"type": "array",
"description": "Reactions occurring in this unit operation, each with the index (determining the order in which reactions occur, with identical index for parallel reactions), conversion, the reactant for conversion, and either an equation string based on the IDs or a stoichiometry vector/object based on the indices in the 'chemicals' object.",
"items": {
"type": "object",
"properties": {
"index": {
"type": "integer"
},
"equation": {
"type": "string"
},
"reactant": {
"type": "string"
},
"conversion": {
"type": "number"
},
"stoichiometry": {
"type": ["array", "object"],
"description": "An array of reaction stoichiometries ordered based on the indices in the 'chemicals' object, OR an object with keys corresponding to chemical indices or IDs and values corresponding to stoichiometries. (If the stoichiometry vector is lengthy, consider using the object format for brevity.)"
}
}
}
},
"design_results": {
"type": "object",
"description": "Design results for this unit operation. This object, combined with design_input_specs, should provide a full design description for this unit operation (to the highest level of detail modeled)."
},
"purchase_costs": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "Equipment purchase cost results for this unit operation. These may be for the entire unit operation or for individual unit operations (depending on the level of detail modeled)."
},
"installed_costs": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "Equipment installed (purchase + installation) cost results for this unit operation. These may be for the entire unit operation or for individual unit operations (depending on the level of detail modeled)."
},
"utility_consumption_results": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "Heating, cooling, and power utility demand results for this unit operation. These must refer to the same utility IDs as those detailed in the heat_utilities or power_utilities properties for this flowsheet."
},
"utility_production_results": {
"type": "object",
"additionalProperties": {
"type": "number"
},
"description": "Heating, cooling, and power utility production results for this unit operation. These must refer to the same utility IDs as those detailed in the heat_utilities or power_utilities properties for this flowsheet."
}
},
"required": [
"id",
"unit_type"
],
"additionalProperties": false
}
},
"streams": {
"description": "An array of process streams that connect the units, representing the edges of the process graph.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for this stream."
},
"source_unit_id": {
"type": "string",
"description": "The ID of the unit operation from which this stream originates."
},
"sink_unit_id": {
"type": "string",
"description": "The ID of the unit operation that this stream enters."
},
"stream_description": {
"type": "string",
"description": "A qualitative description of the stream from the perspective of either the source (e.g., 'Centrifugate') or sink unit operation (e.g., 'Make-up solvent')."
},
"price": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "$/kg"
}
}
},
"stream_properties": {
"description": "Structured object specifying the properties of the stream.",
"type": "object",
"properties": {
"total_mass_flow": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "kg/h"
}
}
},
"total_volumetric_flow": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "m3/h"
}
}
},
"total_molar_flow": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "kmol/h"
}
}
},
"temperature": {
"type": "object",
"properties": {
"value": {
"type": "number",
"minimum": 0
},
"units": {
"type": "string",
"default": "K"
}
}
},
"pressure": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "Pa"
}
}
},
"composition": {
"description": "An array detailing the chemical components of the stream.",
"type": "array",
"items": {
"type": "object",
"properties": {
"phase": {
"type": "string",
"default": "l"
},
"component_name": {
"type": "string"
},
"mol_fraction": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"required": [
"component_name",
"mol_fraction"
]
}
}
},
"required": [
"total_molar_flow",
"temperature",
"pressure"
]
}
},
"required": [
"id",
"source_unit_id",
"sink_unit_id"
]
}
},
"chemicals": {
"description": "An array of all chemicals involved in this process flowsheet.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for this chemical, used to reference this chemical in the 'composition' property of stream objects."
},
"included_in_thermo": {
"type": "boolean",
"description": "Whether or not this chemical is included when simulating thermodynamic equilibria. If 'true', 'registry_ID' must be provided. If 'false', 'molar_mass' must be provided."
},
"registry_id": {
"type": "string",
"description": "CAS number or SMILES string."
},
"index": {
"type": "number",
"description": "A unique index for this chemical; must be provided if 'reactions' include 'stoichiometry' and do not include 'equation'. Must match the ordering of 'stoichiometry'."
},
"formula": {
"type": "string",
"description": "Chemical formula (molecular or empirical; in either case, one mole of the substance must have been modeled to contain the number moles of each atom as stated in this formula)."
},
"molar_mass": {
"type": "number",
"description": "Molar mass (in grams)."
}
},
"required": [
"id",
"included_in_thermo"
],
"additionalProperties": true,
"allOf": [
{
"if": {
"properties": { "included_in_thermo": { "const": true } },
"required": ["included_in_thermo"]
},
"then": { "required": ["registry_id"] }
},
{
"if": {
"properties": { "included_in_thermo": { "const": false } },
"required": ["included_in_thermo"]
},
"then": { "required": ["molar_mass"] }
}
]
}
},
"utilities": {
"description": "An array of all heating, cooling, power, and other utility types involved in this flowsheet.",
"type": "object",
"properties": {
"heat_utilities": {
"description": "An array of all heating and cooling utility types involved in this process flowsheet. Combustion-based utility types (e.g., natural gas) should not be specified here and should instead be specified in 'other_utilities'.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for this utility type (e.g., high-pressure steam)."
},
"temperature": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "K"
}
}
},
"pressure": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "Pa"
}
}
},
"regeneration_price": {
"type": "object",
"properties": {
"value": {
"type": "number",
"default": 0
},
"units": {
"type": "string",
"default": "$/kmol"
}
}
},
"heat_transfer_price": {
"type": "object",
"properties": {
"value": {
"type": "number",
"default": 0
},
"units": {
"type": "string",
"default": "$/kJ"
}
}
},
"heat_transfer_efficiency": {
"type": "number",
"default": 1
},
"temperature_limit": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "K"
}
}
},
"composition": {
"description": "An array detailing the chemical components of the heating or cooling utility.",
"type": "array",
"items": {
"type": "object",
"properties": {
"phase": {
"type": "string",
"default": "l"
},
"component_name": {
"type": "string"
},
"mol_fraction": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"required": [
"component_name",
"mol_fraction"
]
}
},
"units_for_utility_results": {
"type": "string",
"description": "Units (e.g., 'kJ/h') for the values associated with this utility in the 'utility_results' of unit operations in this flowsheet."
}
},
"required": [
"id",
"temperature",
"pressure",
"composition",
"units_for_utility_results"
],
"additionalProperties": false
}
},
"power_utilities": {
"description": "An array of all power utility types involved in this process flowsheet.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for this power utility type (e.g., 'marginal electricity')."
},
"price": {
"type": "object",
"properties": {
"value": {
"type": "number",
"default": 0
},
"units": {
"type": "string",
"default": "$/kWh"
}
}
},
"units_for_utility_results": {
"type": "string",
"description": "Units (e.g., 'kW') for the values associated with this utility in the 'utility_results' of unit operations in this flowsheet."
}
},
"required": [
"id",
"units_for_utility_results"
],
"additionalProperties": {
"type": "number"
}
}
},
"other_utilities": {
"description": "An array of all other utility types involved in this process flowsheet. Combustion-based utility types (e.g., natural gas) may be specified here.",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for this utility type (e.g., natural gas)."
},
"temperature": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "K"
}
}
},
"pressure": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"units": {
"type": "string",
"default": "Pa"
}
}
},
"price": {
"type": "object",
"properties": {
"value": {
"type": "number",
"default": 0
},
"units": {
"type": "string",
"default": "$/kg"
}
}
},
"composition": {
"description": "An array detailing the chemical components of the utility.",
"type": "array",
"items": {
"type": "object",
"properties": {
"phase": {
"type": "string",
"default": "l"
},
"component_name": {
"type": "string"
},
"mol_fraction": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"required": [
"component_name",
"mol_fraction"
]
}
},
"units_for_utility_results": {
"type": "string",
"description": "Units (e.g., 'kg/h') for the values associated with this utility in the 'utility_results' of unit operations in this flowsheet."
}
},
"required": [
"id",
"temperature",
"pressure",
"composition",
"units_for_utility_results"
],
"additionalProperties": false
}
}
}
}
},
"required": [
"metadata",
"units",
"streams",
"utilities"
]
}