-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOntoProCap.owl
More file actions
948 lines (540 loc) · 36.9 KB
/
OntoProCap.owl
File metadata and controls
948 lines (540 loc) · 36.9 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
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
Prefix: : <http://www.semanticweb.org/m.winter/ontologies/2025/3/untitled-ontology-85/>
Prefix: owl: <http://www.w3.org/2002/07/owl#>
Prefix: rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
Prefix: rdfs: <http://www.w3.org/2000/01/rdf-schema#>
Prefix: xml: <http://www.w3.org/XML/1998/namespace>
Prefix: xsd: <http://www.w3.org/2001/XMLSchema#>
Ontology: <http://css.iat.rwth-aachen.de/OntoProCap>
<http://css.iat.rwth-aachen.de/OntoProCap/0.0.1>
Annotations:
rdfs:comment "The ontology is licensed under the Creative Commons CC BY-SA 4.0 (Attribution-ShareAlike 4.0 International) license. This means that you can freely use, distribute, edit, and build upon the ontology as long as you give proper credit to the creator of the ontology and publish your derivations under the same license.
Creator: Michael Winter, Indah Radityo Putri
E-Mail: {m.winter, i.putri}@iat.rwth-aachen.de"@en
AnnotationProperty: rdfs:comment
AnnotationProperty: rdfs:label
AnnotationProperty: rdfs:seeAlso
Datatype: rdf:PlainLiteral
Datatype: xsd:anyURI
Datatype: xsd:string
ObjectProperty: <http://css.iat.rwth-aachen.de/OntoProCap#providesCapability>
Domain:
<http://css.iat.rwth-aachen.de/OntoProCap#Resource>
Range:
<http://css.iat.rwth-aachen.de/OntoProCap#Capability>
ObjectProperty: <http://css.iat.rwth-aachen.de/OntoProCap#requiresCapability>
Domain:
<http://css.iat.rwth-aachen.de/OntoProCap#Process>
Range:
<http://css.iat.rwth-aachen.de/OntoProCap#Capability>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Abrasion>
Annotations:
rdfs:comment "Granulation of a solid by frictional action using an abrading medium."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Absorption>
Annotations:
rdfs:comment "Absorption is the transfer of a soluble component in a gas-phase mixture into a liquid absorbent whose volatility is low under process conditions. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Adsorption>
Annotations:
rdfs:comment "Adsorption is the selcective transfer of molecules or fine-granular particles from a fluid (gas or liquid) to the interface of the adsorbents."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Agitating>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#MixingOfLiquids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#BoilingDown>
Annotations:
rdfs:comment "Boiling down refers to the separation of a solution into gaseous and solid substances by evaporating the volatile components completely."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Briquetting>
Annotations:
rdfs:comment "The agglomeration of a fine-granular powder to coarse-granular pieces by mechanical pressure."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Capability>
Annotations:
rdfs:comment "Implementation-independent description of a function in industrial production to achieve an effect in the physical or virtual world. (Capability, Skill and Service (CSS) Model)",
rdfs:label "Capability"@en,
rdfs:label "Fähigkeit"@de,
rdfs:seeAlso "https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html"
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Cementation>
Annotations:
rdfs:comment "Cementation is process to recover dissolved metals from the aqueous phase. The basic principle of cementation is contact reduction. In other words, the electrons from a less noble metal are given up to a more noble dissolved metal. (Free, M. L. (2013). Hydrometallurgy: Fundamentals and Applications. Wiley.)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Centrifugation>
Annotations:
rdfs:comment "A process of separating the lighter portions of a solution, mixture, or suspension from the heavier portions by centrifugal force."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Circulating>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#MixingOfLiquids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Annotations:
rdfs:comment "A combination in terms of unit operation means to get together different process steps to achieve a particular one."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Transformation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Compacting>
Annotations:
rdfs:comment "The compression of a loose, voluminous powder to a more dense, closely packed powder by mechanical pressure."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#ConcentrationByEvaporation>
Annotations:
rdfs:comment "In evaporization, the vapor from a boiling liquid is removed and a more concentrated solution remains. (Geankoplis: Transport processes and unit operations)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Condensation>
Annotations:
rdfs:comment "The phase transition from gas to liquid."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfGases>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Desublimation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Conveying>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Transport>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Dosing>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#CoolingOfGases>
Annotations:
rdfs:comment "Reducing the temperature of a gas without changing ist state of aggregation"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfGases>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#HeatingOfGases>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#CoolingOfLiquids>
Annotations:
rdfs:comment "Reducing the temperature of a liquid without changing ist state of aggregation"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfLiquids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#HeatingOfLiquids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#CoolingOfSolids>
Annotations:
rdfs:comment "Reducing the temperature of a solid."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfSolids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#HeatingOfSolids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Cutting>
Annotations:
rdfs:comment "Fragmentation of solid material by the effect of shear forces"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#CyclonicSeparation>
Annotations:
rdfs:comment "Cyclonic separation is a method of removing particles from a gas stream by means of centrifugal forces."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Desublimation>
Annotations:
rdfs:comment "The phase transition from gas to solid without passing through an intermediate liquid state."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfGases>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Condensation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#DiffusionSeparation>
Annotations:
rdfs:comment "Process to separate a gas mixture into its components by means of differences in the diffusion rates of the component molecules"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Dissolution>
Annotations:
rdfs:comment "The mixing of a solid and a liquid with the formation of one new homogeneous phase (i.e. the solution)."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Distillation>
Annotations:
rdfs:comment "Distillation is the seperation of the constituents of liquid mixture via partial vaporization of the mixture and separate recovery of vapor and residue. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Dosing>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Transport>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Conveying>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Drying>
Annotations:
rdfs:comment "Drying is the process by which volatile materials are evaporated from a material to yield a solid product. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#ElectricalGasCleaning>
Annotations:
rdfs:comment "The separation of dispersed particles from a gas phase by means of an electric field."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Electrodialysis>
Annotations:
rdfs:comment "A process which uses an electric field and two semipermeable membranes to separate dissociated species from undissociated species in a solvent. The electric field forces the dissociated ions through the membranes, while the nonpolar species remain in the solvent."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#ElectromagneticCrushing>
Annotations:
rdfs:comment "The process of crushing solid material by applying electromagnetic fields that cause internal stresses."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Electrophoresis>
Annotations:
rdfs:comment "Electrophoresis is the technique of separating electrically charged particles, particularly proteins, in a solution by passing an electric current through the solution. The rate of movement of the different components depends upon their charge, so that they gradually separate into bands. [neurolab.jsc.nasa.gov/glosseh.htm]"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Emulsification>
Annotations:
rdfs:comment "The formation of a mixture of two liquids, such as oil and water, in which one of the liquids is in the form of fine droplets and is dispersed in the other."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#EnthalpyChange>
Annotations:
rdfs:comment "EnthalpyChange in terms of unit operation considers a conversion of energy which often result in a change of the state of aggregation."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Transformation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Extraction>
Annotations:
rdfs:comment "Extraction refers to both liquid-liquid extraction and leaching:
Liquid-liquid extraction is a process for separationg components in solution by their distribution between two immiscible liquid phases. Such a process can also be simply referred to as liquid extraction or solvent extraction; however, the latter term my be confusing because it also applies to the leaching of soluble substance from a solid. (Perry's)
Leaching is the removal of a soluble fraction, in the form of a solution, from an insoluble, permeable solid phase with which it is associated. The separation usually involves selective dissolution. The soluble constituent may be solid or liquid (Perry's)"@en,
rdfs:comment "Might also be used for Solvent Extraction process."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Flashing>
Annotations:
rdfs:comment "Flashing utilized the state of phase equilibrium between a vapor and a liquid phase and the resulting material transport if a mixture with different fugacity is existent. In terms of unit operation this is usually accomplished in a vessel."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#FoamFormation>
Annotations:
rdfs:comment "The combination of a liquid and a gas phase to a foam."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#FoamFractionation>
Annotations:
rdfs:comment "A method of separation in which a component of the bulk liquid is preferentially adsorbed at the liquid/vapour (L/V) interface and is removed by foaming. (IUPAC Compendium of Chemical Terminology)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Annotations:
rdfs:comment "Fragmentation in terms of unit operation is the breakup of solid material for further processing."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Transformation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Fusion>
Annotations:
rdfs:comment "The merging of two or more solid components by melting."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#GasCentrifugation>
Annotations:
rdfs:comment "The separation of a mixture of gases of different densities by centrifugal force."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#GasFiltration>
Annotations:
rdfs:comment "Gas filtration is the separation of a gas-solids mixture by forcing the mixture through a porous barrier which retains most of the solid particulates contained in the mixture."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Grinding>
Annotations:
rdfs:comment "The process of pulverizing solid material to fine-granular particles by applying mechanical forces"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#HeatingOfGases>
Annotations:
rdfs:comment "Increasing the temperature of a gas"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfGases>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#CoolingOfGases>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#HeatingOfLiquids>
Annotations:
rdfs:comment "Increasing the temperature of a liquid without changing ist state of aggregation"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfLiquids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#CoolingOfLiquids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#HeatingOfSolids>
Annotations:
rdfs:comment "Increasing the temperature of a solid without changing ist state of aggregation."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfSolids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#CoolingOfSolids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#HoldingTemperature>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Storage>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Humidification>
Annotations:
rdfs:comment "The mixing of a gas and the vapor of a liquid with the formation of a new homogeneous phase."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#HydrocyclonicSeparation>
Annotations:
rdfs:comment "Hydrocyclonic separation is a method of removing particles from a liquid stream by means of centrifugal forces."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#ImpingementSeparation>
Annotations:
rdfs:comment "Particles are separated from gas by impingement on collected bodies arrayed across the path of the gas stream.(Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Impregnation>
Annotations:
rdfs:comment "The process of soaking a porous material with a liquid."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Kneading>
Annotations:
rdfs:comment "The blending of solid and liquid components into a uniform mass, as by folding, pressing, and stretching."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Leaching>
Annotations:
rdfs:comment "Leaching in terms of unit operation is a particular form of extraction. Usually, a solute, a insolvable carrier and a solvent are applied for solid extraction"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#LiquidFiltration>
Annotations:
rdfs:comment "Liquid filtration is the separation of a liquid-solids mixture by forcing the mixture through a porous barrier which retains most of the solid particulates contained in the mixture."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#LiquidPhasesGravitySeparation>
Annotations:
rdfs:comment "Liquid phases gravity separation refers to two liquid phases settle into separate layers due to gravity. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#MechanicalCrushing>
Annotations:
rdfs:comment "The process of breaking solid material into coarse-granular pieces by applying mechanical forces"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Melting>
Annotations:
rdfs:comment "The phase transition from solid to the liquid."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfSolids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Sublimation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Mixing>
Annotations:
rdfs:comment "Mixing in terms of unit operations is a special type of combination which results in a mixture which is required for further processing. It is usually accomplished by means of stirrer."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#MixingOfLiquids>
Annotations:
rdfs:comment "The combination of two or more liquids of different composition to a homogeneous system."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Mixing>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#MixingOfSolids>
Annotations:
rdfs:comment "The blending of different solid components to a granular mixture"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Mixing>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#MixingofGases>
Annotations:
rdfs:comment "The mixing of two ore more gases of different compositions."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Mixing>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PhaseChange>
Annotations:
rdfs:comment "PhaseChange is a specialization of EnthalpyChange an usually it is applied for the purpose of heat exchange between spatially separated phases"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#EnthalpyChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfGases>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfLiquids>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfSolids>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Precipitation>
Annotations:
rdfs:comment "Precipitation of products, impurities, or contaminants can be induced by the addition of solvents, salts, or polymers to the solution; by increasing temperature; or by adjusting the solution pH. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PressureChange>
Annotations:
rdfs:comment "By means of a PressureChange a heat content of a particular fluid may be exchanged which may be used for heating or cooling purposes in terms of unit operations."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#EnthalpyChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PressureChangeOfGas>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PressureChange>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#PressureChangeOfLiquid>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#PressureChangeOfLiquid>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PressureChange>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#PressureChangeOfGas>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Process>
Annotations:
rdfs:comment "351-42-33, process, <in control technology>: \"complete set of interacting operations in a system by which matter, energy or information is transformed, transported or stored\" (IEC 60050)"@en,
rdfs:comment "Equivalent to bfo:process.
Process is an occurrent that has some temporal proper part and for some time, process has some material entity as participant. (Basic Formal Ontology (BFO))",
rdfs:comment "Equivalent to prov:Activity.
An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities. (Provenance Ontology (PROV-O))",
rdfs:comment "Production-relevant activity at any level of granularity that might affect materials and is performed by resources. (Capability, Skill and Service (CSS) Model)",
rdfs:label "Process"@en,
rdfs:label "Prozess"@de,
rdfs:seeAlso "https://github.com/bfo-ontology/BFO-2020",
rdfs:seeAlso "https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html",
rdfs:seeAlso "https://www.w3.org/TR/prov-o/#Activity",
rdfs:seeAlso "https://www.electropedia.org/iev/iev.nsf/display?openform&ievref=351-42-33"^^xsd:anyURI
Class: <http://css.iat.rwth-aachen.de/OntoProCap#QuenchGranulation>
Annotations:
rdfs:comment "Fragmentation of a melt by rapid solidifaction, which causes internal stresses."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Rectification>
Annotations:
rdfs:comment "Rectification is the separation of the constituents of a liquid mixture by successive distillations (partial vaporizations and condensations) and is obtained via the use of an integral of differential process. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Resource>
Annotations:
rdfs:comment "171-01-22, functional unit, <in information processing>: \"entity of hardware or software, or both, capable of accomplishing a specified purpose\"",
rdfs:comment "Equivalent to bfo:continuant
A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (Basic Formal Ontology (BFO))",
rdfs:comment "Equivalent to prov:Entity
An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. (Provenance Ontology (PROV-O))",
rdfs:comment "Entity capable of performing functions specified as capabilities and potentially implemented as skills. [compare definition of “Functional Unit”] (Capability, Skill and Service (CSS) Model)",
rdfs:label "Resource"@en,
rdfs:label "Ressource"@de,
rdfs:seeAlso "https://github.com/bfo-ontology/BFO-2020",
rdfs:seeAlso "https://www.electropedia.org/iev/iev.nsf/display?openform&ievref=171-01-22",
rdfs:seeAlso "https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html",
rdfs:seeAlso "https://www.w3.org/TR/prov-o/#Entity"
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Scrubbing>
Annotations:
rdfs:comment "The separation of dispersed particels from a gas phase by suspensing or solving the particles in a liquid phase."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Sedimentation>
Annotations:
rdfs:comment "Sedimentation is the partial separation or concentration of suspended solid particles from a liquid by gravity settling. (Perry)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Annotations:
rdfs:comment "Separation in terms of unit operation means to achieve single components of a mixture by means of physical of chemical phenomenon."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Transformation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Shredding>
Annotations:
rdfs:comment "The fragmentation of fibrous materials by the effect of tensile forces."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Sintering>
Annotations:
rdfs:comment "The heating of a mass of fine particles below the melting point, causing agglomeration to form larger particles.
(www.mim.com.au/glossary.html)"@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Solidification>
Annotations:
rdfs:comment "The phase transition from liquid to solid."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfLiquids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Vaporization>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#SonicGasCleaning>
Annotations:
rdfs:comment "Separation procedure based on the coagulation of small particles suspended in a fluid medium into larger aggregates by the action of sound waves."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Splitting>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Spraying>
Annotations:
rdfs:comment "The process of dispersing liquid droplets in a gas phase."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Stirring>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#MixingOfLiquids>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Storage>
Annotations:
rdfs:comment "Capability to store materials, energy or information."@en,
rdfs:comment "Fähigkeit, Stoffe, Energie oder Informationen zu speichern."@de
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Capability>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Storing>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Storage>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Sublimation>
Annotations:
rdfs:comment "The phase transition from solid to gas without passing through an intermediate liquid state."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfSolids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Melting>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Suspending>
Annotations:
rdfs:comment "The process of preparing a mixture in which fine particles are suspended in a fluid, where they are supported by buoyancy."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Tabletting>
Annotations:
rdfs:comment "The process of preparing a small flat compressed cake of some powder by means of high pressure."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChange>
Annotations:
rdfs:comment "TemperatureChange in terms of unit operation means to transport the heat content of one material to another and it is applied for heating or cooling purposes."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#EnthalpyChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfGases>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfLiquids>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfSolids>
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChange>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#ThermalCrushing>
Annotations:
rdfs:comment "The process of crushing solid material by applying temperature differences that cause internal stresses."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Transformation>
Annotations:
rdfs:comment "Capability to change the properties of a material, energy or information flow (e.g. temperature, chemical composition, position)."@en,
rdfs:comment "Fähigkeit, Eigenschaften eines Stoff-, Energie- oder Informationsstroms zu ändern (z. B. Temperatur, chemische Zusammensetzung, Position)."@de
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Capability>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Transport>
Annotations:
rdfs:comment "Capability to transport substances, energy or information."@en,
rdfs:comment "Fähigkeit, Stoffe, Energie oder Informationen zu transportieren."@de
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#Capability>
Class: <http://css.iat.rwth-aachen.de/OntoProCap#Vaporization>
Annotations:
rdfs:comment "The phase transition from liquid to gas."@en
SubClassOf:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfLiquids>
DisjointWith:
<http://css.iat.rwth-aachen.de/OntoProCap#Solidification>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#Abrasion>,<http://css.iat.rwth-aachen.de/OntoProCap#Cutting>,<http://css.iat.rwth-aachen.de/OntoProCap#ElectromagneticCrushing>,<http://css.iat.rwth-aachen.de/OntoProCap#Grinding>,<http://css.iat.rwth-aachen.de/OntoProCap#MechanicalCrushing>,<http://css.iat.rwth-aachen.de/OntoProCap#QuenchGranulation>,<http://css.iat.rwth-aachen.de/OntoProCap#Shredding>,<http://css.iat.rwth-aachen.de/OntoProCap#Splitting>,<http://css.iat.rwth-aachen.de/OntoProCap#Spraying>,<http://css.iat.rwth-aachen.de/OntoProCap#ThermalCrushing>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#Absorption>,<http://css.iat.rwth-aachen.de/OntoProCap#Adsorption>,<http://css.iat.rwth-aachen.de/OntoProCap#BoilingDown>,<http://css.iat.rwth-aachen.de/OntoProCap#Centrifugation>,<http://css.iat.rwth-aachen.de/OntoProCap#ConcentrationByEvaporation>,<http://css.iat.rwth-aachen.de/OntoProCap#CyclonicSeparation>,<http://css.iat.rwth-aachen.de/OntoProCap#DiffusionSeparation>,<http://css.iat.rwth-aachen.de/OntoProCap#Distillation>,<http://css.iat.rwth-aachen.de/OntoProCap#ElectricalGasCleaning>,<http://css.iat.rwth-aachen.de/OntoProCap#Electrodialysis>,<http://css.iat.rwth-aachen.de/OntoProCap#Electrophoresis>,<http://css.iat.rwth-aachen.de/OntoProCap#Extraction>,<http://css.iat.rwth-aachen.de/OntoProCap#Flashing>,<http://css.iat.rwth-aachen.de/OntoProCap#FoamFractionation>,<http://css.iat.rwth-aachen.de/OntoProCap#GasCentrifugation>,<http://css.iat.rwth-aachen.de/OntoProCap#GasFiltration>,<http://css.iat.rwth-aachen.de/OntoProCap#HydrocyclonicSeparation>,<http://css.iat.rwth-aachen.de/OntoProCap#ImpingementSeparation>,<http://css.iat.rwth-aachen.de/OntoProCap#Leaching>,<http://css.iat.rwth-aachen.de/OntoProCap#LiquidFiltration>,<http://css.iat.rwth-aachen.de/OntoProCap#Rectification>,<http://css.iat.rwth-aachen.de/OntoProCap#Scrubbing>,<http://css.iat.rwth-aachen.de/OntoProCap#SonicGasCleaning>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#Briquetting>,<http://css.iat.rwth-aachen.de/OntoProCap#Compacting>,<http://css.iat.rwth-aachen.de/OntoProCap#Dissolution>,<http://css.iat.rwth-aachen.de/OntoProCap#Emulsification>,<http://css.iat.rwth-aachen.de/OntoProCap#FoamFormation>,<http://css.iat.rwth-aachen.de/OntoProCap#Fusion>,<http://css.iat.rwth-aachen.de/OntoProCap#Humidification>,<http://css.iat.rwth-aachen.de/OntoProCap#Impregnation>,<http://css.iat.rwth-aachen.de/OntoProCap#Kneading>,<http://css.iat.rwth-aachen.de/OntoProCap#Mixing>,<http://css.iat.rwth-aachen.de/OntoProCap#Sintering>,<http://css.iat.rwth-aachen.de/OntoProCap#Suspending>,<http://css.iat.rwth-aachen.de/OntoProCap#Tabletting>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#Combination>,<http://css.iat.rwth-aachen.de/OntoProCap#EnthalpyChange>,<http://css.iat.rwth-aachen.de/OntoProCap#Fragmentation>,<http://css.iat.rwth-aachen.de/OntoProCap#Separation>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#MixingOfLiquids>,<http://css.iat.rwth-aachen.de/OntoProCap#MixingOfSolids>,<http://css.iat.rwth-aachen.de/OntoProCap#MixingofGases>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChange>,<http://css.iat.rwth-aachen.de/OntoProCap#PressureChange>,<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChange>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfGases>,<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfLiquids>,<http://css.iat.rwth-aachen.de/OntoProCap#PhaseChangeOfSolids>
DisjointClasses:
<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfGases>,<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfLiquids>,<http://css.iat.rwth-aachen.de/OntoProCap#TemperatureChangeOfSolids>