SCHEMA_EP-FLOW-v1.0.ttl
28.2 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
# baseURI: http://www.reportinghub.no/ep/schema/1.0/flow
# imports: http://www.reportinghub.no/ep/schema/1.0/core
# imports: http://www.reportinghub.no/ep/schema/1.0/facility
# imports: http://www.reportinghub.no/ep/schema/1.0/production-activity
# imports: http://www.reportinghub.no/ep/schema/1.0/production-core
@prefix ep-flow: <http://www.reportinghub.no/ep/schema/flow#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/1.0/flow>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-core> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
ep-flow:AllocatedFlow
rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
rdfs:label "allocated flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:AqueousFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "aqueous flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:BudgetFlow
rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
rdfs:label "budget flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:C10AndHeavierFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C10+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C10AndLighterFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C10- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C2AndHeavierFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C2+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C2AndLighterFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C2- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C3AndHeavierFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C3+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C3AndLighterFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C3- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C4AndHeavierFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C4+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C4AndLighterFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C4- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C5AndHeavierFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C5+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C5AndLighterFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C5- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C6AndHeavierFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C6+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C6AndLighterFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C6- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C7AndHeavierFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C7+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C7AndLighterFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C7- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C8AndHeavierFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C8+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C8AndLighterFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "C8- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C9AndHeavierFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C9+ flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:C9AndLighterFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "C9- flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:CarbonDioxideGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "carbon dioxide gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:CarbonMonoxideGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "carbon monoxide gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:ChemicalFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "chemical flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Condensate-grossFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "condensate - gross flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Condensate-netFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "condensate - net flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:CondensateFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "condensate flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:ConstraintFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "constraint flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Consume
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Consume-HPflare
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - HP flare"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume-flare .
ep-flow:Consume-LPflare
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - LP flare"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume-flare .
ep-flow:Consume-blackstart
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - blackstart"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Consume-compressor
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - compressor"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Consume-emitted
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - emitted"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Consume-flare
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - flare"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Consume-fuel
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - fuel"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Consume-noncompressor
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - non-compressor"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Consume-venting
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "consume - venting"^^xsd:string ;
rdfs:subClassOf ep-flow:Consume .
ep-flow:Crude-stabilizedFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "crude - stabilized flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:CuttingsFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "cuttings flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:DailyProductionFlow
rdf:type owl:Class ;
rdfs:label "daily production flow"^^xsd:string ;
rdfs:subClassOf ep-flow:ProductionFlow .
ep-flow:DerivedFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "derived flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:DieselFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "diesel flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:DiethyleneglycolFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "diethyleneglycol flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:DifferenceFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "difference flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:DioxygenFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "dioxygen flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:ElectricPowerFlow
rdf:type owl:Class ;
rdfs:label "flow of electricity"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:EstimatedFlow
rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
rdfs:label "estimated flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Ethane-componentFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "ethane - component flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:EthaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "ethane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Export
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "export"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Export-nominated
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "export nominated"^^xsd:string ;
rdfs:subClassOf ep-flow:Export .
ep-flow:Export-requested
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "export requested"^^xsd:string ;
rdfs:subClassOf ep-flow:Export .
ep-flow:Export-shortfall
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "export shortfall"^^xsd:string ;
rdfs:subClassOf ep-flow:Export .
ep-flow:Flow
rdf:type owl:Class ;
rdfs:label "(temporal part of a) flow"^^xsd:string ;
rdfs:subClassOf <http://www.reportinghub.no/ep/schema/core#PhysicalThing> .
ep-flow:FlowAtInstant
rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
rdfs:label "flow at instant"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:FlowDuringDay
rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
rdfs:label "flow during day"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowDuringPeriod .
ep-flow:FlowDuringMonth
rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
rdfs:label "flow during month"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowDuringPeriod .
ep-flow:FlowDuringMonthToDate
rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
rdfs:label "flow during month to date"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowDuringPeriod .
ep-flow:FlowDuringPeriod
rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
rdfs:label "flow during period"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:FlowDuringWeek
rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
rdfs:label "flow during week"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowDuringPeriod .
ep-flow:FlowDuringYear
rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
rdfs:label "flow during year"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowDuringPeriod .
ep-flow:FlowDuringYearToDate
rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
rdfs:label "flow during year to date"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowDuringPeriod .
ep-flow:FlowOfLiquid
rdf:type owl:Class ;
rdfs:label "flow of liquid"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:FlowOfMaterial
rdf:type owl:Class ;
rdfs:label "flow of material"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:ForecastFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "forecast flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Gas-componentInOilFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "gas - component in oil flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Gas-dryFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "gas - dry flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Gas-richFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "gas - rich flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Gas-wetFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "gas - wet flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:GasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Gaslift
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "gas lift"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:HeliumGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "helium gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:HeptaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "heptane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:HydrocarbonAccounting
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "hydrocarbon accounting"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:HydrogenGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "hydrogen gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:HydrogenSulfideFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "hydrogen sulfide flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Import
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "import"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Injection
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "injection"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Inventory
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "inventory"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Isobutane-componentFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "i-butane - component flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:IsobutaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "isobutane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:IsopentaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "isopentane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:LiquifiedNaturalGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "liquified natural gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:LiquifiedPetroleumGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "liquified petroleum gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:MeasuredFlow
rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
rdfs:label "measured flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:MethaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "methane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:MethanolFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "methanol flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:MixedButaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "mixed butane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:MonoethyleneglycolFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "monoethyleneglycol flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NGL-componentInGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "NGL - component in gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NapthaFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "naptha flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NaturalGasLiquidFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "natural gas liquid flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NeopentaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "neopentane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NitrogenGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "nitrogen gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NitrogenOxideGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "nitrogen oxide gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NominatedFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "nominated flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:NormalButane-componentFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "n-butane - component flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NormalButaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "normal butane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:NormalPentaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "normal pentane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Oil-componentInWaterFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "oil - component in water flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Oil-grossFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "oil - gross flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Oil-netFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "oil - net flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:OilAndGasFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "oil and gas flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:OilFlow
rdf:type owl:Class , ep-flow:ProductType ;
rdfs:label "oil flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:OleicFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "oleic flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Overboard
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "overboard"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:PetroleumGasLiquidFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "petroleum gas liquid flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:PotentialFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "potential flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:ProcessedFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "processed flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:ProductFlow
rdf:type owl:Class ;
rdfs:label "(temporal part of a) product flow"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:ProductFlowToDate
rdf:type owl:Class ;
rdfs:label "product flow to date"^^xsd:string ;
rdfs:subClassOf ep-flow:ProductFlow .
ep-flow:ProductType
rdf:type rdfs:Class ;
rdfs:label " product type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-flow:Production
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "production"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:ProductionFlow
rdf:type owl:Class ;
rdfs:label "(temporal part of a) production flow"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:ProductionFlowDefinitionType
rdf:type rdfs:Class ;
rdfs:label " production flow definition type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-flow:ProductionFlowPurposeType
rdf:type rdfs:Class ;
rdfs:label " production flow purpose type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-flow:ProductionFlowToDate
rdf:type owl:Class ;
rdfs:label "production flow to date"^^xsd:string ;
rdfs:subClassOf ep-flow:ProductionFlow .
ep-flow:ProductionTestFlowLineFlow
rdf:type owl:Class ;
rdfs:label "production test flow line flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:ProductionTestGasLiftFlow
rdf:type owl:Class ;
rdfs:label "production test gas lift flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:ProductionTestSeparatorFlow
rdf:type owl:Class ;
rdfs:label "production test separator flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:ProductionTestWellHeadFlow
rdf:type owl:Class ;
rdfs:label "production test well head flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Propane-componentFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "propane - component flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:PropaneFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "propane flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:QuotaFlow
rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
rdfs:label "quota flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:RecommendedFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "recommended flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Sale
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "sale"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:SaleableFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "saleable flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:SaltFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "salt flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:SandFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "sand flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:SimulatedFlow
rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
rdfs:label "simulated flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:Storage
rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
rdfs:label "storage"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:TargetFlow
rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
rdfs:label "target flow"^^xsd:string ;
rdfs:subClassOf ep-flow:WholeLifeFlow .
ep-flow:TemporalPartOfAFlowDurationType
rdf:type rdfs:Class ;
rdfs:label "temporal part of a flow duration type"^^xsd:string ;
rdfs:subClassOf owl:Class .
ep-flow:TriethyleneglycolFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "triethyleneglycol flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:VapourFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "vapour flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Water-dischargeFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "water - discharge flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:Water-processedFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "water - processed flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:WaterFlow
rdf:type ep-flow:ProductType , owl:Class ;
rdfs:label "water flow"^^xsd:string ;
rdfs:subClassOf ep-flow:FlowOfMaterial .
ep-flow:WholeLifeFlow
rdf:type owl:Class ;
rdfs:label "whole life flow"^^xsd:string ;
rdfs:subClassOf ep-flow:Flow .
ep-flow:WholeLifeProductFlow
rdf:type owl:Class ;
rdfs:label "whole life product flow"^^xsd:string ;
rdfs:subClassOf ep-flow:ProductFlow , ep-flow:WholeLifeFlow .
ep-flow:WholeLifeProductionFlow
rdf:type owl:Class ;
rdfs:label "whole life production flow"^^xsd:string ;
rdfs:subClassOf ep-flow:ProductionFlow , ep-flow:WholeLifeFlow .
ep-flow:dailyAverageVolumeOfMaterial
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:label "daily average volume of material"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/core#MeasureOfAmountOfMaterial> .
ep-flow:facilityContainsFlow
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
rdfs:label "facility contains flow"^^xsd:string ;
rdfs:range ep-flow:WholeLifeFlow .
ep-flow:flowInto
rdf:type owl:ObjectProperty ;
rdfs:domain ep-flow:WholeLifeFlow ;
rdfs:label "flow into"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
rdfs:subPropertyOf ep-flow:flowIntoOrOutOf .
ep-flow:flowIntoOrOutOf
rdf:type owl:ObjectProperty ;
rdfs:domain ep-flow:WholeLifeFlow ;
rdfs:label "flow into"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/core#PhysicalThing> .
ep-flow:flowOutOf
rdf:type owl:ObjectProperty ;
rdfs:domain ep-flow:WholeLifeFlow ;
rdfs:label "flow into"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/core#PhysicalThing> ;
rdfs:subPropertyOf ep-flow:flowIntoOrOutOf .
ep-flow:hasMixedPart
rdf:type owl:ObjectProperty ;
rdfs:domain ep-flow:WholeLifeFlow ;
rdfs:label "has mixed part"^^xsd:string ;
rdfs:range ep-flow:WholeLifeFlow ;
rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#hasPart> .
ep-flow:hasNetworkPart
rdf:type owl:ObjectProperty ;
rdfs:domain ep-flow:WholeLifeFlow ;
rdfs:label "has network part"^^xsd:string ;
rdfs:range ep-flow:WholeLifeFlow ;
rdfs:subPropertyOf <http://www.reportinghub.no/ep/schema/core#hasPart> .
ep-flow:materialThatFlows
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:domain ep-flow:Flow ;
rdfs:label "material that flows"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/production-activity#QuantityOfMaterial> .
ep-flow:rateOfFlowOfMaterial
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:label "rate of flow of material"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/core#MeasureOfAmountOfMaterial> .
ep-flow:totalVolumeOfMaterial
rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
rdfs:label "total volume of material"^^xsd:string ;
rdfs:range <http://www.reportinghub.no/ep/schema/core#MeasureOfAmountOfMaterial> .