SCHEMA_EP-MATERIAL-v1.0.ttl
39.5 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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
# baseURI: http://www.reportinghub.no/ep/schema/1.0/material
# imports: http://www.reportinghub.no/ep/schema/1.0/core
@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
@prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> .
@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 transhelp: <http://www.reportinghub.no/ep/transform/transform-helper-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/1.0/material>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ep-material:Air-gas
rdf:type owl:Class ;
rdfs:label "air gas"^^xsd:string ;
rdfs:subClassOf ep-material:NonHcGas .
ep-material:Ammonium
rdf:type owl:Class ;
rdfs:label "ammonium"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:AqueousMaterial
rdf:type owl:Class ;
rdfs:label "aqueous material"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:BasicSedimentAndWater
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "bsw"^^xsd:string , "basic sediment and water"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS16681480"^^xsd:string .
ep-material:BatchOfCargo
rdf:type owl:Class ;
rdfs:label "batch of cargo"^^xsd:string ;
rdfs:subClassOf ep-material:QuantityOfMaterial .
ep-material:Brine
rdf:type owl:Class ;
rdfs:label "brine"^^xsd:string ;
rdfs:subClassOf ep-material:Water .
ep-material:C10AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C10+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C10AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C10-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C2AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C2+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C2AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C2-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C3AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C3+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C3AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C3-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C4AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C4+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C4AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C4-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C5AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C5+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C5AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C5-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C6
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C6"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C6AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C6+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C6AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C6-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C7AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C7+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C7AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C7-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C8AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C8+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C8AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C8-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C9AndHeavier
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C9+"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:C9AndLighter
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C9-"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:CO2-gas
rdf:type owl:Class ;
rdfs:label "CO2 gas"^^xsd:string ;
rdfs:subClassOf ep-material:NonHcGas ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS6737690"^^xsd:string .
ep-material:CarbonDioxide
rdf:type owl:Class ;
rdfs:comment "material of a single type of molecule that is carbon dioxide"^^xsd:string ;
rdfs:label "carbon dioxide"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS424034"^^xsd:string .
ep-material:CarbonMonoxide
rdf:type owl:Class ;
rdfs:label "carbon monoxide"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS424124"^^xsd:string .
ep-material:Chemical
rdf:type owl:Class ;
rdfs:label "chemical"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS978526561"^^xsd:string .
ep-material:ChemicalType
rdf:type rdfs:Class ;
rdfs:label "chemical type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-material:Chloride
rdf:type owl:Class ;
rdfs:comment "material of a single type of molecule that is chloride"^^xsd:string ;
rdfs:label "chloride"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Condensate
rdf:type owl:Class ;
rdfs:label "condensate"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS8642343"^^xsd:string .
ep-material:Crude-stabilized
rdf:type owl:Class ;
rdfs:label "crude - stabilized"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:CrudeOil
rdf:type owl:Class ;
rdfs:label "crude oil"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS8650260"^^xsd:string .
ep-material:Cuttings
rdf:type owl:Class ;
rdfs:label "cuttings"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Diesel
rdf:type owl:Class ;
rdfs:label "diesel"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS418648421"^^xsd:string .
ep-material:Diethyleneglycol
rdf:type owl:Class ;
rdfs:label "diethyleneglycol"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Dioxygen
rdf:type owl:Class ;
rdfs:label "dioxygen"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS426284"^^xsd:string .
ep-material:DryFluid
rdf:type owl:Class ;
rdfs:label "dry fluid"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Ethane
rdf:type owl:Class ;
rdfs:comment "material of a single type of molecule that is ethane"^^xsd:string ;
rdfs:label "ethane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419219"^^xsd:string .
ep-material:Ethane-component
rdf:type owl:Class ;
rdfs:label "ethane - component"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Filtrate
rdf:type owl:Class ;
rdfs:comment "material that is filtrate"^^xsd:string ;
rdfs:label "filtrate"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Fluid
rdf:type owl:Class ;
rdfs:label "fluid"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:FluidFraction
rdf:type owl:Class ;
rdfs:label "fluid fraction"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:FreshWater
rdf:type owl:Class ;
rdfs:label "fresh water"^^xsd:string ;
rdfs:subClassOf ep-material:Water .
ep-material:Gas
rdf:type owl:Class ;
rdfs:label "gas"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Gas-componentInOil
rdf:type owl:Class ;
rdfs:label "gas - component in oil"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Gas-dry
rdf:type owl:Class ;
rdfs:label "gas - dry"^^xsd:string ;
rdfs:subClassOf ep-material:Gas .
ep-material:Gas-rich
rdf:type owl:Class ;
rdfs:label "gas - rich"^^xsd:string ;
rdfs:subClassOf ep-material:Gas .
ep-material:Gas-wet
rdf:type owl:Class ;
rdfs:label "gas - wet"^^xsd:string ;
rdfs:subClassOf ep-material:Gas .
ep-material:GasAndWater
rdf:type owl:Class ;
rdfs:label "gas and water"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Glycols
rdf:type owl:Class ;
rdfs:label "glycols"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:HeliumGas
rdf:type owl:Class ;
rdfs:label "helium gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS8015624884"^^xsd:string .
ep-material:Heptane
rdf:type owl:Class ;
rdfs:label "heptane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419534"^^xsd:string .
ep-material:HydrogenGas
rdf:type owl:Class ;
rdfs:label "hydrogen gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS425384"^^xsd:string .
ep-material:HydrogenSulfide
rdf:type owl:Class ;
rdfs:label "hydrogen sulfide"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Isobutane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "isobutane"^^xsd:string , "IC4"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419309"^^xsd:string .
ep-material:Isobutane-component
rdf:type owl:Class ;
rdfs:label "i-butane - component"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Isopentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "isopentane"^^xsd:string , "IC5"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419399"^^xsd:string .
ep-material:Liquid
rdf:type owl:Class ;
rdfs:label "liquid"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:LiquifiedNaturalGas
rdf:type owl:Class ;
rdfs:label "liquified natural gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS418629161"^^xsd:string .
ep-material:LiquifiedPetroleumGas
rdf:type owl:Class ;
rdfs:label "liquified petroleum gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Material
rdf:type owl:Class ;
rdfs:label "material"^^xsd:string ;
rdfs:subClassOf ep-core:PhysicalObject .
ep-material:MaterialPair
rdf:type owl:Class ;
rdfs:label "material pair"^^xsd:string ;
rdfs:subClassOf owl:Thing .
ep-material:MaterialPartWholePair
rdf:type owl:Class ;
rdfs:label "material part - whole pair"^^xsd:string ;
rdfs:subClassOf ep-material:MaterialPair .
ep-material:Methane
rdf:type owl:Class ;
rdfs:label "methane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Methanol
rdf:type owl:Class ;
rdfs:label "methanol"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS572354"^^xsd:string .
ep-material:MixedButane
rdf:type owl:Class ;
rdfs:label "mixed butane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Monoethyleneglycol
rdf:type owl:Class ;
rdfs:label "monoethyleneglycol"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:NGL-componentInGas
rdf:type owl:Class ;
rdfs:label "NGL - component in gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Naptha
rdf:type owl:Class ;
rdfs:label "naptha"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:NaturalGas
rdf:type owl:Class ;
rdfs:label "natural gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS6815505"^^xsd:string .
ep-material:NaturalGasLiquid
rdf:type owl:Class ;
rdfs:label "natural gas liquid"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS16682414"^^xsd:string .
ep-material:Neopentane
rdf:type owl:Class ;
rdfs:label "neopentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS975108971"^^xsd:string .
ep-material:NitrogenGas
rdf:type owl:Class ;
rdfs:label "nitrogen gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS482640407"^^xsd:string .
ep-material:NitrogenOxideGas
rdf:type owl:Class ;
rdfs:label "nitrogen oxide gas"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:NonHcGas
rdf:type owl:Class ;
rdfs:label "non-HC gas"^^xsd:string ;
rdfs:subClassOf ep-material:Gas .
ep-material:NormalButane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "normal butane"^^xsd:string , "NC4"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:NormalButane-component
rdf:type owl:Class ;
rdfs:label "n-butane - component"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:NormalPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "normal pentane"^^xsd:string , "NC5"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Oil
rdf:type owl:Class ;
rdfs:label "oil"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS8641857"^^xsd:string .
ep-material:Oil-componentInWater
rdf:type owl:Class ;
rdfs:label "oil - component in water"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:OilAndGas
rdf:type owl:Class ;
rdfs:label "oil and gas"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS801562496"^^xsd:string .
ep-material:OilAndWater
rdf:type owl:Class ;
rdfs:label "oil and water"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Oleic
rdf:type owl:Class ;
rdfs:label "oleic"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS8015624913"^^xsd:string .
ep-material:OrganicCarbon
rdf:type owl:Class ;
rdfs:label "organic carbon"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:OtherInjectionFluid
rdf:type owl:Class ;
rdfs:label "other injection fluid"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Pentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419444"^^xsd:string .
ep-material:PetroleumGasLiquid
rdf:type owl:Class ;
rdfs:label "petroleum gas liquid"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Phenols
rdf:type owl:Class ;
rdfs:label "phenols"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:PlusFraction
rdf:type owl:Class ;
rdfs:label "plus fraction"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Propane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "propane"^^xsd:string , "C3"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419264"^^xsd:string .
ep-material:Propane-component
rdf:type owl:Class ;
rdfs:label "propane - component"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:PureFluid
rdf:type owl:Class ;
rdfs:label "pure fluid"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:QuantityOfMaterial
rdf:type owl:Class ;
rdfs:label "(temporal part of a) quantity of material"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:QuantityOfMaterialInAStandardState
rdf:type owl:Class ;
rdfs:label "quantity of material in a standard state"^^xsd:string ;
rdfs:subClassOf ep-material:QuantityOfMaterial .
ep-material:Salt
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "salt"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS8015624941"^^xsd:string .
ep-material:Sand
rdf:type owl:Class ;
rdfs:label "sand"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS885284"^^xsd:string .
ep-material:SplitFraction
rdf:type owl:Class ;
rdfs:label "split fraction"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Steam
rdf:type owl:Class ;
rdfs:label "steam"^^xsd:string ;
rdfs:subClassOf ep-material:NonHcGas ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS14208634"^^xsd:string .
ep-material:SubstanceType
rdf:type rdfs:Class ;
rdfs:label "substance type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-material:Triethyleneglycol
rdf:type owl:Class ;
rdfs:label "triethyleneglycol"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:UnknownFluid
rdf:type owl:Class ;
rdfs:label "unknown fluid"^^xsd:string ;
rdfs:subClassOf ep-material:Fluid .
ep-material:Vapour
rdf:type owl:Class ;
rdfs:label "vapour"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Water
rdf:type owl:Class ;
rdfs:label "water"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS1012769"^^xsd:string .
ep-material:Water-discharge
rdf:type owl:Class ;
rdfs:label "water - discharge"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:Water-processed
rdf:type owl:Class ;
rdfs:label "water - processed"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:firstMaterialOfPair
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPair ;
rdfs:label "first material of pair"^^xsd:string ;
rdfs:range ep-material:Material .
ep-material:hasComponent
rdf:type owl:TransitiveProperty ;
rdfs:comment "A component is all part material of the class."^^xsd:string ;
rdfs:domain ep-material:Material ;
rdfs:label "hasComponent"^^xsd:string ;
rdfs:range ep-material:Material ;
rdfs:subPropertyOf ep-core:hasPart .
ep-material:hasNonPrimaryComponent
rdf:type owl:ObjectProperty ;
rdfs:domain ep-material:Material ;
rdfs:label "has non-primary component"^^xsd:string ;
rdfs:range ep-material:Material ;
rdfs:subPropertyOf ep-material:hasComponent .
ep-material:hasPrimaryComponent
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:Material ;
rdfs:label "has primary component"^^xsd:string ;
rdfs:range ep-material:Material ;
rdfs:subPropertyOf ep-material:hasComponent .
ep-material:massRatio
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPair ;
rdfs:label "mass ratio"^^xsd:string ;
rdfs:range ep-core:Ratio .
ep-material:moleRatio
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPair ;
rdfs:label "mole ratio"^^xsd:string ;
rdfs:range ep-core:Ratio .
ep-material:partMaterialOfPair
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPartWholePair ;
rdfs:label "part material of pair"^^xsd:string ;
rdfs:range ep-material:Material ;
rdfs:subPropertyOf ep-material:firstMaterialOfPair .
ep-material:ratioOfMassOfFirstMaterialToVolumeOfSecondMaterial
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPair ;
rdfs:label "ratio of mass of first material to volume of second material"^^xsd:string ;
rdfs:range ep-core:Density .
ep-material:reidVaporPressure
rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
rdfs:domain ep-core:PhysicalThing ;
rdfs:label "Reid vapor pressure"^^xsd:string ;
rdfs:range ep-core:Pressure .
ep-material:secondMaterialOfPair
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPair ;
rdfs:label "second material of pair"^^xsd:string ;
rdfs:range ep-material:Material .
ep-material:substance-11dmcyPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "11dmcy pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-124tmBenzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "124tm benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-12dmBenzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "12dm benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-13dmBenzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "13dm benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-14dmBenzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "14dm benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-223tmButane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "223tm butane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-223tmPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "223tm pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-22dmButane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "22dm butane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-22dmHexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "22dm hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-22dmPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "22dm pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-22dmPropane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "22dm propane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-23dmButane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "23dm butane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-23dmPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "23dm pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-24dmHexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "24dm hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-24dmPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "24dm pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-25dmHexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "25dm hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-2mButane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "2m butane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-2mHexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "2m hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-2mPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "2m pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-2mPropane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "2m propane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-33dmPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "33dm pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-3etPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "3et pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-3mHexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "3m hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-3mPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "3m pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Ar
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "Argon"^^xsd:string , "Ar"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Benzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS423899"^^xsd:string .
ep-material:substance-Butane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "butane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419354"^^xsd:string .
ep-material:substance-C11F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C11F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C12F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C12F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C13F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C13F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C13dmcyPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "c13dmcy pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C14F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C14F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C15F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C15F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C16F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C16F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C17F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C17F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C18F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C18F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C19F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C19F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C20F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C20F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C21F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C21F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C22F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C22F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C23F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C23F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C24F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C24F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C25F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C25F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C26F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C26F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C27F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C27F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C28F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C28F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C29F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C29F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C30F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C30F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C31F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C31F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C32F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C32F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C33F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C33F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C34F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C34F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C35F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C35F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C36F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C36F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C37F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C37F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C38F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C38F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C39F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C39F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C40F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C40F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C41F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C41F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C42F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C42F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C43F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C43F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C44F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C44F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C45F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C45F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C46F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C46F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C47F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C47F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C48F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C48F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-C49F
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "C49F"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-CO2
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "CO2"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Cyclohexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "cyclohexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS424439"^^xsd:string .
ep-material:substance-Cyclopentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "cyclopentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS424619"^^xsd:string .
ep-material:substance-Decanes
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "decanes"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-EtBenzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "et benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-EtcyPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "etcy pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Ethane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "ethane"^^xsd:string , "C2"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419219"^^xsd:string .
ep-material:substance-H2
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "H2"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-H2O
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "H2O"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-H2S
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "H2S"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Heptanes
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "heptanes"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Hexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material ;
ep-core:seeReferenceData
"http://posccaesar.org/rdl/RDS419489"^^xsd:string .
ep-material:substance-Hexanes
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "hexanes"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-MBenzene
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "m benzene"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-McyHexane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "mcy hexane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-McyPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "mcy pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Methane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "methane"^^xsd:string , "C1"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-N2
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "N2"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Nonanes
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "nonanes"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-O2
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "O2"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-Octanes
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "octanes"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-T12dmcyPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "t12dmcy pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:substance-T13dmcyPentane
rdf:type owl:Class , ep-material:SubstanceType ;
rdfs:label "t13dmcy pentane"^^xsd:string ;
rdfs:subClassOf ep-material:Material .
ep-material:volumeRatio
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPair ;
rdfs:label "volume ratio"^^xsd:string ;
rdfs:range ep-core:Ratio .
ep-material:wholeMaterialOfPair
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-material:MaterialPartWholePair ;
rdfs:label "whole material of pair"^^xsd:string ;
rdfs:range ep-material:Material ;
rdfs:subPropertyOf ep-material:secondMaterialOfPair .