David Leal

More work on MPR - getting the reference to the facility better

1 # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-equipment 1 # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-equipment
2 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment 2 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment
3 +# imports: http://www.reportinghub.no/ep/schema/1.0/production-facility
3 # imports: http://www.reportinghub.no/ep/schema/1.0/production-organization 4 # imports: http://www.reportinghub.no/ep/schema/1.0/production-organization
4 5
5 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . 6 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
6 @prefix ep-prodeqt: <http://www.reportinghub.no/ep/schema/production-equipment#> . 7 @prefix ep-prodeqt: <http://www.reportinghub.no/ep/schema/production-equipment#> .
8 +@prefix ep-prodfac: <http://www.reportinghub.no/ep/schema/production-facility#> .
7 @prefix owl: <http://www.w3.org/2002/07/owl#> . 9 @prefix owl: <http://www.w3.org/2002/07/owl#> .
8 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 10 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
9 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 11 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
...@@ -11,9 +13,28 @@ ...@@ -11,9 +13,28 @@
11 13
12 <http://www.reportinghub.no/ep/schema/1.0/production-equipment> 14 <http://www.reportinghub.no/ep/schema/1.0/production-equipment>
13 rdf:type owl:Ontology ; 15 rdf:type owl:Ontology ;
14 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-organization> , <http://www.reportinghub.no/ep/schema/1.0/equipment> ; 16 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/production-organization> ;
15 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 17 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
16 18
19 +<http://www.reportinghub.no/ep/schema/equipment#ChokeValve>
20 + rdfs:subClassOf ep-prodeqt:Valve .
21 +
22 +<http://www.reportinghub.no/ep/schema/equipment#Controller-lift>
23 + rdfs:subClassOf ep-prodeqt:Controller .
24 +
25 +<http://www.reportinghub.no/ep/schema/equipment#Manifold>
26 + rdfs:label "manifold"^^xsd:string .
27 +
28 +ep-prodeqt:BlockValve
29 + rdf:type owl:Class ;
30 + rdfs:label "block valve"^^xsd:string ;
31 + rdfs:subClassOf ep-prodeqt:Valve .
32 +
33 +ep-prodeqt:Controller
34 + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ;
35 + rdfs:label "controller"^^xsd:string ;
36 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
37 +
17 ep-prodeqt:DownHoleControlValve 38 ep-prodeqt:DownHoleControlValve
18 rdf:type owl:Class ; 39 rdf:type owl:Class ;
19 rdfs:label "down hole control valve"^^xsd:string ; 40 rdfs:label "down hole control valve"^^xsd:string ;
...@@ -28,18 +49,43 @@ ep-prodeqt:GasLiftChoke ...@@ -28,18 +49,43 @@ ep-prodeqt:GasLiftChoke
28 rdfs:label "gas lift choke"^^xsd:string ; 49 rdfs:label "gas lift choke"^^xsd:string ;
29 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . 50 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
30 51
52 +ep-prodeqt:PressureMeter
53 + rdf:type owl:Class ;
54 + rdfs:label "pressure meter"^^xsd:string ;
55 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
56 +
57 +ep-prodeqt:RegulatingValve
58 + rdf:type owl:Class ;
59 + rdfs:label "regulating valve"^^xsd:string ;
60 + rdfs:subClassOf ep-prodeqt:Valve .
61 +
62 +ep-prodeqt:SleeveValve
63 + rdf:type owl:Class ;
64 + rdfs:label "sleeve valve"^^xsd:string ;
65 + rdfs:subClassOf ep-prodeqt:Valve .
66 +
67 +ep-prodeqt:TemperatureMeter
68 + rdf:type owl:Class ;
69 + rdfs:label "temperature meter"^^xsd:string ;
70 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
71 +
31 ep-prodeqt:Valve 72 ep-prodeqt:Valve
32 rdf:type owl:Class ; 73 rdf:type owl:Class ;
33 rdfs:label "valve"^^xsd:string ; 74 rdfs:label "valve"^^xsd:string ;
34 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> . 75 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
35 76
36 ep-prodeqt:hasCaptain 77 ep-prodeqt:hasCaptain
37 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 78 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
38 rdfs:label "has captain"^^xsd:string ; 79 rdfs:label "has captain"^^xsd:string ;
39 rdfs:range <http://www.reportinghub.no/ep/schema/production-organization#Person> . 80 rdfs:range <http://www.reportinghub.no/ep/schema/production-organization#Person> .
40 81
41 ep-prodeqt:hasValvePosition 82 ep-prodeqt:hasValvePosition
42 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 83 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
43 rdfs:domain ep-prodeqt:Valve ; 84 rdfs:domain ep-prodeqt:Valve ;
44 rdfs:label "has valve position"^^xsd:string ; 85 rdfs:label "has valve position"^^xsd:string ;
45 rdfs:range ep-core:Ratio . 86 rdfs:range ep-core:Ratio .
87 +
88 +ep-prodfac:Pipeline
89 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
90 + rdfs:label "pipeline"^^xsd:string ;
91 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
......
1 # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-facility 1 # baseURI: http://www.reportinghub.no/ep/schema/1.0/production-facility
2 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 2 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
3 # imports: http://www.reportinghub.no/ep/schema/1.0/organization 3 # imports: http://www.reportinghub.no/ep/schema/1.0/organization
4 +# imports: http://www.reportinghub.no/ep/schema/1.0/production-well
4 5
5 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . 6 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
6 @prefix ep-prodfac: <http://www.reportinghub.no/ep/schema/production-facility#> . 7 @prefix ep-prodfac: <http://www.reportinghub.no/ep/schema/production-facility#> .
...@@ -11,29 +12,139 @@ ...@@ -11,29 +12,139 @@
11 12
12 <http://www.reportinghub.no/ep/schema/1.0/production-facility> 13 <http://www.reportinghub.no/ep/schema/1.0/production-facility>
13 rdf:type owl:Ontology ; 14 rdf:type owl:Ontology ;
14 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/organization> ; 15 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-well> , <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/facility> ;
15 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 16 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
16 17
18 +<http://www.reportinghub.no/ep/schema/equipment#ChokeValve>
19 + rdf:type ep-prodfac:ProductionFacilityType .
20 +
21 +<http://www.reportinghub.no/ep/schema/equipment#Compressor>
22 + rdf:type ep-prodfac:ProductionFacilityType .
23 +
24 +<http://www.reportinghub.no/ep/schema/equipment#Controller-lift>
25 + rdf:type ep-prodfac:ProductionFacilityType .
26 +
27 +<http://www.reportinghub.no/ep/schema/equipment#Manifold>
28 + rdf:type ep-prodfac:ProductionFacilityType .
29 +
30 +<http://www.reportinghub.no/ep/schema/equipment#Separator>
31 + rdf:type ep-prodfac:ProductionFacilityType .
32 +
33 +<http://www.reportinghub.no/ep/schema/equipment#Tank>
34 + rdf:type ep-prodfac:ProductionFacilityType .
35 +
36 +<http://www.reportinghub.no/ep/schema/facility#Field>
37 + rdf:type ep-prodfac:ProductionFacilityType .
38 +
39 +<http://www.reportinghub.no/ep/schema/facility#Flowline>
40 + rdf:type ep-prodfac:ProductionFacilityType .
41 +
42 +<http://www.reportinghub.no/ep/schema/facility#Lease>
43 + rdf:type ep-prodfac:ProductionFacilityType .
44 +
45 +<http://www.reportinghub.no/ep/schema/facility#Platform>
46 + rdf:type ep-prodfac:ProductionFacilityType .
47 +
48 +<http://www.reportinghub.no/ep/schema/facility#ProductionFacility>
49 + rdf:type ep-prodfac:ProductionFacilityType .
50 +
17 <http://www.reportinghub.no/ep/schema/facility#ProductionFacilityToDate> 51 <http://www.reportinghub.no/ep/schema/facility#ProductionFacilityToDate>
18 rdf:type owl:Class ; 52 rdf:type owl:Class ;
19 rdfs:label "production facility to date"^^xsd:string ; 53 rdfs:label "production facility to date"^^xsd:string ;
20 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility> . 54 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfAProductionFacility> .
21 55
56 +<http://www.reportinghub.no/ep/schema/facility#Reservoir>
57 + rdf:type ep-prodfac:ProductionFacilityType .
58 +
59 +<http://www.reportinghub.no/ep/schema/facility#Template>
60 + rdf:type ep-prodfac:ProductionFacilityType .
61 +
22 <http://www.reportinghub.no/ep/schema/facility#facilityOperator> 62 <http://www.reportinghub.no/ep/schema/facility#facilityOperator>
23 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 63 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
24 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; 64 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
25 rdfs:label "facility operator"^^xsd:string ; 65 rdfs:label "facility operator"^^xsd:string ;
26 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . 66 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
27 67
68 +<http://www.reportinghub.no/ep/schema/geography#Country>
69 + rdf:type ep-prodfac:ProductionFacilityType .
70 +
71 +<http://www.reportinghub.no/ep/schema/geography#State>
72 + rdf:type ep-prodfac:ProductionFacilityType .
73 +
74 +<http://www.reportinghub.no/ep/schema/geography#Terminal>
75 + rdf:type ep-prodfac:ProductionFacilityType .
76 +
77 +<http://www.reportinghub.no/ep/schema/organization#Company>
78 + rdf:type ep-prodfac:ProductionFacilityType .
79 +
80 +<http://www.reportinghub.no/ep/schema/production-equipment#BlockValve>
81 + rdf:type ep-prodfac:ProductionFacilityType .
82 +
83 +<http://www.reportinghub.no/ep/schema/production-equipment#FlowMeter>
84 + rdf:type ep-prodfac:ProductionFacilityType ;
85 + rdfs:label "flow meter"^^xsd:string .
86 +
87 +<http://www.reportinghub.no/ep/schema/production-equipment#PressureMeter>
88 + rdf:type ep-prodfac:ProductionFacilityType .
89 +
90 +<http://www.reportinghub.no/ep/schema/production-equipment#RegulatingValve>
91 + rdf:type ep-prodfac:ProductionFacilityType .
92 +
93 +<http://www.reportinghub.no/ep/schema/production-equipment#SleeveValve>
94 + rdf:type ep-prodfac:ProductionFacilityType .
95 +
96 +<http://www.reportinghub.no/ep/schema/production-equipment#TemperatureMeter>
97 + rdf:type ep-prodfac:ProductionFacilityType .
98 +
28 ep-prodfac:Boat 99 ep-prodfac:Boat
29 rdf:type owl:Class ; 100 rdf:type owl:Class ;
30 rdfs:subClassOf ep-prodfac:ShipOrBoat . 101 rdfs:subClassOf ep-prodfac:ShipOrBoat .
31 102
103 +ep-prodfac:Field-area
104 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
105 + rdfs:label "field - area"^^xsd:string ;
106 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> .
107 +
108 +ep-prodfac:Field-group
109 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
110 + rdfs:label "field - group"^^xsd:string ;
111 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> .
112 +
113 +ep-prodfac:Field-part
114 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
115 + rdfs:label "field - part"^^xsd:string ;
116 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Field> .
117 +
118 +ep-prodfac:Installation
119 + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ;
120 + rdfs:label "installation"^^xsd:string ;
121 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
122 +
32 ep-prodfac:OilTanker 123 ep-prodfac:OilTanker
33 rdf:type owl:Class ; 124 rdf:type owl:Class ;
34 rdfs:label "oil tanker"^^xsd:string ; 125 rdfs:label "oil tanker"^^xsd:string ;
35 rdfs:subClassOf ep-prodfac:Ship . 126 rdfs:subClassOf ep-prodfac:Ship .
36 127
128 +ep-prodfac:Plant
129 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
130 + rdfs:label "plant"^^xsd:string ;
131 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
132 +
133 +ep-prodfac:Plant-processing
134 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
135 + rdfs:label "plant - processing"^^xsd:string ;
136 + rdfs:subClassOf ep-prodfac:Plant .
137 +
138 +ep-prodfac:ProcessingFacility
139 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
140 + rdfs:label "processing facility"^^xsd:string ;
141 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
142 +
143 +ep-prodfac:ProductionFacilityType
144 + rdf:type rdfs:Class ;
145 + rdfs:label "production facility type"^^xsd:string ;
146 + rdfs:subClassOf owl:Class .
147 +
37 ep-prodfac:Ship 148 ep-prodfac:Ship
38 rdf:type owl:Class ; 149 rdf:type owl:Class ;
39 rdfs:label "Ship"^^xsd:string ; 150 rdfs:label "Ship"^^xsd:string ;
...@@ -43,6 +154,11 @@ ep-prodfac:ShipOrBoat ...@@ -43,6 +154,11 @@ ep-prodfac:ShipOrBoat
43 rdf:type owl:Class ; 154 rdf:type owl:Class ;
44 rdfs:subClassOf ep-prodfac:TemporalPartOfAShipOrBoat . 155 rdfs:subClassOf ep-prodfac:TemporalPartOfAShipOrBoat .
45 156
157 +ep-prodfac:StorageFacility
158 + rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
159 + rdfs:label "storage facility"^^xsd:string ;
160 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
161 +
46 ep-prodfac:SupplyShip 162 ep-prodfac:SupplyShip
47 rdf:type owl:Class ; 163 rdf:type owl:Class ;
48 rdfs:label "supply ship"^^xsd:string ; 164 rdfs:label "supply ship"^^xsd:string ;
...@@ -52,6 +168,11 @@ ep-prodfac:TemporalPartOfAShipOrBoat ...@@ -52,6 +168,11 @@ ep-prodfac:TemporalPartOfAShipOrBoat
52 rdf:type owl:Class ; 168 rdf:type owl:Class ;
53 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . 169 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
54 170
171 +ep-prodfac:TrunkLine
172 + rdf:type ep-prodfac:ProductionFacilityType , owl:Class ;
173 + rdfs:label "trunk line"^^xsd:string ;
174 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
175 +
55 ep-prodfac:numberOfBedsAvailable 176 ep-prodfac:numberOfBedsAvailable
56 rdf:type owl:DatatypeProperty ; 177 rdf:type owl:DatatypeProperty ;
57 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; 178 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
...@@ -96,3 +217,31 @@ ep-prodfac:numberOfPersonnelOnBoard ...@@ -96,3 +217,31 @@ ep-prodfac:numberOfPersonnelOnBoard
96 rdf:type owl:DatatypeProperty ; 217 rdf:type owl:DatatypeProperty ;
97 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; 218 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
98 rdfs:range xsd:integer . 219 rdfs:range xsd:integer .
220 +
221 +<http://www.reportinghub.no/ep/schema/production-organization#CommercialEntity>
222 + rdf:type ep-prodfac:ProductionFacilityType .
223 +
224 +<http://www.reportinghub.no/ep/schema/production-well#RockFormation>
225 + rdf:type ep-prodfac:ProductionFacilityType .
226 +
227 +<http://www.reportinghub.no/ep/schema/production-well#TubingHead>
228 + rdf:type ep-prodfac:ProductionFacilityType .
229 +
230 +<http://www.reportinghub.no/ep/schema/production-well#WellCompletion>
231 + rdf:type ep-prodfac:ProductionFacilityType .
232 +
233 +<http://www.reportinghub.no/ep/schema/well#Well>
234 + rdf:type ep-prodfac:ProductionFacilityType .
235 +
236 +<http://www.reportinghub.no/ep/schema/well#WellBore>
237 + rdf:type ep-prodfac:ProductionFacilityType .
238 +
239 +<http://www.reportinghub.no/ep/schema/well#WellGroup>
240 + rdf:type ep-prodfac:ProductionFacilityType .
241 +
242 +<http://www.reportinghub.no/ep/schema/well#WellHead>
243 + rdf:type ep-prodfac:ProductionFacilityType .
244 +
245 +<http://www.reportinghub.no/np/schema/npd#Licence>
246 + rdf:type ep-prodfac:ProductionFacilityType ;
247 + rdfs:label "licence"^^xsd:string .
......
...@@ -12,6 +12,14 @@ ...@@ -12,6 +12,14 @@
12 owl:imports <http://www.reportinghub.no/ep/schema/1.0/organization> ; 12 owl:imports <http://www.reportinghub.no/ep/schema/1.0/organization> ;
13 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 13 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
14 14
15 +<http://www.reportinghub.no/ep/schema/organization#Organization>
16 + rdfs:subClassOf ep-prodorg:PersonOrOrganization .
17 +
18 +ep-prodorg:CommercialEntity
19 + rdf:type owl:Class ;
20 + rdfs:label "commercial entity"^^xsd:string ;
21 + rdfs:subClassOf ep-prodorg:PersonOrOrganization .
22 +
15 ep-prodorg:Person 23 ep-prodorg:Person
16 rdf:type owl:Class ; 24 rdf:type owl:Class ;
17 rdfs:subClassOf ep-prodorg:PersonOrOrganization . 25 rdfs:subClassOf ep-prodorg:PersonOrOrganization .
......
...@@ -112,6 +112,11 @@ ep-prodwell:PureFluid ...@@ -112,6 +112,11 @@ ep-prodwell:PureFluid
112 rdfs:label "pure fluid"^^xsd:string ; 112 rdfs:label "pure fluid"^^xsd:string ;
113 rdfs:subClassOf ep-material:Fluid . 113 rdfs:subClassOf ep-material:Fluid .
114 114
115 +ep-prodwell:RockFormation
116 + rdf:type owl:Class ;
117 + rdfs:label "rock formation"^^xsd:string ;
118 + rdfs:subClassOf ep-core:PhysicalObject .
119 +
115 ep-prodwell:SplitFraction 120 ep-prodwell:SplitFraction
116 rdf:type ep-prodwell:FluidComponentKindType , owl:Class ; 121 rdf:type ep-prodwell:FluidComponentKindType , owl:Class ;
117 rdfs:label "split fraction"^^xsd:string ; 122 rdfs:label "split fraction"^^xsd:string ;
...@@ -127,11 +132,21 @@ ep-prodwell:TemporalPartOfASpatialPartOfAWellBore ...@@ -127,11 +132,21 @@ ep-prodwell:TemporalPartOfASpatialPartOfAWellBore
127 rdfs:label "temporal part of a spatial part of a wellbore"^^xsd:string ; 132 rdfs:label "temporal part of a spatial part of a wellbore"^^xsd:string ;
128 rdfs:subClassOf ep-well:TemporalPartOfAWellBore . 133 rdfs:subClassOf ep-well:TemporalPartOfAWellBore .
129 134
135 +ep-prodwell:TubingHead
136 + rdf:type owl:Class ;
137 + rdfs:label "tubing head"^^xsd:string ;
138 + rdfs:subClassOf ep-well:SpatialPartOfAWell .
139 +
130 ep-prodwell:UnknownFluid 140 ep-prodwell:UnknownFluid
131 rdf:type ep-well:FluidComponentType , owl:Class , ep-prodwell:InjectionFluidType ; 141 rdf:type ep-well:FluidComponentType , owl:Class , ep-prodwell:InjectionFluidType ;
132 rdfs:label "unknown fluid"^^xsd:string ; 142 rdfs:label "unknown fluid"^^xsd:string ;
133 rdfs:subClassOf ep-material:Fluid . 143 rdfs:subClassOf ep-material:Fluid .
134 144
145 +ep-prodwell:WellCompletion
146 + rdf:type owl:Class ;
147 + rdfs:label "well completion"^^xsd:string ;
148 + rdfs:subClassOf ep-well:SpatialPartOfAWellBore .
149 +
135 ep-prodwell:completeLiquidPartOf 150 ep-prodwell:completeLiquidPartOf
136 rdf:type owl:FunctionalProperty , owl:ObjectProperty ; 151 rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
137 rdfs:domain ep-material:QuantityOfMaterial ; 152 rdfs:domain ep-material:QuantityOfMaterial ;
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
4 # imports: http://www.reportinghub.no/ep/transform/1.0/mpr/productionTestResults 4 # imports: http://www.reportinghub.no/ep/transform/1.0/mpr/productionTestResults
5 # imports: http://www.reportinghub.no/ep/transform/1.0/mpr/wellTest 5 # imports: http://www.reportinghub.no/ep/transform/1.0/mpr/wellTest
6 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-commonPropertiesProductVolume-v1.1.1 6 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-commonPropertiesProductVolume-v1.1.1
7 +# imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-facilityIdentifierStructure-v1.1.1
7 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0 8 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0
8 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolume-v1.0 9 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolume-v1.0
9 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolumeReport-v1.0 10 # imports: http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolumeReport-v1.0
...@@ -11,6 +12,7 @@ ...@@ -11,6 +12,7 @@
11 12
12 @prefix : <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-collector#> . 13 @prefix : <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-collector#> .
13 @prefix TRANSFORM_mpr-facility-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-facility-v1.0#> . 14 @prefix TRANSFORM_mpr-facility-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-facility-v1.0#> .
15 +@prefix TRANSFORM_mpr-facilityIdentifierStructure-v1.1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-facilityIdentifierStructure-v1.1.1#> .
14 @prefix TRANSFORM_mpr-fluidSample-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0#> . 16 @prefix TRANSFORM_mpr-fluidSample-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0#> .
15 @prefix TRANSFORM_mpr-productVolume-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolume-v1.0#> . 17 @prefix TRANSFORM_mpr-productVolume-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolume-v1.0#> .
16 @prefix TRANSFORM_mpr-productVolumeReport-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolumeReport-v1.0#> . 18 @prefix TRANSFORM_mpr-productVolumeReport-v1: <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolumeReport-v1.0#> .
...@@ -32,5 +34,5 @@ ...@@ -32,5 +34,5 @@
32 34
33 <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-collector> 35 <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-collector>
34 rdf:type owl:Ontology ; 36 rdf:type owl:Ontology ;
35 - owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.0/mpr/wellTest> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productionReport-v1.0> , <http://www.reportinghub.no/ep/transform/1.0/mpr/injectionTestResults> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolume-v1.0> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolumeReport-v1.0> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0> , <http://www.reportinghub.no/ep/transform/1.0/mpr/productionTestResults> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-commonPropertiesProductVolume-v1.1.1> ; 37 + owl:imports <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-facilityIdentifierStructure-v1.1.1> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.0/mpr/wellTest> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productionReport-v1.0> , <http://www.reportinghub.no/ep/transform/1.0/mpr/injectionTestResults> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolume-v1.0> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-productVolumeReport-v1.0> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0> , <http://www.reportinghub.no/ep/transform/1.0/mpr/productionTestResults> , <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-commonPropertiesProductVolume-v1.1.1> ;
36 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 38 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
......
1 +# baseURI: null
2 +
3 +@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
4 +@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
5 +@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
6 +@prefix owl: <http://www.w3.org/2002/07/owl#> .
7 +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
8 +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
9 +@prefix visual: <http://topbraid.org/visual#> .
10 +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
11 +
12 +[] rdf:type inference:Configuration ;
13 + composite:child
14 + [ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
15 + composite:index "0"^^xsd:int
16 + ] .