David Leal

Improved material composition within the DDR representation

...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
3 # imports: http://www.reportinghub.no/ep/schema/1.0/core 3 # imports: http://www.reportinghub.no/ep/schema/1.0/core
4 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment 4 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment
5 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 5 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
6 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
6 # imports: http://www.reportinghub.no/ep/schema/1.0/organization 7 # imports: http://www.reportinghub.no/ep/schema/1.0/organization
7 # imports: http://www.reportinghub.no/ep/schema/1.0/report 8 # imports: http://www.reportinghub.no/ep/schema/1.0/report
8 # imports: http://www.reportinghub.no/ep/schema/1.0/well 9 # imports: http://www.reportinghub.no/ep/schema/1.0/well
...@@ -17,7 +18,7 @@ ...@@ -17,7 +18,7 @@
17 18
18 <http://www.reportinghub.no/ep/schema/1.0/activity> 19 <http://www.reportinghub.no/ep/schema/1.0/activity>
19 rdf:type owl:Ontology ; 20 rdf:type owl:Ontology ;
20 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.linkedmodel.org/1.1/schema/ordered> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> ; 21 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.linkedmodel.org/1.1/schema/ordered> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> ;
21 owl:versionInfo "0.1.0"^^xsd:string . 22 owl:versionInfo "0.1.0"^^xsd:string .
22 23
23 ep-activity:Activity 24 ep-activity:Activity
...@@ -26,33 +27,33 @@ ep-activity:Activity ...@@ -26,33 +27,33 @@ ep-activity:Activity
26 rdfs:subClassOf ep-core:PhysicalThing ; 27 rdfs:subClassOf ep-core:PhysicalThing ;
27 rdfs:subClassOf 28 rdfs:subClassOf
28 [ rdf:type owl:Restriction ; 29 [ rdf:type owl:Restriction ;
29 - owl:allValuesFrom ep-activity:Activity ; 30 + owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
30 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#during> 31 + owl:onProperty ep-activity:finishedAt
31 ] ; 32 ] ;
32 rdfs:subClassOf 33 rdfs:subClassOf
33 [ rdf:type owl:Restriction ; 34 [ rdf:type owl:Restriction ;
34 - owl:allValuesFrom ep-activity:Activity ; 35 + owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
35 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#overlaps> 36 + owl:onProperty ep-activity:startedAt
36 ] ; 37 ] ;
37 rdfs:subClassOf 38 rdfs:subClassOf
38 [ rdf:type owl:Restriction ; 39 [ rdf:type owl:Restriction ;
39 owl:allValuesFrom ep-activity:Activity ; 40 owl:allValuesFrom ep-activity:Activity ;
40 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#before> 41 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#after>
41 ] ; 42 ] ;
42 rdfs:subClassOf 43 rdfs:subClassOf
43 [ rdf:type owl:Restriction ; 44 [ rdf:type owl:Restriction ;
44 owl:allValuesFrom ep-activity:Activity ; 45 owl:allValuesFrom ep-activity:Activity ;
45 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#after> 46 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#before>
46 ] ; 47 ] ;
47 rdfs:subClassOf 48 rdfs:subClassOf
48 [ rdf:type owl:Restriction ; 49 [ rdf:type owl:Restriction ;
49 - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; 50 + owl:allValuesFrom ep-activity:Activity ;
50 - owl:onProperty ep-activity:startedAt 51 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#overlaps>
51 ] ; 52 ] ;
52 rdfs:subClassOf 53 rdfs:subClassOf
53 [ rdf:type owl:Restriction ; 54 [ rdf:type owl:Restriction ;
54 - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; 55 + owl:allValuesFrom ep-activity:Activity ;
55 - owl:onProperty ep-activity:finishedAt 56 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#during>
56 ] . 57 ] .
57 58
58 ep-activity:ActivitySuccessType 59 ep-activity:ActivitySuccessType
...@@ -66,13 +67,13 @@ ep-activity:DailyDrillingActivity ...@@ -66,13 +67,13 @@ ep-activity:DailyDrillingActivity
66 rdfs:subClassOf ep-activity:DrillingActivity ; 67 rdfs:subClassOf ep-activity:DrillingActivity ;
67 rdfs:subClassOf 68 rdfs:subClassOf
68 [ rdf:type owl:Restriction ; 69 [ rdf:type owl:Restriction ;
69 - owl:allValuesFrom ep-activity:Activity ; 70 + owl:allValuesFrom ep-activity:DrillingActivity ;
70 - owl:onProperty ep-core:hasPart 71 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
71 ] ; 72 ] ;
72 rdfs:subClassOf 73 rdfs:subClassOf
73 [ rdf:type owl:Restriction ; 74 [ rdf:type owl:Restriction ;
74 - owl:allValuesFrom ep-activity:DrillingActivity ; 75 + owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
75 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#last> 76 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
76 ] ; 77 ] ;
77 rdfs:subClassOf 78 rdfs:subClassOf
78 [ rdf:type owl:Restriction ; 79 [ rdf:type owl:Restriction ;
...@@ -81,13 +82,13 @@ ep-activity:DailyDrillingActivity ...@@ -81,13 +82,13 @@ ep-activity:DailyDrillingActivity
81 ] ; 82 ] ;
82 rdfs:subClassOf 83 rdfs:subClassOf
83 [ rdf:type owl:Restriction ; 84 [ rdf:type owl:Restriction ;
84 - owl:maxCardinality "1"^^xsd:nonNegativeInteger ; 85 + owl:allValuesFrom ep-activity:DrillingActivity ;
85 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#first> 86 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#last>
86 ] ; 87 ] ;
87 rdfs:subClassOf 88 rdfs:subClassOf
88 [ rdf:type owl:Restriction ; 89 [ rdf:type owl:Restriction ;
89 - owl:allValuesFrom ep-activity:DrillingActivity ; 90 + owl:allValuesFrom ep-activity:Activity ;
90 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#first> 91 + owl:onProperty ep-core:hasPart
91 ] . 92 ] .
92 93
93 ep-activity:DailyDrillingActivityToStatus 94 ep-activity:DailyDrillingActivityToStatus
...@@ -96,13 +97,13 @@ ep-activity:DailyDrillingActivityToStatus ...@@ -96,13 +97,13 @@ ep-activity:DailyDrillingActivityToStatus
96 rdfs:subClassOf ep-activity:DrillingActivity ; 97 rdfs:subClassOf ep-activity:DrillingActivity ;
97 rdfs:subClassOf 98 rdfs:subClassOf
98 [ rdf:type owl:Restriction ; 99 [ rdf:type owl:Restriction ;
99 - owl:allValuesFrom ep-activity:DrillingActivity ; 100 + owl:allValuesFrom ep-activity:Activity ;
100 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#last> 101 + owl:onProperty ep-core:hasPart
101 ] ; 102 ] ;
102 rdfs:subClassOf 103 rdfs:subClassOf
103 [ rdf:type owl:Restriction ; 104 [ rdf:type owl:Restriction ;
104 - owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#AllOrPartOfTheLifeOfAWellBore> ; 105 + owl:allValuesFrom ep-activity:DrillingActivity ;
105 - owl:onProperty ep-activity:onWellBore 106 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#first>
106 ] ; 107 ] ;
107 rdfs:subClassOf 108 rdfs:subClassOf
108 [ rdf:type owl:Restriction ; 109 [ rdf:type owl:Restriction ;
...@@ -111,13 +112,13 @@ ep-activity:DailyDrillingActivityToStatus ...@@ -111,13 +112,13 @@ ep-activity:DailyDrillingActivityToStatus
111 ] ; 112 ] ;
112 rdfs:subClassOf 113 rdfs:subClassOf
113 [ rdf:type owl:Restriction ; 114 [ rdf:type owl:Restriction ;
114 - owl:allValuesFrom ep-activity:DrillingActivity ; 115 + owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#AllOrPartOfTheLifeOfAWellBore> ;
115 - owl:onProperty <http://www.linkedmodel.org/schema/ordered#first> 116 + owl:onProperty ep-activity:onWellBore
116 ] ; 117 ] ;
117 rdfs:subClassOf 118 rdfs:subClassOf
118 [ rdf:type owl:Restriction ; 119 [ rdf:type owl:Restriction ;
119 - owl:allValuesFrom ep-activity:Activity ; 120 + owl:allValuesFrom ep-activity:DrillingActivity ;
120 - owl:onProperty ep-core:hasPart 121 + owl:onProperty <http://www.linkedmodel.org/schema/ordered#last>
121 ] . 122 ] .
122 123
123 ep-activity:Drill-bypass 124 ep-activity:Drill-bypass
...@@ -151,7 +152,7 @@ ep-activity:Drill-sidetrack ...@@ -151,7 +152,7 @@ ep-activity:Drill-sidetrack
151 rdfs:subClassOf ep-activity:DrillingActivity . 152 rdfs:subClassOf ep-activity:DrillingActivity .
152 153
153 ep-activity:DrillStemTest 154 ep-activity:DrillStemTest
154 - rdf:type owl:Class , ep-activity:WellTestType ; 155 + rdf:type ep-activity:WellTestType , owl:Class ;
155 rdfs:label "drill stem test"^^xsd:string ; 156 rdfs:label "drill stem test"^^xsd:string ;
156 rdfs:subClassOf ep-activity:WellTest ; 157 rdfs:subClassOf ep-activity:WellTest ;
157 dc:description "A test to determine the productive capacity, pressure, permeability or extent (or a combination of these) of a hydrocarbon reservoir, with the drillstring still in the hole."^^xsd:string ; 158 dc:description "A test to determine the productive capacity, pressure, permeability or extent (or a combination of these) of a hydrocarbon reservoir, with the drillstring still in the hole."^^xsd:string ;
...@@ -163,72 +164,72 @@ ep-activity:DrillingActivity ...@@ -163,72 +164,72 @@ ep-activity:DrillingActivity
163 rdfs:subClassOf ep-activity:Activity . 164 rdfs:subClassOf ep-activity:Activity .
164 165
165 ep-activity:DrillingActivity-bop_test 166 ep-activity:DrillingActivity-bop_test
166 - rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ; 167 + rdf:type ep-activity:DrillingActivityTypeAccordingToEquipmentType , owl:Class ;
167 rdfs:label "drilling activity - BOP test"^^xsd:string ; 168 rdfs:label "drilling activity - BOP test"^^xsd:string ;
168 rdfs:subClassOf ep-activity:DrillingActivity . 169 rdfs:subClassOf ep-activity:DrillingActivity .
169 170
170 ep-activity:DrillingActivity-circulation_loss 171 ep-activity:DrillingActivity-circulation_loss
171 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 172 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
172 rdfs:label "drilling activity - circulation loss"^^xsd:string ; 173 rdfs:label "drilling activity - circulation loss"^^xsd:string ;
173 rdfs:subClassOf ep-activity:DrillingActivity . 174 rdfs:subClassOf ep-activity:DrillingActivity .
174 175
175 ep-activity:DrillingActivity-coiled_tubing 176 ep-activity:DrillingActivity-coiled_tubing
176 - rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ; 177 + rdf:type ep-activity:DrillingActivityTypeAccordingToEquipmentType , owl:Class ;
177 rdfs:label "drilling activity - coiled tubing"^^xsd:string ; 178 rdfs:label "drilling activity - coiled tubing"^^xsd:string ;
178 rdfs:subClassOf ep-activity:DrillingActivity . 179 rdfs:subClassOf ep-activity:DrillingActivity .
179 180
180 ep-activity:DrillingActivity-equipment_failure 181 ep-activity:DrillingActivity-equipment_failure
181 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 182 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
182 rdfs:label "drilling activity - equipment failure"^^xsd:string ; 183 rdfs:label "drilling activity - equipment failure"^^xsd:string ;
183 rdfs:subClassOf ep-activity:DrillingActivity . 184 rdfs:subClassOf ep-activity:DrillingActivity .
184 185
185 ep-activity:DrillingActivity-equipment_hang 186 ep-activity:DrillingActivity-equipment_hang
186 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 187 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
187 rdfs:label "drilling activity - equipment hang"^^xsd:string ; 188 rdfs:label "drilling activity - equipment hang"^^xsd:string ;
188 rdfs:subClassOf ep-activity:DrillingActivity . 189 rdfs:subClassOf ep-activity:DrillingActivity .
189 190
190 ep-activity:DrillingActivity-fixed_equipment 191 ep-activity:DrillingActivity-fixed_equipment
191 - rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ; 192 + rdf:type ep-activity:DrillingActivityTypeAccordingToEquipmentType , owl:Class ;
192 rdfs:label "drilling activity - fixed equipment"^^xsd:string ; 193 rdfs:label "drilling activity - fixed equipment"^^xsd:string ;
193 rdfs:subClassOf ep-activity:DrillingActivity . 194 rdfs:subClassOf ep-activity:DrillingActivity .
194 195
195 ep-activity:DrillingActivity-injury 196 ep-activity:DrillingActivity-injury
196 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 197 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
197 rdfs:label "drilling activity- injury"^^xsd:string ; 198 rdfs:label "drilling activity- injury"^^xsd:string ;
198 rdfs:subClassOf ep-activity:DrillingActivity . 199 rdfs:subClassOf ep-activity:DrillingActivity .
199 200
200 ep-activity:DrillingActivity-kick 201 ep-activity:DrillingActivity-kick
201 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 202 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
202 rdfs:label "drilling activity - operation kick"^^xsd:string ; 203 rdfs:label "drilling activity - operation kick"^^xsd:string ;
203 rdfs:subClassOf ep-activity:DrillingActivity . 204 rdfs:subClassOf ep-activity:DrillingActivity .
204 205
205 ep-activity:DrillingActivity-mud_loss 206 ep-activity:DrillingActivity-mud_loss
206 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 207 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
207 rdfs:label "drilling activity - mud loss"^^xsd:string ; 208 rdfs:label "drilling activity - mud loss"^^xsd:string ;
208 rdfs:subClassOf ep-activity:DrillingActivity . 209 rdfs:subClassOf ep-activity:DrillingActivity .
209 210
210 ep-activity:DrillingActivity-operation_failed 211 ep-activity:DrillingActivity-operation_failed
211 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 212 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
212 rdfs:label "drilling activity - operation failed"^^xsd:string ; 213 rdfs:label "drilling activity - operation failed"^^xsd:string ;
213 rdfs:subClassOf ep-activity:DrillingActivity . 214 rdfs:subClassOf ep-activity:DrillingActivity .
214 215
215 ep-activity:DrillingActivity-snubbing 216 ep-activity:DrillingActivity-snubbing
216 - rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ; 217 + rdf:type ep-activity:DrillingActivityTypeAccordingToEquipmentType , owl:Class ;
217 rdfs:label "drilling activity - snubbing"^^xsd:string ; 218 rdfs:label "drilling activity - snubbing"^^xsd:string ;
218 rdfs:subClassOf ep-activity:DrillingActivity . 219 rdfs:subClassOf ep-activity:DrillingActivity .
219 220
220 ep-activity:DrillingActivity-stuck_equipment 221 ep-activity:DrillingActivity-stuck_equipment
221 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 222 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
222 rdfs:label "drilling activity - stuck equipment"^^xsd:string ; 223 rdfs:label "drilling activity - stuck equipment"^^xsd:string ;
223 rdfs:subClassOf ep-activity:DrillingActivity . 224 rdfs:subClassOf ep-activity:DrillingActivity .
224 225
225 ep-activity:DrillingActivity-success 226 ep-activity:DrillingActivity-success
226 - rdf:type owl:Class , ep-activity:DrillingActivityOutcomeType ; 227 + rdf:type ep-activity:DrillingActivityOutcomeType , owl:Class ;
227 rdfs:label "drilling activity - success"^^xsd:string ; 228 rdfs:label "drilling activity - success"^^xsd:string ;
228 rdfs:subClassOf ep-activity:DrillingActivity . 229 rdfs:subClassOf ep-activity:DrillingActivity .
229 230
230 ep-activity:DrillingActivity-wire_line 231 ep-activity:DrillingActivity-wire_line
231 - rdf:type owl:Class , ep-activity:DrillingActivityTypeAccordingToEquipmentType ; 232 + rdf:type ep-activity:DrillingActivityTypeAccordingToEquipmentType , owl:Class ;
232 rdfs:label "drilling activity - wireline"^^xsd:string ; 233 rdfs:label "drilling activity - wireline"^^xsd:string ;
233 rdfs:subClassOf ep-activity:DrillingActivity . 234 rdfs:subClassOf ep-activity:DrillingActivity .
234 235
...@@ -253,7 +254,7 @@ ep-activity:ExtractAWellCore ...@@ -253,7 +254,7 @@ ep-activity:ExtractAWellCore
253 rdfs:subClassOf ep-activity:WellOperation . 254 rdfs:subClassOf ep-activity:WellOperation .
254 255
255 ep-activity:FailedActivity 256 ep-activity:FailedActivity
256 - rdf:type owl:Class , ep-activity:ActivitySuccessType ; 257 + rdf:type ep-activity:ActivitySuccessType , owl:Class ;
257 rdfs:label "failed activity"^^xsd:string ; 258 rdfs:label "failed activity"^^xsd:string ;
258 rdfs:subClassOf ep-activity:Activity ; 259 rdfs:subClassOf ep-activity:Activity ;
259 owl:disjointWith ep-activity:SuccessfulActivity . 260 owl:disjointWith ep-activity:SuccessfulActivity .
...@@ -264,7 +265,7 @@ ep-activity:FluidReading ...@@ -264,7 +265,7 @@ ep-activity:FluidReading
264 rdfs:subClassOf ep-activity:Activity . 265 rdfs:subClassOf ep-activity:Activity .
265 266
266 ep-activity:FormationIntegrityTest 267 ep-activity:FormationIntegrityTest
267 - rdf:type owl:Class , ep-activity:PressureTestType ; 268 + rdf:type ep-activity:PressureTestType , owl:Class ;
268 rdfs:label "formation integrity test"^^xsd:string ; 269 rdfs:label "formation integrity test"^^xsd:string ;
269 rdfs:subClassOf ep-activity:WellBorePressureTest ; 270 rdfs:subClassOf ep-activity:WellBorePressureTest ;
270 owl:disjointWith ep-activity:LeakOffTest . 271 owl:disjointWith ep-activity:LeakOffTest .
...@@ -334,7 +335,7 @@ ep-activity:GasReadingType ...@@ -334,7 +335,7 @@ ep-activity:GasReadingType
334 rdfs:subClassOf owl:Class . 335 rdfs:subClassOf owl:Class .
335 336
336 ep-activity:LeakOffTest 337 ep-activity:LeakOffTest
337 - rdf:type owl:Class , ep-activity:PressureTestType ; 338 + rdf:type ep-activity:PressureTestType , owl:Class ;
338 rdfs:label "leak-off test"^^xsd:string ; 339 rdfs:label "leak-off test"^^xsd:string ;
339 rdfs:subClassOf ep-activity:WellBorePressureTest ; 340 rdfs:subClassOf ep-activity:WellBorePressureTest ;
340 owl:disjointWith ep-activity:FormationIntegrityTest . 341 owl:disjointWith ep-activity:FormationIntegrityTest .
...@@ -365,7 +366,7 @@ ep-activity:OffshoreWellActivity ...@@ -365,7 +366,7 @@ ep-activity:OffshoreWellActivity
365 rdfs:subClassOf ep-activity:OffshoreActivity ; 366 rdfs:subClassOf ep-activity:OffshoreActivity ;
366 rdfs:subClassOf 367 rdfs:subClassOf
367 [ rdf:type owl:Restriction ; 368 [ rdf:type owl:Restriction ;
368 - owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#Well> ; 369 + owl:cardinality "1"^^xsd:nonNegativeInteger ;
369 owl:onProperty ep-activity:onWell 370 owl:onProperty ep-activity:onWell
370 ] ; 371 ] ;
371 rdfs:subClassOf 372 rdfs:subClassOf
...@@ -375,7 +376,7 @@ ep-activity:OffshoreWellActivity ...@@ -375,7 +376,7 @@ ep-activity:OffshoreWellActivity
375 ] ; 376 ] ;
376 rdfs:subClassOf 377 rdfs:subClassOf
377 [ rdf:type owl:Restriction ; 378 [ rdf:type owl:Restriction ;
378 - owl:cardinality "1"^^xsd:nonNegativeInteger ; 379 + owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#Well> ;
379 owl:onProperty ep-activity:onWell 380 owl:onProperty ep-activity:onWell
380 ] . 381 ] .
381 382
...@@ -395,13 +396,13 @@ ep-activity:PorePressureDeterminationType ...@@ -395,13 +396,13 @@ ep-activity:PorePressureDeterminationType
395 rdfs:subClassOf owl:Class . 396 rdfs:subClassOf owl:Class .
396 397
397 ep-activity:PorePressureEstimation 398 ep-activity:PorePressureEstimation
398 - rdf:type owl:Class , ep-activity:PorePressureDeterminationType ; 399 + rdf:type ep-activity:PorePressureDeterminationType , owl:Class ;
399 rdfs:label "pore pressure estimation"^^xsd:string ; 400 rdfs:label "pore pressure estimation"^^xsd:string ;
400 rdfs:subClassOf ep-activity:PorePressureDetermination ; 401 rdfs:subClassOf ep-activity:PorePressureDetermination ;
401 owl:disjointWith ep-activity:PorePressureMeasurement . 402 owl:disjointWith ep-activity:PorePressureMeasurement .
402 403
403 ep-activity:PorePressureMeasurement 404 ep-activity:PorePressureMeasurement
404 - rdf:type owl:Class , ep-activity:PorePressureDeterminationType ; 405 + rdf:type ep-activity:PorePressureDeterminationType , owl:Class ;
405 rdfs:label "pore pressure measurement"^^xsd:string ; 406 rdfs:label "pore pressure measurement"^^xsd:string ;
406 rdfs:subClassOf ep-activity:PorePressureDetermination ; 407 rdfs:subClassOf ep-activity:PorePressureDetermination ;
407 owl:disjointWith ep-activity:PorePressureEstimation . 408 owl:disjointWith ep-activity:PorePressureEstimation .
...@@ -422,14 +423,14 @@ ep-activity:ProductionActivity ...@@ -422,14 +423,14 @@ ep-activity:ProductionActivity
422 rdfs:subClassOf ep-activity:Activity . 423 rdfs:subClassOf ep-activity:Activity .
423 424
424 ep-activity:ProductionTest 425 ep-activity:ProductionTest
425 - rdf:type owl:Class , ep-activity:WellTestType ; 426 + rdf:type ep-activity:WellTestType , owl:Class ;
426 rdfs:label "production test"^^xsd:string ; 427 rdfs:label "production test"^^xsd:string ;
427 rdfs:subClassOf ep-activity:WellTest ; 428 rdfs:subClassOf ep-activity:WellTest ;
428 dc:description "A test to determine the daily rate of oil, gas, and water production from a (potential) reservoir."^^xsd:string ; 429 dc:description "A test to determine the daily rate of oil, gas, and water production from a (potential) reservoir."^^xsd:string ;
429 owl:disjointWith ep-activity:DrillStemTest . 430 owl:disjointWith ep-activity:DrillStemTest .
430 431
431 ep-activity:SuccessfulActivity 432 ep-activity:SuccessfulActivity
432 - rdf:type owl:Class , ep-activity:ActivitySuccessType ; 433 + rdf:type ep-activity:ActivitySuccessType , owl:Class ;
433 rdfs:label "successful activity"^^xsd:string ; 434 rdfs:label "successful activity"^^xsd:string ;
434 rdfs:subClassOf ep-activity:Activity ; 435 rdfs:subClassOf ep-activity:Activity ;
435 owl:disjointWith ep-activity:FailedActivity . 436 owl:disjointWith ep-activity:FailedActivity .
...@@ -494,23 +495,23 @@ ep-activity:WellCementJob ...@@ -494,23 +495,23 @@ ep-activity:WellCementJob
494 rdfs:subClassOf ep-activity:WellOperation . 495 rdfs:subClassOf ep-activity:WellOperation .
495 496
496 ep-activity:WellCementJob-other 497 ep-activity:WellCementJob-other
497 - rdf:type owl:Class , ep-activity:WellCementJobPurposeType ; 498 + rdf:type ep-activity:WellCementJobPurposeType , owl:Class ;
498 rdfs:label "well cement job other"^^xsd:string ; 499 rdfs:label "well cement job other"^^xsd:string ;
499 rdfs:subClassOf ep-activity:WellCementJob ; 500 rdfs:subClassOf ep-activity:WellCementJob ;
500 - owl:disjointWith ep-activity:WellCementJob-squeeze , ep-activity:WellCementJob-primary , ep-activity:WellCementJob-plug . 501 + owl:disjointWith ep-activity:WellCementJob-plug , ep-activity:WellCementJob-primary , ep-activity:WellCementJob-squeeze .
501 502
502 ep-activity:WellCementJob-plug 503 ep-activity:WellCementJob-plug
503 - rdf:type owl:Class , ep-activity:WellCementJobPurposeType ; 504 + rdf:type ep-activity:WellCementJobPurposeType , owl:Class ;
504 rdfs:label "well cement job plug"^^xsd:string ; 505 rdfs:label "well cement job plug"^^xsd:string ;
505 rdfs:subClassOf ep-activity:WellCementJob . 506 rdfs:subClassOf ep-activity:WellCementJob .
506 507
507 ep-activity:WellCementJob-primary 508 ep-activity:WellCementJob-primary
508 - rdf:type owl:Class , ep-activity:WellCementJobPurposeType ; 509 + rdf:type ep-activity:WellCementJobPurposeType , owl:Class ;
509 rdfs:label "well cement job primary"^^xsd:string ; 510 rdfs:label "well cement job primary"^^xsd:string ;
510 rdfs:subClassOf ep-activity:WellCementJob . 511 rdfs:subClassOf ep-activity:WellCementJob .
511 512
512 ep-activity:WellCementJob-squeeze 513 ep-activity:WellCementJob-squeeze
513 - rdf:type owl:Class , ep-activity:WellCementJobPurposeType ; 514 + rdf:type ep-activity:WellCementJobPurposeType , owl:Class ;
514 rdfs:label "well cement job squeeze"^^xsd:string ; 515 rdfs:label "well cement job squeeze"^^xsd:string ;
515 rdfs:subClassOf ep-activity:WellCementJob . 516 rdfs:subClassOf ep-activity:WellCementJob .
516 517
...@@ -555,73 +556,73 @@ ep-activity:WellCementJobTopPlugType ...@@ -555,73 +556,73 @@ ep-activity:WellCementJobTopPlugType
555 rdfs:subClassOf owl:Class . 556 rdfs:subClassOf owl:Class .
556 557
557 ep-activity:WellCementJobWithBottomPlug 558 ep-activity:WellCementJobWithBottomPlug
558 - rdf:type owl:Class , ep-activity:WellCementJobBottomPlugType ; 559 + rdf:type ep-activity:WellCementJobBottomPlugType , owl:Class ;
559 rdfs:label "well cement job with bottom plug"^^xsd:string ; 560 rdfs:label "well cement job with bottom plug"^^xsd:string ;
560 rdfs:subClassOf ep-activity:WellCementJob ; 561 rdfs:subClassOf ep-activity:WellCementJob ;
561 owl:disjointWith ep-activity:WellCementJobWithoutBottomPlug . 562 owl:disjointWith ep-activity:WellCementJobWithoutBottomPlug .
562 563
563 ep-activity:WellCementJobWithCasingReciprocation 564 ep-activity:WellCementJobWithCasingReciprocation
564 - rdf:type owl:Class , ep-activity:WellCementJobCasingReciprocationType ; 565 + rdf:type ep-activity:WellCementJobCasingReciprocationType , owl:Class ;
565 rdfs:label "well cement job with casing reciprocation"^^xsd:string ; 566 rdfs:label "well cement job with casing reciprocation"^^xsd:string ;
566 rdfs:subClassOf ep-activity:WellCementJob ; 567 rdfs:subClassOf ep-activity:WellCementJob ;
567 owl:disjointWith ep-activity:WellCementJobWithoutCasingReciprocation . 568 owl:disjointWith ep-activity:WellCementJobWithoutCasingReciprocation .
568 569
569 ep-activity:WellCementJobWithCasingRotation 570 ep-activity:WellCementJobWithCasingRotation
570 - rdf:type owl:Class , ep-activity:WellCementJobCasingRotationType ; 571 + rdf:type ep-activity:WellCementJobCasingRotationType , owl:Class ;
571 rdfs:label "well cement job with casing rotation"^^xsd:string ; 572 rdfs:label "well cement job with casing rotation"^^xsd:string ;
572 rdfs:subClassOf ep-activity:WellCementJob ; 573 rdfs:subClassOf ep-activity:WellCementJob ;
573 owl:disjointWith ep-activity:WellCementJobWithoutTopPlug . 574 owl:disjointWith ep-activity:WellCementJobWithoutTopPlug .
574 575
575 ep-activity:WellCementJobWithFloatHolding 576 ep-activity:WellCementJobWithFloatHolding
576 - rdf:type owl:Class , ep-activity:WellCementJobFloatHoldingType ; 577 + rdf:type ep-activity:WellCementJobFloatHoldingType , owl:Class ;
577 rdfs:label "well cement job with float holding"^^xsd:string ; 578 rdfs:label "well cement job with float holding"^^xsd:string ;
578 rdfs:subClassOf ep-activity:WellCementJob ; 579 rdfs:subClassOf ep-activity:WellCementJob ;
579 owl:disjointWith ep-activity:WellCementJobWithoutFloatHolding . 580 owl:disjointWith ep-activity:WellCementJobWithoutFloatHolding .
580 581
581 ep-activity:WellCementJobWithPlugBumping 582 ep-activity:WellCementJobWithPlugBumping
582 - rdf:type owl:Class , ep-activity:WellCementJobPlugBumpingType ; 583 + rdf:type ep-activity:WellCementJobPlugBumpingType , owl:Class ;
583 rdfs:label "well cement job with plug bumping"^^xsd:string ; 584 rdfs:label "well cement job with plug bumping"^^xsd:string ;
584 rdfs:subClassOf ep-activity:WellCementJob ; 585 rdfs:subClassOf ep-activity:WellCementJob ;
585 owl:disjointWith ep-activity:WellCementJobWithoutBottomPlug . 586 owl:disjointWith ep-activity:WellCementJobWithoutBottomPlug .
586 587
587 ep-activity:WellCementJobWithTopPlug 588 ep-activity:WellCementJobWithTopPlug
588 - rdf:type owl:Class , ep-activity:WellCementJobTopPlugType ; 589 + rdf:type ep-activity:WellCementJobTopPlugType , owl:Class ;
589 rdfs:label "well cement job with top plug"^^xsd:string ; 590 rdfs:label "well cement job with top plug"^^xsd:string ;
590 rdfs:subClassOf ep-activity:WellCementJob ; 591 rdfs:subClassOf ep-activity:WellCementJob ;
591 owl:disjointWith ep-activity:WellCementJobWithoutTopPlug . 592 owl:disjointWith ep-activity:WellCementJobWithoutTopPlug .
592 593
593 ep-activity:WellCementJobWithoutBottomPlug 594 ep-activity:WellCementJobWithoutBottomPlug
594 - rdf:type owl:Class , ep-activity:WellCementJobBottomPlugType ; 595 + rdf:type ep-activity:WellCementJobBottomPlugType , owl:Class ;
595 rdfs:label "well cement job without bottom plug"^^xsd:string ; 596 rdfs:label "well cement job without bottom plug"^^xsd:string ;
596 rdfs:subClassOf ep-activity:WellCementJob ; 597 rdfs:subClassOf ep-activity:WellCementJob ;
597 owl:disjointWith ep-activity:WellCementJobWithBottomPlug . 598 owl:disjointWith ep-activity:WellCementJobWithBottomPlug .
598 599
599 ep-activity:WellCementJobWithoutCasingReciprocation 600 ep-activity:WellCementJobWithoutCasingReciprocation
600 - rdf:type owl:Class , ep-activity:WellCementJobCasingReciprocationType ; 601 + rdf:type ep-activity:WellCementJobCasingReciprocationType , owl:Class ;
601 rdfs:label "well cement job without casing reciprocation"^^xsd:string ; 602 rdfs:label "well cement job without casing reciprocation"^^xsd:string ;
602 rdfs:subClassOf ep-activity:WellCementJob ; 603 rdfs:subClassOf ep-activity:WellCementJob ;
603 owl:disjointWith ep-activity:WellCementJobWithCasingRotation . 604 owl:disjointWith ep-activity:WellCementJobWithCasingRotation .
604 605
605 ep-activity:WellCementJobWithoutCasingRotation 606 ep-activity:WellCementJobWithoutCasingRotation
606 - rdf:type owl:Class , ep-activity:WellCementJobCasingRotationType ; 607 + rdf:type ep-activity:WellCementJobCasingRotationType , owl:Class ;
607 rdfs:label "well cement job without casing rotation"^^xsd:string ; 608 rdfs:label "well cement job without casing rotation"^^xsd:string ;
608 rdfs:subClassOf ep-activity:WellCementJob ; 609 rdfs:subClassOf ep-activity:WellCementJob ;
609 owl:disjointWith ep-activity:WellCementJobWithCasingRotation . 610 owl:disjointWith ep-activity:WellCementJobWithCasingRotation .
610 611
611 ep-activity:WellCementJobWithoutFloatHolding 612 ep-activity:WellCementJobWithoutFloatHolding
612 - rdf:type owl:Class , ep-activity:WellCementJobFloatHoldingType ; 613 + rdf:type ep-activity:WellCementJobFloatHoldingType , owl:Class ;
613 rdfs:label "well cement job without float holding"^^xsd:string ; 614 rdfs:label "well cement job without float holding"^^xsd:string ;
614 rdfs:subClassOf ep-activity:WellCementJob ; 615 rdfs:subClassOf ep-activity:WellCementJob ;
615 owl:disjointWith ep-activity:WellCementJobWithFloatHolding . 616 owl:disjointWith ep-activity:WellCementJobWithFloatHolding .
616 617
617 ep-activity:WellCementJobWithoutPlugBumping 618 ep-activity:WellCementJobWithoutPlugBumping
618 - rdf:type owl:Class , ep-activity:WellCementJobPlugBumpingType ; 619 + rdf:type ep-activity:WellCementJobPlugBumpingType , owl:Class ;
619 rdfs:label "well cement job without plug bumping"^^xsd:string ; 620 rdfs:label "well cement job without plug bumping"^^xsd:string ;
620 rdfs:subClassOf ep-activity:WellCementJob ; 621 rdfs:subClassOf ep-activity:WellCementJob ;
621 owl:disjointWith ep-activity:WellCementJobWithBottomPlug . 622 owl:disjointWith ep-activity:WellCementJobWithBottomPlug .
622 623
623 ep-activity:WellCementJobWithoutTopPlug 624 ep-activity:WellCementJobWithoutTopPlug
624 - rdf:type owl:Class , ep-activity:WellCementJobTopPlugType ; 625 + rdf:type ep-activity:WellCementJobTopPlugType , owl:Class ;
625 rdfs:label "well cement job without top plug"^^xsd:string ; 626 rdfs:label "well cement job without top plug"^^xsd:string ;
626 rdfs:subClassOf ep-activity:WellCementJob ; 627 rdfs:subClassOf ep-activity:WellCementJob ;
627 owl:disjointWith ep-activity:WellCementJobWithTopPlug . 628 owl:disjointWith ep-activity:WellCementJobWithTopPlug .
...@@ -637,13 +638,13 @@ ep-activity:WellCementPumpingFluidReturnType ...@@ -637,13 +638,13 @@ ep-activity:WellCementPumpingFluidReturnType
637 rdfs:subClassOf owl:Class . 638 rdfs:subClassOf owl:Class .
638 639
639 ep-activity:WellCementPumpingWithFluidReturn 640 ep-activity:WellCementPumpingWithFluidReturn
640 - rdf:type owl:Class , ep-activity:WellCementPumpingFluidReturnType ; 641 + rdf:type ep-activity:WellCementPumpingFluidReturnType , owl:Class ;
641 rdfs:label "well cement pumping with fluid return"^^xsd:string ; 642 rdfs:label "well cement pumping with fluid return"^^xsd:string ;
642 rdfs:subClassOf ep-activity:WellCementPumping ; 643 rdfs:subClassOf ep-activity:WellCementPumping ;
643 owl:disjointWith ep-activity:WellCementPumpingWithoutFluidReturn . 644 owl:disjointWith ep-activity:WellCementPumpingWithoutFluidReturn .
644 645
645 ep-activity:WellCementPumpingWithoutFluidReturn 646 ep-activity:WellCementPumpingWithoutFluidReturn
646 - rdf:type owl:Class , ep-activity:WellCementPumpingFluidReturnType ; 647 + rdf:type ep-activity:WellCementPumpingFluidReturnType , owl:Class ;
647 rdfs:label "well cement pumping without fluid return"^^xsd:string ; 648 rdfs:label "well cement pumping without fluid return"^^xsd:string ;
648 rdfs:subClassOf ep-activity:WellCementPumping ; 649 rdfs:subClassOf ep-activity:WellCementPumping ;
649 owl:disjointWith ep-activity:WellCementPumpingWithFluidReturn . 650 owl:disjointWith ep-activity:WellCementPumpingWithFluidReturn .
...@@ -659,28 +660,28 @@ ep-activity:WellControlIncident ...@@ -659,28 +660,28 @@ ep-activity:WellControlIncident
659 rdfs:subClassOf ep-activity:WellOperation . 660 rdfs:subClassOf ep-activity:WellOperation .
660 661
661 ep-activity:WellControlIncident-gas_kick 662 ep-activity:WellControlIncident-gas_kick
662 - rdf:type owl:Class , ep-activity:WellControlIncidentType ; 663 + rdf:type ep-activity:WellControlIncidentType , owl:Class ;
663 rdfs:label "well control incident gas kick"^^xsd:string ; 664 rdfs:label "well control incident gas kick"^^xsd:string ;
664 rdfs:subClassOf ep-activity:WellControlIncident ; 665 rdfs:subClassOf ep-activity:WellControlIncident ;
665 - owl:disjointWith ep-activity:WellControlIncident-water_kick , ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-oil_kick . 666 + owl:disjointWith ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-water_kick .
666 667
667 ep-activity:WellControlIncident-oil_kick 668 ep-activity:WellControlIncident-oil_kick
668 - rdf:type owl:Class , ep-activity:WellControlIncidentType ; 669 + rdf:type ep-activity:WellControlIncidentType , owl:Class ;
669 rdfs:label "well control incident oil kick"^^xsd:string ; 670 rdfs:label "well control incident oil kick"^^xsd:string ;
670 rdfs:subClassOf ep-activity:WellControlIncident ; 671 rdfs:subClassOf ep-activity:WellControlIncident ;
671 - owl:disjointWith ep-activity:WellControlIncident-water_kick , ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-gas_kick . 672 + owl:disjointWith ep-activity:WellControlIncident-gas_kick , ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-water_kick .
672 673
673 ep-activity:WellControlIncident-shallow_gas_kick 674 ep-activity:WellControlIncident-shallow_gas_kick
674 - rdf:type owl:Class , ep-activity:WellControlIncidentType ; 675 + rdf:type ep-activity:WellControlIncidentType , owl:Class ;
675 rdfs:label "well control incident shallow gas kick"^^xsd:string ; 676 rdfs:label "well control incident shallow gas kick"^^xsd:string ;
676 rdfs:subClassOf ep-activity:WellControlIncident ; 677 rdfs:subClassOf ep-activity:WellControlIncident ;
677 - owl:disjointWith ep-activity:WellControlIncident-water_kick , ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-gas_kick . 678 + owl:disjointWith ep-activity:WellControlIncident-gas_kick , ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-water_kick .
678 679
679 ep-activity:WellControlIncident-water_kick 680 ep-activity:WellControlIncident-water_kick
680 - rdf:type owl:Class , ep-activity:WellControlIncidentType ; 681 + rdf:type ep-activity:WellControlIncidentType , owl:Class ;
681 rdfs:label "well control incident water kick"^^xsd:string ; 682 rdfs:label "well control incident water kick"^^xsd:string ;
682 rdfs:subClassOf ep-activity:WellControlIncident ; 683 rdfs:subClassOf ep-activity:WellControlIncident ;
683 - owl:disjointWith ep-activity:WellControlIncident-shallow_gas_kick , ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-gas_kick . 684 + owl:disjointWith ep-activity:WellControlIncident-gas_kick , ep-activity:WellControlIncident-oil_kick , ep-activity:WellControlIncident-shallow_gas_kick .
684 685
685 ep-activity:WellControlIncidentType 686 ep-activity:WellControlIncidentType
686 rdf:type rdfs:Class ; 687 rdf:type rdfs:Class ;
...@@ -693,40 +694,40 @@ ep-activity:WellKilling ...@@ -693,40 +694,40 @@ ep-activity:WellKilling
693 rdfs:subClassOf ep-activity:WellOperation . 694 rdfs:subClassOf ep-activity:WellOperation .
694 695
695 ep-activity:WellKilling-bullheading 696 ep-activity:WellKilling-bullheading
696 - rdf:type owl:Class , ep-activity:WellKillingType ; 697 + rdf:type ep-activity:WellKillingType , owl:Class ;
697 rdfs:label "well killing bullheading"^^xsd:string ; 698 rdfs:label "well killing bullheading"^^xsd:string ;
698 rdfs:subClassOf ep-activity:WellKilling ; 699 rdfs:subClassOf ep-activity:WellKilling ;
699 - owl:disjointWith ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-drillers_method . 700 + owl:disjointWith ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-wait_and_weight .
700 701
701 ep-activity:WellKilling-drillers_method 702 ep-activity:WellKilling-drillers_method
702 - rdf:type owl:Class , ep-activity:WellKillingType ; 703 + rdf:type ep-activity:WellKillingType , owl:Class ;
703 rdfs:label "well killing drillers method"^^xsd:string ; 704 rdfs:label "well killing drillers method"^^xsd:string ;
704 rdfs:subClassOf ep-activity:WellKilling ; 705 rdfs:subClassOf ep-activity:WellKilling ;
705 - owl:disjointWith ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-bullheading . 706 + owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-wait_and_weight .
706 707
707 ep-activity:WellKilling-forward_circulation 708 ep-activity:WellKilling-forward_circulation
708 - rdf:type owl:Class , ep-activity:WellKillingType ; 709 + rdf:type ep-activity:WellKillingType , owl:Class ;
709 rdfs:label "well killing forward circulation"^^xsd:string ; 710 rdfs:label "well killing forward circulation"^^xsd:string ;
710 rdfs:subClassOf ep-activity:WellKilling ; 711 rdfs:subClassOf ep-activity:WellKilling ;
711 - owl:disjointWith ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-bullheading . 712 + owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-wait_and_weight .
712 713
713 ep-activity:WellKilling-lubricate_and_bleed 714 ep-activity:WellKilling-lubricate_and_bleed
714 - rdf:type owl:Class , ep-activity:WellKillingType ; 715 + rdf:type ep-activity:WellKillingType , owl:Class ;
715 rdfs:label "well killing lubricate and bleed"^^xsd:string ; 716 rdfs:label "well killing lubricate and bleed"^^xsd:string ;
716 rdfs:subClassOf ep-activity:WellKilling ; 717 rdfs:subClassOf ep-activity:WellKilling ;
717 - owl:disjointWith ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-bullheading . 718 + owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-wait_and_weight .
718 719
719 ep-activity:WellKilling-reverse_circulation 720 ep-activity:WellKilling-reverse_circulation
720 - rdf:type owl:Class , ep-activity:WellKillingType ; 721 + rdf:type ep-activity:WellKillingType , owl:Class ;
721 rdfs:label "well killing reverse circulation"^^xsd:string ; 722 rdfs:label "well killing reverse circulation"^^xsd:string ;
722 rdfs:subClassOf ep-activity:WellKilling ; 723 rdfs:subClassOf ep-activity:WellKilling ;
723 - owl:disjointWith ep-activity:WellKilling-wait_and_weight , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-bullheading . 724 + owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-wait_and_weight .
724 725
725 ep-activity:WellKilling-wait_and_weight 726 ep-activity:WellKilling-wait_and_weight
726 - rdf:type owl:Class , ep-activity:WellKillingType ; 727 + rdf:type ep-activity:WellKillingType , owl:Class ;
727 rdfs:label "well killing wait and weight"^^xsd:string ; 728 rdfs:label "well killing wait and weight"^^xsd:string ;
728 rdfs:subClassOf ep-activity:WellKilling ; 729 rdfs:subClassOf ep-activity:WellKilling ;
729 - owl:disjointWith ep-activity:WellKilling-reverse_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-bullheading . 730 + owl:disjointWith ep-activity:WellKilling-bullheading , ep-activity:WellKilling-drillers_method , ep-activity:WellKilling-forward_circulation , ep-activity:WellKilling-lubricate_and_bleed , ep-activity:WellKilling-reverse_circulation .
730 731
731 ep-activity:WellKillingType 732 ep-activity:WellKillingType
732 rdf:type rdfs:Class ; 733 rdf:type rdfs:Class ;
...@@ -765,25 +766,25 @@ ep-activity:WirelineFormationTestType ...@@ -765,25 +766,25 @@ ep-activity:WirelineFormationTestType
765 rdfs:subClassOf owl:Class . 766 rdfs:subClassOf owl:Class .
766 767
767 ep-activity:WirelineFormationTestWithGoodSeal 768 ep-activity:WirelineFormationTestWithGoodSeal
768 - rdf:type owl:Class , ep-activity:WirelineFormationTestType ; 769 + rdf:type ep-activity:WirelineFormationTestType , owl:Class ;
769 rdfs:label "wireline formation test with a good seal"^^xsd:string ; 770 rdfs:label "wireline formation test with a good seal"^^xsd:string ;
770 rdfs:subClassOf ep-activity:WirelineFormationTest ; 771 rdfs:subClassOf ep-activity:WirelineFormationTest ;
771 owl:disjointWith ep-activity:WirelineFormationTestWithoutGoodSeal . 772 owl:disjointWith ep-activity:WirelineFormationTestWithoutGoodSeal .
772 773
773 ep-activity:WirelineFormationTestWithoutGoodSeal 774 ep-activity:WirelineFormationTestWithoutGoodSeal
774 - rdf:type owl:Class , ep-activity:WirelineFormationTestType ; 775 + rdf:type ep-activity:WirelineFormationTestType , owl:Class ;
775 rdfs:label "wireline formation test without a good seal"^^xsd:string ; 776 rdfs:label "wireline formation test without a good seal"^^xsd:string ;
776 rdfs:subClassOf ep-activity:WirelineFormationTest ; 777 rdfs:subClassOf ep-activity:WirelineFormationTest ;
777 owl:disjointWith ep-activity:WirelineFormationTestWithGoodSeal . 778 owl:disjointWith ep-activity:WirelineFormationTestWithGoodSeal .
778 779
779 ep-activity:averageRateOfDrilling 780 ep-activity:averageRateOfDrilling
780 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 781 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
781 rdfs:domain ep-activity:DrillingActivity ; 782 rdfs:domain ep-activity:DrillingActivity ;
782 rdfs:label "average rate of drilling"^^xsd:string ; 783 rdfs:label "average rate of drilling"^^xsd:string ;
783 rdfs:range ep-core:Speed . 784 rdfs:range ep-core:Speed .
784 785
785 ep-activity:descriptionOfActivitiesFollowingTheDailyReportingPeriod 786 ep-activity:descriptionOfActivitiesFollowingTheDailyReportingPeriod
786 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 787 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
787 rdfs:domain ep-activity:DailyDrillingActivity ; 788 rdfs:domain ep-activity:DailyDrillingActivity ;
788 rdfs:label "description of activities following the daily reporting period"^^xsd:string ; 789 rdfs:label "description of activities following the daily reporting period"^^xsd:string ;
789 rdfs:range <http://www.reportinghub.no/ep/schema/report#Report> . 790 rdfs:range <http://www.reportinghub.no/ep/schema/report#Report> .
...@@ -799,25 +800,25 @@ ep-activity:descriptionOfActivitiesWithinTheDailyReportingPeriod ...@@ -799,25 +800,25 @@ ep-activity:descriptionOfActivitiesWithinTheDailyReportingPeriod
799 rdfs:label "description of activities within the daily reporting period"^^xsd:string . 800 rdfs:label "description of activities within the daily reporting period"^^xsd:string .
800 801
801 ep-activity:distanceDrilled 802 ep-activity:distanceDrilled
802 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 803 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
803 rdfs:domain ep-activity:DrillingActivity ; 804 rdfs:domain ep-activity:DrillingActivity ;
804 rdfs:label "final rate of drilling"^^xsd:string ; 805 rdfs:label "final rate of drilling"^^xsd:string ;
805 rdfs:range ep-core:Length . 806 rdfs:range ep-core:Length .
806 807
807 ep-activity:drillingContractor 808 ep-activity:drillingContractor
808 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 809 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
809 rdfs:domain ep-activity:DrillingActivity ; 810 rdfs:domain ep-activity:DrillingActivity ;
810 rdfs:label "drilling contractor"^^xsd:string ; 811 rdfs:label "drilling contractor"^^xsd:string ;
811 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . 812 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
812 813
813 ep-activity:drillingOperator 814 ep-activity:drillingOperator
814 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 815 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
815 rdfs:domain ep-activity:DrillingActivity ; 816 rdfs:domain ep-activity:DrillingActivity ;
816 rdfs:label "drilling operator"^^xsd:string ; 817 rdfs:label "drilling operator"^^xsd:string ;
817 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . 818 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
818 819
819 ep-activity:durationOfDrilling 820 ep-activity:durationOfDrilling
820 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 821 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
821 rdfs:domain ep-activity:DrillingActivity ; 822 rdfs:domain ep-activity:DrillingActivity ;
822 rdfs:label "duration of drilling"^^xsd:string ; 823 rdfs:label "duration of drilling"^^xsd:string ;
823 rdfs:range ep-core:TimeDuration . 824 rdfs:range ep-core:TimeDuration .
...@@ -829,25 +830,25 @@ ep-activity:failedEquipment ...@@ -829,25 +830,25 @@ ep-activity:failedEquipment
829 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#Equipment> . 830 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
830 831
831 ep-activity:finalRateOfDrilling 832 ep-activity:finalRateOfDrilling
832 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 833 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
833 rdfs:domain ep-activity:DrillingActivity ; 834 rdfs:domain ep-activity:DrillingActivity ;
834 rdfs:label "final rate of drilling"^^xsd:string ; 835 rdfs:label "final rate of drilling"^^xsd:string ;
835 rdfs:range ep-core:Speed . 836 rdfs:range ep-core:Speed .
836 837
837 ep-activity:finishedAt 838 ep-activity:finishedAt
838 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 839 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
839 rdfs:domain ep-activity:Activity ; 840 rdfs:domain ep-activity:Activity ;
840 rdfs:label "finished at"^^xsd:string ; 841 rdfs:label "finished at"^^xsd:string ;
841 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> . 842 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .
842 843
843 ep-activity:fluidProducedByWellTest 844 ep-activity:fluidProducedByWellTest
844 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 845 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
845 rdfs:domain ep-activity:WellTest ; 846 rdfs:domain ep-activity:WellTest ;
846 rdfs:label "fluid produced by well test"^^xsd:string ; 847 rdfs:label "fluid produced by well test"^^xsd:string ;
847 - rdfs:range <http://www.reportinghub.no/ep/schema/well#Fluid> . 848 + rdfs:range <http://www.reportinghub.no/ep/schema/material#Fluid> .
848 849
849 ep-activity:hasCasingLinerTubing 850 ep-activity:hasCasingLinerTubing
850 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 851 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
851 rdfs:domain ep-activity:WellStimulation ; 852 rdfs:domain ep-activity:WellStimulation ;
852 rdfs:label "has Casing/Liner/Tubing"^^xsd:string . 853 rdfs:label "has Casing/Liner/Tubing"^^xsd:string .
853 854
...@@ -856,21 +857,21 @@ ep-activity:hasCasingString ...@@ -856,21 +857,21 @@ ep-activity:hasCasingString
856 rdfs:label "has casing string"^^xsd:string . 857 rdfs:label "has casing string"^^xsd:string .
857 858
858 ep-activity:hasChokeValve 859 ep-activity:hasChokeValve
859 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 860 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
860 rdfs:label "has choke valve"^^xsd:string ; 861 rdfs:label "has choke valve"^^xsd:string ;
861 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> . 862 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> .
862 863
863 ep-activity:hasDrillBit 864 ep-activity:hasDrillBit
864 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 865 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
865 rdfs:domain ep-activity:DrillingActivity ; 866 rdfs:domain ep-activity:DrillingActivity ;
866 rdfs:label "has drill bit"^^xsd:string ; 867 rdfs:label "has drill bit"^^xsd:string ;
867 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#DrillBit> . 868 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#DrillBit> .
868 869
869 ep-activity:hasDrillingFluid 870 ep-activity:hasDrillingFluid
870 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 871 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
871 rdfs:domain ep-activity:DrillingActivity ; 872 rdfs:domain ep-activity:DrillingActivity ;
872 rdfs:label "has drilling fluid"^^xsd:string ; 873 rdfs:label "has drilling fluid"^^xsd:string ;
873 - rdfs:range <http://www.reportinghub.no/ep/schema/well#Fluid> . 874 + rdfs:range <http://www.reportinghub.no/ep/schema/material#Fluid> .
874 875
875 ep-activity:hasInflowLocation 876 ep-activity:hasInflowLocation
876 rdf:type owl:ObjectProperty ; 877 rdf:type owl:ObjectProperty ;
...@@ -883,13 +884,13 @@ ep-activity:hasSubActivity ...@@ -883,13 +884,13 @@ ep-activity:hasSubActivity
883 rdfs:label "has sub activity"^^xsd:string . 884 rdfs:label "has sub activity"^^xsd:string .
884 885
885 ep-activity:hasWellTestChoke 886 ep-activity:hasWellTestChoke
886 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 887 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
887 rdfs:domain ep-activity:WellTest ; 888 rdfs:domain ep-activity:WellTest ;
888 rdfs:label "has well test choke"^^xsd:string ; 889 rdfs:label "has well test choke"^^xsd:string ;
889 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#WellTestChoke> . 890 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#WellTestChoke> .
890 891
891 ep-activity:identificationNumberOfCore 892 ep-activity:identificationNumberOfCore
892 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 893 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
893 rdfs:domain ep-activity:ExtractAWellCore ; 894 rdfs:domain ep-activity:ExtractAWellCore ;
894 rdfs:label "identification number of core"^^xsd:string . 895 rdfs:label "identification number of core"^^xsd:string .
895 896
...@@ -899,19 +900,19 @@ ep-activity:logRunNumber ...@@ -899,19 +900,19 @@ ep-activity:logRunNumber
899 rdfs:label "log run number"^^xsd:string . 900 rdfs:label "log run number"^^xsd:string .
900 901
901 ep-activity:loggedWellBoreInterval 902 ep-activity:loggedWellBoreInterval
902 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 903 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
903 rdfs:domain ep-activity:WellBoreLogRun ; 904 rdfs:domain ep-activity:WellBoreLogRun ;
904 rdfs:label "logged wellbore interval"^^xsd:string ; 905 rdfs:label "logged wellbore interval"^^xsd:string ;
905 rdfs:range ep-core:PhysicalObject . 906 rdfs:range ep-core:PhysicalObject .
906 907
907 ep-activity:measuredDepthOfFluidSampling 908 ep-activity:measuredDepthOfFluidSampling
908 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 909 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
909 rdfs:domain ep-activity:WirelineFormationTest ; 910 rdfs:domain ep-activity:WirelineFormationTest ;
910 rdfs:label "measured depth of fluid sampling"^^xsd:string ; 911 rdfs:label "measured depth of fluid sampling"^^xsd:string ;
911 rdfs:range ep-core:Length . 912 rdfs:range ep-core:Length .
912 913
913 ep-activity:missedProductionTime 914 ep-activity:missedProductionTime
914 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 915 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
915 rdfs:domain ep-activity:EquipmentFailureAndRepair ; 916 rdfs:domain ep-activity:EquipmentFailureAndRepair ;
916 rdfs:label "missed production time"^^xsd:string ; 917 rdfs:label "missed production time"^^xsd:string ;
917 rdfs:range ep-core:TimeDuration . 918 rdfs:range ep-core:TimeDuration .
...@@ -923,7 +924,7 @@ ep-activity:nominallyAt ...@@ -923,7 +924,7 @@ ep-activity:nominallyAt
923 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> . 924 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .
924 925
925 ep-activity:onDrillBit 926 ep-activity:onDrillBit
926 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 927 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
927 rdfs:domain ep-activity:WellBoreBitRunDrilling ; 928 rdfs:domain ep-activity:WellBoreBitRunDrilling ;
928 rdfs:label "on drill bit"^^xsd:string ; 929 rdfs:label "on drill bit"^^xsd:string ;
929 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#DrillBit> . 930 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#DrillBit> .
...@@ -933,7 +934,7 @@ ep-activity:onFluid ...@@ -933,7 +934,7 @@ ep-activity:onFluid
933 rdfs:label "on WellBore"^^xsd:string . 934 rdfs:label "on WellBore"^^xsd:string .
934 935
935 ep-activity:onRig 936 ep-activity:onRig
936 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 937 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
937 rdfs:domain ep-activity:DrillingActivity ; 938 rdfs:domain ep-activity:DrillingActivity ;
938 rdfs:label "on rig"^^xsd:string ; 939 rdfs:label "on rig"^^xsd:string ;
939 rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfARig> . 940 rdfs:range <http://www.reportinghub.no/ep/schema/facility#TemporalPartOfARig> .
...@@ -945,19 +946,19 @@ ep-activity:onWell ...@@ -945,19 +946,19 @@ ep-activity:onWell
945 rdfs:range <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWell> . 946 rdfs:range <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWell> .
946 947
947 ep-activity:onWellBore 948 ep-activity:onWellBore
948 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 949 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
949 rdfs:domain ep-activity:DrillingActivity ; 950 rdfs:domain ep-activity:DrillingActivity ;
950 rdfs:label "on wellbore"^^xsd:string ; 951 rdfs:label "on wellbore"^^xsd:string ;
951 rdfs:range <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> . 952 rdfs:range <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> .
952 953
953 ep-activity:operatingTimeOfDrillBit 954 ep-activity:operatingTimeOfDrillBit
954 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 955 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
955 rdfs:domain ep-activity:DrillingActivity ; 956 rdfs:domain ep-activity:DrillingActivity ;
956 rdfs:label "operating time of drill bit"^^xsd:string ; 957 rdfs:label "operating time of drill bit"^^xsd:string ;
957 rdfs:range ep-core:TimeDuration . 958 rdfs:range ep-core:TimeDuration .
958 959
959 ep-activity:pressureAtWhichPlugBumped 960 ep-activity:pressureAtWhichPlugBumped
960 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 961 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
961 rdfs:domain ep-activity:WellCementPumping ; 962 rdfs:domain ep-activity:WellCementPumping ;
962 rdfs:label "pressure at which plug bumped"^^xsd:string ; 963 rdfs:label "pressure at which plug bumped"^^xsd:string ;
963 rdfs:range ep-core:Pressure . 964 rdfs:range ep-core:Pressure .
...@@ -967,90 +968,90 @@ ep-activity:pumpedFluid ...@@ -967,90 +968,90 @@ ep-activity:pumpedFluid
967 rdfs:label "pumped fluid"^^xsd:string . 968 rdfs:label "pumped fluid"^^xsd:string .
968 969
969 ep-activity:recoveredCore 970 ep-activity:recoveredCore
970 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 971 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
971 rdfs:domain ep-activity:ExtractAWellCore ; 972 rdfs:domain ep-activity:ExtractAWellCore ;
972 rdfs:label "recovered core"^^xsd:string ; 973 rdfs:label "recovered core"^^xsd:string ;
973 rdfs:range <http://www.reportinghub.no/ep/schema/well#RecoveredCore> . 974 rdfs:range <http://www.reportinghub.no/ep/schema/well#RecoveredCore> .
974 975
975 ep-activity:returnedCementingFluid 976 ep-activity:returnedCementingFluid
976 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 977 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
977 rdfs:domain ep-activity:WellCementPumping ; 978 rdfs:domain ep-activity:WellCementPumping ;
978 rdfs:label "returned cementing fluid"^^xsd:string ; 979 rdfs:label "returned cementing fluid"^^xsd:string ;
979 rdfs:range <http://www.reportinghub.no/ep/schema/well#CementingFluid> . 980 rdfs:range <http://www.reportinghub.no/ep/schema/well#CementingFluid> .
980 981
981 ep-activity:sampledFluid 982 ep-activity:sampledFluid
982 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 983 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
983 rdfs:domain ep-activity:WirelineFormationTest ; 984 rdfs:domain ep-activity:WirelineFormationTest ;
984 rdfs:label "sampled fluid"^^xsd:string ; 985 rdfs:label "sampled fluid"^^xsd:string ;
985 - rdfs:range <http://www.reportinghub.no/ep/schema/well#Fluid> . 986 + rdfs:range <http://www.reportinghub.no/ep/schema/material#Fluid> .
986 987
987 ep-activity:serviceCompany 988 ep-activity:serviceCompany
988 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 989 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
989 rdfs:domain ep-activity:Activity ; 990 rdfs:domain ep-activity:Activity ;
990 rdfs:label "service company"^^xsd:string ; 991 rdfs:label "service company"^^xsd:string ;
991 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . 992 rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> .
992 993
993 ep-activity:startedAt 994 ep-activity:startedAt
994 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 995 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
995 rdfs:domain ep-activity:Activity ; 996 rdfs:domain ep-activity:Activity ;
996 rdfs:label "started at"^^xsd:string ; 997 rdfs:label "started at"^^xsd:string ;
997 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> . 998 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .
998 999
999 ep-activity:timeLost 1000 ep-activity:timeLost
1000 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 1001 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
1001 rdfs:domain ep-activity:WellControlIncident ; 1002 rdfs:domain ep-activity:WellControlIncident ;
1002 rdfs:label "time lost"^^xsd:string ; 1003 rdfs:label "time lost"^^xsd:string ;
1003 rdfs:range ep-core:TimeDuration . 1004 rdfs:range ep-core:TimeDuration .
1004 1005
1005 ep-activity:timeOfFailure 1006 ep-activity:timeOfFailure
1006 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 1007 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
1007 rdfs:domain ep-activity:EquipmentFailureAndRepair ; 1008 rdfs:domain ep-activity:EquipmentFailureAndRepair ;
1008 rdfs:label "time of failure"^^xsd:string ; 1009 rdfs:label "time of failure"^^xsd:string ;
1009 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> . 1010 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .
1010 1011
1011 ep-activity:timeOfRepair 1012 ep-activity:timeOfRepair
1012 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 1013 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
1013 rdfs:domain ep-activity:EquipmentFailureAndRepair ; 1014 rdfs:domain ep-activity:EquipmentFailureAndRepair ;
1014 rdfs:label "time of repair"^^xsd:string ; 1015 rdfs:label "time of repair"^^xsd:string ;
1015 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> . 1016 rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .
1016 1017
1017 ep-activity:volumeOfMudGained 1018 ep-activity:volumeOfMudGained
1018 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 1019 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
1019 rdfs:domain ep-activity:WellControlIncident ; 1020 rdfs:domain ep-activity:WellControlIncident ;
1020 rdfs:label "final rate of drilling"^^xsd:string ; 1021 rdfs:label "final rate of drilling"^^xsd:string ;
1021 rdfs:range ep-core:Volume . 1022 rdfs:range ep-core:Volume .
1022 1023
1023 ep-activity:wellBoreLoggingTool 1024 ep-activity:wellBoreLoggingTool
1024 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 1025 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
1025 rdfs:domain ep-activity:WellBoreLogRun ; 1026 rdfs:domain ep-activity:WellBoreLogRun ;
1026 rdfs:label "well bore logging tool"^^xsd:string ; 1027 rdfs:label "well bore logging tool"^^xsd:string ;
1027 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#Equipment> . 1028 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
1028 1029
1029 ep-activity:wellTestBottomHolePressure 1030 ep-activity:wellTestBottomHolePressure
1030 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 1031 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
1031 rdfs:domain ep-activity:WellTest ; 1032 rdfs:domain ep-activity:WellTest ;
1032 rdfs:label "well test bottom hole pressure"^^xsd:string ; 1033 rdfs:label "well test bottom hole pressure"^^xsd:string ;
1033 rdfs:range ep-core:Pressure . 1034 rdfs:range ep-core:Pressure .
1034 1035
1035 ep-activity:wellTestFlowingPressure 1036 ep-activity:wellTestFlowingPressure
1036 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 1037 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
1037 rdfs:domain ep-activity:WellTest ; 1038 rdfs:domain ep-activity:WellTest ;
1038 rdfs:label "well test flowing pressure"^^xsd:string ; 1039 rdfs:label "well test flowing pressure"^^xsd:string ;
1039 rdfs:range ep-core:Pressure . 1040 rdfs:range ep-core:Pressure .
1040 1041
1041 ep-activity:wellTestNumber 1042 ep-activity:wellTestNumber
1042 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 1043 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
1043 rdfs:domain ep-activity:WellTest ; 1044 rdfs:domain ep-activity:WellTest ;
1044 rdfs:label "well test number"^^xsd:string . 1045 rdfs:label "well test number"^^xsd:string .
1045 1046
1046 ep-activity:wellTestShutInPressure 1047 ep-activity:wellTestShutInPressure
1047 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 1048 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
1048 rdfs:domain ep-activity:WellTest ; 1049 rdfs:domain ep-activity:WellTest ;
1049 rdfs:label "well test shut-in pressure"^^xsd:string ; 1050 rdfs:label "well test shut-in pressure"^^xsd:string ;
1050 rdfs:range ep-core:Pressure . 1051 rdfs:range ep-core:Pressure .
1051 1052
1052 ep-activity:wellTestStoredOil 1053 ep-activity:wellTestStoredOil
1053 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 1054 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
1054 rdfs:domain ep-activity:WellTest ; 1055 rdfs:domain ep-activity:WellTest ;
1055 rdfs:label "well test stored oil"^^xsd:string ; 1056 rdfs:label "well test stored oil"^^xsd:string ;
1056 - rdfs:range <http://www.reportinghub.no/ep/schema/well#Oil> . 1057 + rdfs:range <http://www.reportinghub.no/ep/schema/material#Oil> .
......
1 +# baseURI: http://www.reportinghub.no/ep/schema/1.0/material
2 +# imports: http://www.reportinghub.no/ep/schema/1.0/core
3 +
4 +@prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
5 +@prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> .
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 xsd: <http://www.w3.org/2001/XMLSchema#> .
10 +
11 +<http://www.reportinghub.no/ep/schema/1.0/material>
12 + rdf:type owl:Ontology ;
13 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ;
14 + owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
15 +
16 +ep-material:AqueousMaterial
17 + rdf:type owl:Class ;
18 + rdfs:label "aqueous material"^^xsd:string ;
19 + rdfs:subClassOf ep-material:Material .
20 +
21 +ep-material:C10AndHeavier
22 + rdf:type owl:Class ;
23 + rdfs:label "C10+"^^xsd:string ;
24 + rdfs:subClassOf ep-material:Material .
25 +
26 +ep-material:C10AndLighter
27 + rdf:type owl:Class ;
28 + rdfs:label "C10-"^^xsd:string ;
29 + rdfs:subClassOf ep-material:Material .
30 +
31 +ep-material:C2AndHeavier
32 + rdf:type owl:Class ;
33 + rdfs:label "C2+"^^xsd:string ;
34 + rdfs:subClassOf ep-material:Material .
35 +
36 +ep-material:C2AndLighter
37 + rdf:type owl:Class ;
38 + rdfs:label "C2-"^^xsd:string ;
39 + rdfs:subClassOf ep-material:Material .
40 +
41 +ep-material:C3AndHeavier
42 + rdf:type owl:Class ;
43 + rdfs:label "C3+"^^xsd:string ;
44 + rdfs:subClassOf ep-material:Material .
45 +
46 +ep-material:C3AndLighter
47 + rdf:type owl:Class ;
48 + rdfs:label "C3-"^^xsd:string ;
49 + rdfs:subClassOf ep-material:Material .
50 +
51 +ep-material:C4AndHeavier
52 + rdf:type owl:Class ;
53 + rdfs:label "C4+"^^xsd:string ;
54 + rdfs:subClassOf ep-material:Material .
55 +
56 +ep-material:C4AndLighter
57 + rdf:type owl:Class ;
58 + rdfs:label "C4-"^^xsd:string ;
59 + rdfs:subClassOf ep-material:Material .
60 +
61 +ep-material:C5AndHeavier
62 + rdf:type owl:Class ;
63 + rdfs:label "C5+"^^xsd:string ;
64 + rdfs:subClassOf ep-material:Material .
65 +
66 +ep-material:C5AndLighter
67 + rdf:type owl:Class ;
68 + rdfs:label "C5-"^^xsd:string ;
69 + rdfs:subClassOf ep-material:Material .
70 +
71 +ep-material:C6AndHeavier
72 + rdf:type owl:Class ;
73 + rdfs:label "C6+"^^xsd:string ;
74 + rdfs:subClassOf ep-material:Material .
75 +
76 +ep-material:C6AndLighter
77 + rdf:type owl:Class ;
78 + rdfs:label "C6-"^^xsd:string ;
79 + rdfs:subClassOf ep-material:Material .
80 +
81 +ep-material:C7AndHeavier
82 + rdf:type owl:Class ;
83 + rdfs:label "C7+"^^xsd:string ;
84 + rdfs:subClassOf ep-material:Material .
85 +
86 +ep-material:C7AndLighter
87 + rdf:type owl:Class ;
88 + rdfs:label "C7-"^^xsd:string ;
89 + rdfs:subClassOf ep-material:Material .
90 +
91 +ep-material:C8AndHeavier
92 + rdf:type owl:Class ;
93 + rdfs:label "C8+"^^xsd:string ;
94 + rdfs:subClassOf ep-material:Material .
95 +
96 +ep-material:C8AndLighter
97 + rdf:type owl:Class ;
98 + rdfs:label "C8-"^^xsd:string ;
99 + rdfs:subClassOf ep-material:Material .
100 +
101 +ep-material:C9AndHeavier
102 + rdf:type owl:Class ;
103 + rdfs:label "C9+"^^xsd:string ;
104 + rdfs:subClassOf ep-material:Material .
105 +
106 +ep-material:C9AndLighter
107 + rdf:type owl:Class ;
108 + rdfs:label "C9-"^^xsd:string ;
109 + rdfs:subClassOf ep-material:Material .
110 +
111 +ep-material:CarbonDioxide
112 + rdf:type owl:Class ;
113 + rdfs:label "carbon dioxide"^^xsd:string ;
114 + rdfs:subClassOf ep-material:Material .
115 +
116 +ep-material:CarbonMonoxide
117 + rdf:type owl:Class ;
118 + rdfs:label "carbon monoxide"^^xsd:string ;
119 + rdfs:subClassOf ep-material:Material .
120 +
121 +ep-material:Chemical
122 + rdf:type owl:Class ;
123 + rdfs:label "chemical"^^xsd:string ;
124 + rdfs:subClassOf ep-material:Material .
125 +
126 +ep-material:Chloride
127 + rdf:type owl:Class ;
128 + rdfs:label "chloride"^^xsd:string ;
129 + rdfs:subClassOf ep-material:Material .
130 +
131 +ep-material:Condensate
132 + rdf:type owl:Class ;
133 + rdfs:label "condensate"^^xsd:string ;
134 + rdfs:subClassOf ep-material:Material .
135 +
136 +ep-material:Crude-stabilized
137 + rdf:type owl:Class ;
138 + rdfs:label "crude - stabilized"^^xsd:string ;
139 + rdfs:subClassOf ep-material:Material .
140 +
141 +ep-material:CrudeOil
142 + rdf:type owl:Class ;
143 + rdfs:subClassOf ep-material:Material .
144 +
145 +ep-material:Cuttings
146 + rdf:type owl:Class ;
147 + rdfs:label "cuttings"^^xsd:string ;
148 + rdfs:subClassOf ep-material:Material .
149 +
150 +ep-material:Diesel
151 + rdf:type owl:Class ;
152 + rdfs:label "diesel"^^xsd:string ;
153 + rdfs:subClassOf ep-material:Material .
154 +
155 +ep-material:Diethyleneglycol
156 + rdf:type owl:Class ;
157 + rdfs:label "diethyleneglycol"^^xsd:string ;
158 + rdfs:subClassOf ep-material:Material .
159 +
160 +ep-material:Dioxygen
161 + rdf:type owl:Class ;
162 + rdfs:label "dioxygen"^^xsd:string ;
163 + rdfs:subClassOf ep-material:Material .
164 +
165 +ep-material:Ethane
166 + rdf:type owl:Class ;
167 + rdfs:label "ethane"^^xsd:string ;
168 + rdfs:subClassOf ep-material:Material .
169 +
170 +ep-material:Ethane-component
171 + rdf:type owl:Class ;
172 + rdfs:label "ethane - component"^^xsd:string ;
173 + rdfs:subClassOf ep-material:Material .
174 +
175 +ep-material:Filtrate
176 + rdf:type owl:Class ;
177 + rdfs:label "filtrate"^^xsd:string ;
178 + rdfs:subClassOf ep-material:Material .
179 +
180 +ep-material:Fluid
181 + rdf:type owl:Class ;
182 + rdfs:label "fluid"^^xsd:string ;
183 + rdfs:subClassOf ep-material:Material .
184 +
185 +ep-material:Gas
186 + rdf:type owl:Class ;
187 + rdfs:label "gas"^^xsd:string ;
188 + rdfs:subClassOf ep-material:Material .
189 +
190 +ep-material:Gas-componentInOil
191 + rdf:type owl:Class ;
192 + rdfs:label "gas - component in oil"^^xsd:string ;
193 + rdfs:subClassOf ep-material:Material .
194 +
195 +ep-material:Gas-dry
196 + rdf:type owl:Class ;
197 + rdfs:label "gas - dry"^^xsd:string ;
198 + rdfs:subClassOf ep-material:Material .
199 +
200 +ep-material:Gas-rich
201 + rdf:type owl:Class ;
202 + rdfs:label "gas - rich"^^xsd:string ;
203 + rdfs:subClassOf ep-material:Material .
204 +
205 +ep-material:Gas-wet
206 + rdf:type owl:Class ;
207 + rdfs:label "gas - wet"^^xsd:string ;
208 + rdfs:subClassOf ep-material:Material .
209 +
210 +ep-material:HeliumGas
211 + rdf:type owl:Class ;
212 + rdfs:label "helium gas"^^xsd:string ;
213 + rdfs:subClassOf ep-material:Material .
214 +
215 +ep-material:Heptane
216 + rdf:type owl:Class ;
217 + rdfs:label "heptane"^^xsd:string ;
218 + rdfs:subClassOf ep-material:Material .
219 +
220 +ep-material:HydrogenGas
221 + rdf:type owl:Class ;
222 + rdfs:label "hydrogen gas"^^xsd:string ;
223 + rdfs:subClassOf ep-material:Material .
224 +
225 +ep-material:HydrogenSulfide
226 + rdf:type owl:Class ;
227 + rdfs:label "hydrogen sulfide"^^xsd:string ;
228 + rdfs:subClassOf ep-material:Material .
229 +
230 +ep-material:Isobutane
231 + rdf:type owl:Class ;
232 + rdfs:label "isobutane"^^xsd:string ;
233 + rdfs:subClassOf ep-material:Material .
234 +
235 +ep-material:Isobutane-component
236 + rdf:type owl:Class ;
237 + rdfs:label "i-butane - component"^^xsd:string ;
238 + rdfs:subClassOf ep-material:Material .
239 +
240 +ep-material:Isopentane
241 + rdf:type owl:Class ;
242 + rdfs:label "isopentane"^^xsd:string ;
243 + rdfs:subClassOf ep-material:Material .
244 +
245 +ep-material:LiquifiedNaturalGas
246 + rdf:type owl:Class ;
247 + rdfs:label "liquified natural gas"^^xsd:string ;
248 + rdfs:subClassOf ep-material:Material .
249 +
250 +ep-material:LiquifiedPetroleumGas
251 + rdf:type owl:Class ;
252 + rdfs:label "liquified petroleum gas"^^xsd:string ;
253 + rdfs:subClassOf ep-material:Material .
254 +
255 +ep-material:Material
256 + rdf:type owl:Class ;
257 + rdfs:label "material"^^xsd:string ;
258 + rdfs:subClassOf ep-core:PhysicalObject .
259 +
260 +ep-material:MaterialPair
261 + rdf:type owl:Class ;
262 + rdfs:label "material pair"^^xsd:string ;
263 + rdfs:subClassOf owl:Thing .
264 +
265 +ep-material:MaterialPartWholePair
266 + rdf:type owl:Class ;
267 + rdfs:label "material part - whole pair"^^xsd:string ;
268 + rdfs:subClassOf ep-material:MaterialPair .
269 +
270 +ep-material:Methane
271 + rdf:type owl:Class ;
272 + rdfs:label "methane"^^xsd:string ;
273 + rdfs:subClassOf ep-material:Material .
274 +
275 +ep-material:Methanol
276 + rdf:type owl:Class ;
277 + rdfs:label "methanol"^^xsd:string ;
278 + rdfs:subClassOf ep-material:Material .
279 +
280 +ep-material:MixedButane
281 + rdf:type owl:Class ;
282 + rdfs:label "mixed butane"^^xsd:string ;
283 + rdfs:subClassOf ep-material:Material .
284 +
285 +ep-material:Monoethyleneglycol
286 + rdf:type owl:Class ;
287 + rdfs:label "monoethyleneglycol"^^xsd:string ;
288 + rdfs:subClassOf ep-material:Material .
289 +
290 +ep-material:NGL-componentInGas
291 + rdf:type owl:Class ;
292 + rdfs:label "NGL - component in gas"^^xsd:string ;
293 + rdfs:subClassOf ep-material:Material .
294 +
295 +ep-material:Naptha
296 + rdf:type owl:Class ;
297 + rdfs:label "naptha"^^xsd:string ;
298 + rdfs:subClassOf ep-material:Material .
299 +
300 +ep-material:NaturalGas
301 + rdf:type owl:Class ;
302 + rdfs:subClassOf ep-material:Material .
303 +
304 +ep-material:NaturalGasLiquid
305 + rdf:type owl:Class ;
306 + rdfs:label "natural gas liquid"^^xsd:string ;
307 + rdfs:subClassOf ep-material:Material .
308 +
309 +ep-material:Neopentane
310 + rdf:type owl:Class ;
311 + rdfs:label "neopentane"^^xsd:string ;
312 + rdfs:subClassOf ep-material:Material .
313 +
314 +ep-material:NitrogenGas
315 + rdf:type owl:Class ;
316 + rdfs:label "nitrogen gas"^^xsd:string ;
317 + rdfs:subClassOf ep-material:Material .
318 +
319 +ep-material:NitrogenOxideGas
320 + rdf:type owl:Class ;
321 + rdfs:label "nitrogen oxide gas"^^xsd:string ;
322 + rdfs:subClassOf ep-material:Material .
323 +
324 +ep-material:NormalButane
325 + rdf:type owl:Class ;
326 + rdfs:label "normal butane"^^xsd:string ;
327 + rdfs:subClassOf ep-material:Material .
328 +
329 +ep-material:NormalButane-component
330 + rdf:type owl:Class ;
331 + rdfs:label "n-butane - component"^^xsd:string ;
332 + rdfs:subClassOf ep-material:Material .
333 +
334 +ep-material:NormalPentane
335 + rdf:type owl:Class ;
336 + rdfs:label "normal pentane"^^xsd:string ;
337 + rdfs:subClassOf ep-material:Material .
338 +
339 +ep-material:Oil
340 + rdf:type owl:Class ;
341 + rdfs:label "oil"^^xsd:string ;
342 + rdfs:subClassOf ep-material:Material .
343 +
344 +ep-material:Oil-componentInWater
345 + rdf:type owl:Class ;
346 + rdfs:label "oil - component in water"^^xsd:string ;
347 + rdfs:subClassOf ep-material:Material .
348 +
349 +ep-material:OilAndGas
350 + rdf:type owl:Class ;
351 + rdfs:label "oil and gas"^^xsd:string ;
352 + rdfs:subClassOf ep-material:Material .
353 +
354 +ep-material:Oleic
355 + rdf:type owl:Class ;
356 + rdfs:label "oleic"^^xsd:string ;
357 + rdfs:subClassOf ep-material:Material .
358 +
359 +ep-material:Pentane
360 + rdf:type owl:Class ;
361 + rdfs:label "pentane"^^xsd:string ;
362 + rdfs:subClassOf ep-material:Material .
363 +
364 +ep-material:PetroleumGasLiquid
365 + rdf:type owl:Class ;
366 + rdfs:label "petroleum gas liquid"^^xsd:string ;
367 + rdfs:subClassOf ep-material:Material .
368 +
369 +ep-material:ProductMaterialType
370 + rdf:type rdfs:Class ;
371 + rdfs:label " product material type"^^xsd:string ;
372 + rdfs:subClassOf owl:Class .
373 +
374 +ep-material:Propane
375 + rdf:type owl:Class ;
376 + rdfs:label "propane"^^xsd:string ;
377 + rdfs:subClassOf ep-material:Material .
378 +
379 +ep-material:Propane-component
380 + rdf:type owl:Class ;
381 + rdfs:label "propane - component"^^xsd:string ;
382 + rdfs:subClassOf ep-material:Material .
383 +
384 +ep-material:QuantityOfMaterial
385 + rdf:type owl:Class ;
386 + rdfs:label "(temporal part of a) quantity of material"^^xsd:string ;
387 + rdfs:subClassOf ep-material:Material .
388 +
389 +ep-material:Salt
390 + rdf:type owl:Class ;
391 + rdfs:label "salt"^^xsd:string ;
392 + rdfs:subClassOf ep-material:Material .
393 +
394 +ep-material:Sand
395 + rdf:type owl:Class ;
396 + rdfs:label "sand"^^xsd:string ;
397 + rdfs:subClassOf ep-material:Material .
398 +
399 +ep-material:Triethyleneglycol
400 + rdf:type owl:Class ;
401 + rdfs:label "triethyleneglycol"^^xsd:string ;
402 + rdfs:subClassOf ep-material:Material .
403 +
404 +ep-material:Vapour
405 + rdf:type owl:Class ;
406 + rdfs:label "vapour"^^xsd:string ;
407 + rdfs:subClassOf ep-material:Material .
408 +
409 +ep-material:Water
410 + rdf:type owl:Class ;
411 + rdfs:label "water"^^xsd:string ;
412 + rdfs:subClassOf ep-material:Material .
413 +
414 +ep-material:Water-discharge
415 + rdf:type owl:Class ;
416 + rdfs:label "water - discharge"^^xsd:string ;
417 + rdfs:subClassOf ep-material:Material .
418 +
419 +ep-material:Water-processed
420 + rdf:type owl:Class ;
421 + rdfs:label "water - processed"^^xsd:string ;
422 + rdfs:subClassOf ep-material:Material .
423 +
424 +ep-material:firstMaterialOfPair
425 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
426 + rdfs:domain ep-material:MaterialPair ;
427 + rdfs:label "first material of pair"^^xsd:string ;
428 + rdfs:range ep-material:Material .
429 +
430 +ep-material:hasComponent
431 + rdf:type owl:TransitiveProperty ;
432 + rdfs:comment "A component is all part material of the class."^^xsd:string ;
433 + rdfs:domain ep-material:Material ;
434 + rdfs:label "hasComponent"^^xsd:string ;
435 + rdfs:range ep-material:Material .
436 +
437 +ep-material:massRatio
438 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
439 + rdfs:domain ep-material:MaterialPair ;
440 + rdfs:label "mass ratio"^^xsd:string ;
441 + rdfs:range ep-core:Ratio .
442 +
443 +ep-material:partMaterialOfPair
444 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
445 + rdfs:domain ep-material:MaterialPartWholePair ;
446 + rdfs:label "part material of pair"^^xsd:string ;
447 + rdfs:range ep-material:Material ;
448 + rdfs:subPropertyOf ep-material:firstMaterialOfPair .
449 +
450 +ep-material:secondMaterialOfPair
451 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
452 + rdfs:domain ep-material:MaterialPair ;
453 + rdfs:label "second material of pair"^^xsd:string ;
454 + rdfs:range ep-material:Material .
455 +
456 +ep-material:substance-11dmcyPentane
457 + rdf:type owl:Class ;
458 + rdfs:label "11dmcy pentane"^^xsd:string ;
459 + rdfs:subClassOf ep-material:Material .
460 +
461 +ep-material:substance-124tmBenzene
462 + rdf:type owl:Class ;
463 + rdfs:label "124tm benzene"^^xsd:string ;
464 + rdfs:subClassOf ep-material:Material .
465 +
466 +ep-material:substance-12dmBenzene
467 + rdf:type owl:Class ;
468 + rdfs:label "12dm benzene"^^xsd:string ;
469 + rdfs:subClassOf ep-material:Material .
470 +
471 +ep-material:substance-13dmBenzene
472 + rdf:type owl:Class ;
473 + rdfs:label "13dm benzene"^^xsd:string ;
474 + rdfs:subClassOf ep-material:Material .
475 +
476 +ep-material:substance-14dmBenzene
477 + rdf:type owl:Class ;
478 + rdfs:label "14dm benzene"^^xsd:string ;
479 + rdfs:subClassOf ep-material:Material .
480 +
481 +ep-material:substance-223tmButane
482 + rdf:type owl:Class ;
483 + rdfs:label "223tm butane"^^xsd:string ;
484 + rdfs:subClassOf ep-material:Material .
485 +
486 +ep-material:substance-223tmPentane
487 + rdf:type owl:Class ;
488 + rdfs:label "223tm pentane"^^xsd:string ;
489 + rdfs:subClassOf ep-material:Material .
490 +
491 +ep-material:substance-22dmButane
492 + rdf:type owl:Class ;
493 + rdfs:label "22dm butane"^^xsd:string ;
494 + rdfs:subClassOf ep-material:Material .
495 +
496 +ep-material:substance-22dmHexane
497 + rdf:type owl:Class ;
498 + rdfs:label "22dm hexane"^^xsd:string ;
499 + rdfs:subClassOf ep-material:Material .
500 +
501 +ep-material:substance-22dmPentane
502 + rdf:type owl:Class ;
503 + rdfs:label "22dm pentane"^^xsd:string ;
504 + rdfs:subClassOf ep-material:Material .
505 +
506 +ep-material:substance-22dmPropane
507 + rdf:type owl:Class ;
508 + rdfs:label "22dm propane"^^xsd:string ;
509 + rdfs:subClassOf ep-material:Material .
510 +
511 +ep-material:substance-23dmButane
512 + rdf:type owl:Class ;
513 + rdfs:label "23dm butane"^^xsd:string ;
514 + rdfs:subClassOf ep-material:Material .
515 +
516 +ep-material:substance-23dmPentane
517 + rdf:type owl:Class ;
518 + rdfs:label "23dm pentane"^^xsd:string ;
519 + rdfs:subClassOf ep-material:Material .
520 +
521 +ep-material:substance-24dmHexane
522 + rdf:type owl:Class ;
523 + rdfs:label "24dm hexane"^^xsd:string ;
524 + rdfs:subClassOf ep-material:Material .
525 +
526 +ep-material:substance-24dmPentane
527 + rdf:type owl:Class ;
528 + rdfs:label "24dm pentane"^^xsd:string ;
529 + rdfs:subClassOf ep-material:Material .
530 +
531 +ep-material:substance-25dmHexane
532 + rdf:type owl:Class ;
533 + rdfs:label "25dm hexane"^^xsd:string ;
534 + rdfs:subClassOf ep-material:Material .
535 +
536 +ep-material:substance-2mButane
537 + rdf:type owl:Class ;
538 + rdfs:label "2m butane"^^xsd:string ;
539 + rdfs:subClassOf ep-material:Material .
540 +
541 +ep-material:substance-2mHexane
542 + rdf:type owl:Class ;
543 + rdfs:label "2m hexane"^^xsd:string ;
544 + rdfs:subClassOf ep-material:Material .
545 +
546 +ep-material:substance-2mPentane
547 + rdf:type owl:Class ;
548 + rdfs:label "2m pentane"^^xsd:string ;
549 + rdfs:subClassOf ep-material:Material .
550 +
551 +ep-material:substance-2mPropane
552 + rdf:type owl:Class ;
553 + rdfs:label "2m propane"^^xsd:string ;
554 + rdfs:subClassOf ep-material:Material .
555 +
556 +ep-material:substance-33dmPentane
557 + rdf:type owl:Class ;
558 + rdfs:label "33dm pentane"^^xsd:string ;
559 + rdfs:subClassOf ep-material:Material .
560 +
561 +ep-material:substance-3etPentane
562 + rdf:type owl:Class ;
563 + rdfs:label "3et pentane"^^xsd:string ;
564 + rdfs:subClassOf ep-material:Material .
565 +
566 +ep-material:substance-3mHexane
567 + rdf:type owl:Class ;
568 + rdfs:label "3m hexane"^^xsd:string ;
569 + rdfs:subClassOf ep-material:Material .
570 +
571 +ep-material:substance-3mPentane
572 + rdf:type owl:Class ;
573 + rdfs:label "3m pentane"^^xsd:string ;
574 + rdfs:subClassOf ep-material:Material .
575 +
576 +ep-material:substance-Ar
577 + rdf:type owl:Class ;
578 + rdfs:label "Ar"^^xsd:string , "Argon"^^xsd:string ;
579 + rdfs:subClassOf ep-material:Material .
580 +
581 +ep-material:substance-Benzene
582 + rdf:type owl:Class ;
583 + rdfs:label "benzene"^^xsd:string ;
584 + rdfs:subClassOf ep-material:Material .
585 +
586 +ep-material:substance-Butane
587 + rdf:type owl:Class ;
588 + rdfs:label "butane"^^xsd:string ;
589 + rdfs:subClassOf ep-material:Material .
590 +
591 +ep-material:substance-C11F
592 + rdf:type owl:Class ;
593 + rdfs:label "C11F"^^xsd:string ;
594 + rdfs:subClassOf ep-material:Material .
595 +
596 +ep-material:substance-C12F
597 + rdf:type owl:Class ;
598 + rdfs:label "C12F"^^xsd:string ;
599 + rdfs:subClassOf ep-material:Material .
600 +
601 +ep-material:substance-C13F
602 + rdf:type owl:Class ;
603 + rdfs:label "C13F"^^xsd:string ;
604 + rdfs:subClassOf ep-material:Material .
605 +
606 +ep-material:substance-C13dmcyPentane
607 + rdf:type owl:Class ;
608 + rdfs:label "c13dmcy pentane"^^xsd:string ;
609 + rdfs:subClassOf ep-material:Material .
610 +
611 +ep-material:substance-C14F
612 + rdf:type owl:Class ;
613 + rdfs:label "C14F"^^xsd:string ;
614 + rdfs:subClassOf ep-material:Material .
615 +
616 +ep-material:substance-C15F
617 + rdf:type owl:Class ;
618 + rdfs:label "C15F"^^xsd:string ;
619 + rdfs:subClassOf ep-material:Material .
620 +
621 +ep-material:substance-C16F
622 + rdf:type owl:Class ;
623 + rdfs:label "C16F"^^xsd:string ;
624 + rdfs:subClassOf ep-material:Material .
625 +
626 +ep-material:substance-C17F
627 + rdf:type owl:Class ;
628 + rdfs:label "C17F"^^xsd:string ;
629 + rdfs:subClassOf ep-material:Material .
630 +
631 +ep-material:substance-C18F
632 + rdf:type owl:Class ;
633 + rdfs:label "C18F"^^xsd:string ;
634 + rdfs:subClassOf ep-material:Material .
635 +
636 +ep-material:substance-C19F
637 + rdf:type owl:Class ;
638 + rdfs:label "C19F"^^xsd:string ;
639 + rdfs:subClassOf ep-material:Material .
640 +
641 +ep-material:substance-C20F
642 + rdf:type owl:Class ;
643 + rdfs:label "C20F"^^xsd:string ;
644 + rdfs:subClassOf ep-material:Material .
645 +
646 +ep-material:substance-C21F
647 + rdf:type owl:Class ;
648 + rdfs:label "C21F"^^xsd:string ;
649 + rdfs:subClassOf ep-material:Material .
650 +
651 +ep-material:substance-C22F
652 + rdf:type owl:Class ;
653 + rdfs:label "C22F"^^xsd:string ;
654 + rdfs:subClassOf ep-material:Material .
655 +
656 +ep-material:substance-C23F
657 + rdf:type owl:Class ;
658 + rdfs:label "C23F"^^xsd:string ;
659 + rdfs:subClassOf ep-material:Material .
660 +
661 +ep-material:substance-C24F
662 + rdf:type owl:Class ;
663 + rdfs:label "C24F"^^xsd:string ;
664 + rdfs:subClassOf ep-material:Material .
665 +
666 +ep-material:substance-C25F
667 + rdf:type owl:Class ;
668 + rdfs:label "C25F"^^xsd:string ;
669 + rdfs:subClassOf ep-material:Material .
670 +
671 +ep-material:substance-C26F
672 + rdf:type owl:Class ;
673 + rdfs:label "C26F"^^xsd:string ;
674 + rdfs:subClassOf ep-material:Material .
675 +
676 +ep-material:substance-C27F
677 + rdf:type owl:Class ;
678 + rdfs:label "C27F"^^xsd:string ;
679 + rdfs:subClassOf ep-material:Material .
680 +
681 +ep-material:substance-C28F
682 + rdf:type owl:Class ;
683 + rdfs:label "C28F"^^xsd:string ;
684 + rdfs:subClassOf ep-material:Material .
685 +
686 +ep-material:substance-C29F
687 + rdf:type owl:Class ;
688 + rdfs:label "C29F"^^xsd:string ;
689 + rdfs:subClassOf ep-material:Material .
690 +
691 +ep-material:substance-C30F
692 + rdf:type owl:Class ;
693 + rdfs:label "C30F"^^xsd:string ;
694 + rdfs:subClassOf ep-material:Material .
695 +
696 +ep-material:substance-C31F
697 + rdf:type owl:Class ;
698 + rdfs:label "C31F"^^xsd:string ;
699 + rdfs:subClassOf ep-material:Material .
700 +
701 +ep-material:substance-C32F
702 + rdf:type owl:Class ;
703 + rdfs:label "C32F"^^xsd:string ;
704 + rdfs:subClassOf ep-material:Material .
705 +
706 +ep-material:substance-C33F
707 + rdf:type owl:Class ;
708 + rdfs:label "C33F"^^xsd:string ;
709 + rdfs:subClassOf ep-material:Material .
710 +
711 +ep-material:substance-C34F
712 + rdf:type owl:Class ;
713 + rdfs:label "C34F"^^xsd:string ;
714 + rdfs:subClassOf ep-material:Material .
715 +
716 +ep-material:substance-C35F
717 + rdf:type owl:Class ;
718 + rdfs:label "C35F"^^xsd:string ;
719 + rdfs:subClassOf ep-material:Material .
720 +
721 +ep-material:substance-C36F
722 + rdf:type owl:Class ;
723 + rdfs:label "C36F"^^xsd:string ;
724 + rdfs:subClassOf ep-material:Material .
725 +
726 +ep-material:substance-C37F
727 + rdf:type owl:Class ;
728 + rdfs:label "C37F"^^xsd:string ;
729 + rdfs:subClassOf ep-material:Material .
730 +
731 +ep-material:substance-C38F
732 + rdf:type owl:Class ;
733 + rdfs:label "C38F"^^xsd:string ;
734 + rdfs:subClassOf ep-material:Material .
735 +
736 +ep-material:substance-C39F
737 + rdf:type owl:Class ;
738 + rdfs:label "C39F"^^xsd:string ;
739 + rdfs:subClassOf ep-material:Material .
740 +
741 +ep-material:substance-C40F
742 + rdf:type owl:Class ;
743 + rdfs:label "C40F"^^xsd:string ;
744 + rdfs:subClassOf ep-material:Material .
745 +
746 +ep-material:substance-C41F
747 + rdf:type owl:Class ;
748 + rdfs:label "C41F"^^xsd:string ;
749 + rdfs:subClassOf ep-material:Material .
750 +
751 +ep-material:substance-C42F
752 + rdf:type owl:Class ;
753 + rdfs:label "C42F"^^xsd:string ;
754 + rdfs:subClassOf ep-material:Material .
755 +
756 +ep-material:substance-C43F
757 + rdf:type owl:Class ;
758 + rdfs:label "C43F"^^xsd:string ;
759 + rdfs:subClassOf ep-material:Material .
760 +
761 +ep-material:substance-C44F
762 + rdf:type owl:Class ;
763 + rdfs:label "C44F"^^xsd:string ;
764 + rdfs:subClassOf ep-material:Material .
765 +
766 +ep-material:substance-C45F
767 + rdf:type owl:Class ;
768 + rdfs:label "C45F"^^xsd:string ;
769 + rdfs:subClassOf ep-material:Material .
770 +
771 +ep-material:substance-C46F
772 + rdf:type owl:Class ;
773 + rdfs:label "C46F"^^xsd:string ;
774 + rdfs:subClassOf ep-material:Material .
775 +
776 +ep-material:substance-C47F
777 + rdf:type owl:Class ;
778 + rdfs:label "C47F"^^xsd:string ;
779 + rdfs:subClassOf ep-material:Material .
780 +
781 +ep-material:substance-C48F
782 + rdf:type owl:Class ;
783 + rdfs:label "C48F"^^xsd:string ;
784 + rdfs:subClassOf ep-material:Material .
785 +
786 +ep-material:substance-C49F
787 + rdf:type owl:Class ;
788 + rdfs:label "C49F"^^xsd:string ;
789 + rdfs:subClassOf ep-material:Material .
790 +
791 +ep-material:substance-CO2
792 + rdf:type owl:Class ;
793 + rdfs:label "CO2"^^xsd:string ;
794 + rdfs:subClassOf ep-material:Material .
795 +
796 +ep-material:substance-Cyclohexane
797 + rdf:type owl:Class ;
798 + rdfs:label "cyclohexane"^^xsd:string ;
799 + rdfs:subClassOf ep-material:Material .
800 +
801 +ep-material:substance-Cyclopentane
802 + rdf:type owl:Class ;
803 + rdfs:label "cyclopentane"^^xsd:string ;
804 + rdfs:subClassOf ep-material:Material .
805 +
806 +ep-material:substance-Decanes
807 + rdf:type owl:Class ;
808 + rdfs:label "decanes"^^xsd:string ;
809 + rdfs:subClassOf ep-material:Material .
810 +
811 +ep-material:substance-EtBenzene
812 + rdf:type owl:Class ;
813 + rdfs:label "et benzene"^^xsd:string ;
814 + rdfs:subClassOf ep-material:Material .
815 +
816 +ep-material:substance-EtcyPentane
817 + rdf:type owl:Class ;
818 + rdfs:label "etcy pentane"^^xsd:string ;
819 + rdfs:subClassOf ep-material:Material .
820 +
821 +ep-material:substance-Ethane
822 + rdf:type owl:Class ;
823 + rdfs:label "ethane"^^xsd:string ;
824 + rdfs:subClassOf ep-material:Material .
825 +
826 +ep-material:substance-H2
827 + rdf:type owl:Class ;
828 + rdfs:label "H2"^^xsd:string ;
829 + rdfs:subClassOf ep-material:Material .
830 +
831 +ep-material:substance-H2O
832 + rdf:type owl:Class ;
833 + rdfs:label "H2O"^^xsd:string ;
834 + rdfs:subClassOf ep-material:Material .
835 +
836 +ep-material:substance-H2S
837 + rdf:type owl:Class ;
838 + rdfs:label "H2S"^^xsd:string ;
839 + rdfs:subClassOf ep-material:Material .
840 +
841 +ep-material:substance-Heptanes
842 + rdf:type owl:Class ;
843 + rdfs:label "heptanes"^^xsd:string ;
844 + rdfs:subClassOf ep-material:Material .
845 +
846 +ep-material:substance-Hexane
847 + rdf:type owl:Class ;
848 + rdfs:label "hexane"^^xsd:string ;
849 + rdfs:subClassOf ep-material:Material .
850 +
851 +ep-material:substance-Hexanes
852 + rdf:type owl:Class ;
853 + rdfs:label "hexanes"^^xsd:string ;
854 + rdfs:subClassOf ep-material:Material .
855 +
856 +ep-material:substance-MBenzene
857 + rdf:type owl:Class ;
858 + rdfs:label "m benzene"^^xsd:string ;
859 + rdfs:subClassOf ep-material:Material .
860 +
861 +ep-material:substance-McyHexane
862 + rdf:type owl:Class ;
863 + rdfs:label "mcy hexane"^^xsd:string ;
864 + rdfs:subClassOf ep-material:Material .
865 +
866 +ep-material:substance-McyPentane
867 + rdf:type owl:Class ;
868 + rdfs:label "mcy pentane"^^xsd:string ;
869 + rdfs:subClassOf ep-material:Material .
870 +
871 +ep-material:substance-Methane
872 + rdf:type owl:Class ;
873 + rdfs:label "methane"^^xsd:string ;
874 + rdfs:subClassOf ep-material:Material .
875 +
876 +ep-material:substance-N2
877 + rdf:type owl:Class ;
878 + rdfs:label "N2"^^xsd:string ;
879 + rdfs:subClassOf ep-material:Material .
880 +
881 +ep-material:substance-Nonanes
882 + rdf:type owl:Class ;
883 + rdfs:label "nonanes"^^xsd:string ;
884 + rdfs:subClassOf ep-material:Material .
885 +
886 +ep-material:substance-O2
887 + rdf:type owl:Class ;
888 + rdfs:label "O2"^^xsd:string ;
889 + rdfs:subClassOf ep-material:Material .
890 +
891 +ep-material:substance-Octanes
892 + rdf:type owl:Class ;
893 + rdfs:label "octanes"^^xsd:string ;
894 + rdfs:subClassOf ep-material:Material .
895 +
896 +ep-material:substance-T12dmcyPentane
897 + rdf:type owl:Class ;
898 + rdfs:label "t12dmcy pentane"^^xsd:string ;
899 + rdfs:subClassOf ep-material:Material .
900 +
901 +ep-material:substance-T13dmcyPentane
902 + rdf:type owl:Class ;
903 + rdfs:label "t13dmcy pentane"^^xsd:string ;
904 + rdfs:subClassOf ep-material:Material .
905 +
906 +ep-material:volumeRatio
907 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
908 + rdfs:domain ep-material:MaterialPair ;
909 + rdfs:label "volume ratio"^^xsd:string ;
910 + rdfs:range ep-core:Ratio .
911 +
912 +ep-material:wholeMaterialOfPair
913 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
914 + rdfs:domain ep-material:MaterialPartWholePair ;
915 + rdfs:label "whole material of pair"^^xsd:string ;
916 + rdfs:range ep-material:Material ;
917 + rdfs:subPropertyOf ep-material:secondMaterialOfPair .
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
2 # imports: http://www.reportinghub.no/ep/schema/1.0/core 2 # imports: http://www.reportinghub.no/ep/schema/1.0/core
3 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment 3 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment
4 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 4 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
5 6
6 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . 7 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
7 @prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . 8 @prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> .
...@@ -13,16 +14,31 @@ ...@@ -13,16 +14,31 @@
13 14
14 <http://www.reportinghub.no/ep/schema/1.0/well> 15 <http://www.reportinghub.no/ep/schema/1.0/well>
15 rdf:type owl:Ontology ; 16 rdf:type owl:Ontology ;
16 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/facility> ; 17 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/core> ;
17 owl:versionInfo "0.1.0"^^xsd:string . 18 owl:versionInfo "0.1.0"^^xsd:string .
18 19
19 <http://www.reportinghub.no/ep/schema/equipment#Equipment> 20 <http://www.reportinghub.no/ep/schema/equipment#Equipment>
20 rdfs:subClassOf ep-core:PhysicalObject . 21 rdfs:subClassOf ep-core:PhysicalObject .
21 22
23 +<http://www.reportinghub.no/ep/schema/material#Condensate>
24 + rdf:type ep-well:FluidComponentType .
25 +
26 +<http://www.reportinghub.no/ep/schema/material#Filtrate>
27 + rdf:type ep-well:FluidComponentType .
28 +
29 +<http://www.reportinghub.no/ep/schema/material#Gas>
30 + rdf:type ep-well:FluidComponentType .
31 +
32 +<http://www.reportinghub.no/ep/schema/material#Oil>
33 + rdf:type ep-well:FluidComponentType .
34 +
35 +<http://www.reportinghub.no/ep/schema/material#Water>
36 + rdf:type ep-well:FluidComponentType .
37 +
22 ep-well:CementingFluid 38 ep-well:CementingFluid
23 rdf:type owl:Class ; 39 rdf:type owl:Class ;
24 rdfs:label "cementing fluid"^^xsd:string ; 40 rdfs:label "cementing fluid"^^xsd:string ;
25 - rdfs:subClassOf ep-well:Fluid . 41 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/material#Fluid> .
26 42
27 ep-well:CementingFluidType 43 ep-well:CementingFluidType
28 rdf:type owl:Class ; 44 rdf:type owl:Class ;
...@@ -35,25 +51,10 @@ ep-well:ClassOfWellBoreSectionBySize ...@@ -35,25 +51,10 @@ ep-well:ClassOfWellBoreSectionBySize
35 rdfs:subClassOf owl:Class . 51 rdfs:subClassOf owl:Class .
36 52
37 ep-well:Cluster 53 ep-well:Cluster
38 - rdf:type ep-fac:ProductionFacilityType , owl:Class ; 54 + rdf:type owl:Class , ep-fac:ProductionFacilityType ;
39 rdfs:label "cluster"^^xsd:string ; 55 rdfs:label "cluster"^^xsd:string ;
40 rdfs:subClassOf ep-core:PhysicalObject . 56 rdfs:subClassOf ep-core:PhysicalObject .
41 57
42 -ep-well:Condensate
43 - rdf:type ep-well:FluidComponentType , owl:Class ;
44 - rdfs:label "condensate"^^xsd:string ;
45 - rdfs:subClassOf ep-well:Fluid .
46 -
47 -ep-well:Filtrate
48 - rdf:type ep-well:FluidComponentType , owl:Class ;
49 - rdfs:label "filtrate"^^xsd:string ;
50 - rdfs:subClassOf ep-well:Fluid .
51 -
52 -ep-well:Fluid
53 - rdf:type owl:Class ;
54 - rdfs:label "fluid component"^^xsd:string ;
55 - rdfs:subClassOf ep-core:PhysicalObject .
56 -
57 ep-well:FluidComponentType 58 ep-well:FluidComponentType
58 rdf:type rdfs:Class ; 59 rdf:type rdfs:Class ;
59 rdfs:label "fluid component type"^^xsd:string ; 60 rdfs:label "fluid component type"^^xsd:string ;
...@@ -64,19 +65,14 @@ ep-well:FluidType ...@@ -64,19 +65,14 @@ ep-well:FluidType
64 rdfs:label "fluid type"^^xsd:string ; 65 rdfs:label "fluid type"^^xsd:string ;
65 rdfs:subClassOf owl:Class . 66 rdfs:subClassOf owl:Class .
66 67
67 -ep-well:Gas
68 - rdf:type ep-well:FluidComponentType , owl:Class ;
69 - rdfs:label "gas"^^xsd:string ;
70 - rdfs:subClassOf ep-well:Fluid .
71 -
72 ep-well:HphtWellBore 68 ep-well:HphtWellBore
73 - rdf:type ep-well:WellBoreHphtType , owl:Class ; 69 + rdf:type owl:Class , ep-well:WellBoreHphtType ;
74 rdfs:label "high pressure high temperature well bore"^^xsd:string ; 70 rdfs:label "high pressure high temperature well bore"^^xsd:string ;
75 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; 71 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ;
76 owl:disjointWith ep-well:NotHphtWellBore . 72 owl:disjointWith ep-well:NotHphtWellBore .
77 73
78 ep-well:LeakyWellBore 74 ep-well:LeakyWellBore
79 - rdf:type ep-well:WellBoreTightnessType , owl:Class ; 75 + rdf:type owl:Class , ep-well:WellBoreTightnessType ;
80 rdfs:label "leaky well bore"^^xsd:string ; 76 rdfs:label "leaky well bore"^^xsd:string ;
81 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; 77 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ;
82 owl:disjointWith ep-well:TightWellBore . 78 owl:disjointWith ep-well:TightWellBore .
...@@ -87,28 +83,28 @@ ep-well:LowerPartOfAWellBore ...@@ -87,28 +83,28 @@ ep-well:LowerPartOfAWellBore
87 rdfs:subClassOf ep-well:SpatialPartOfAWellBore . 83 rdfs:subClassOf ep-well:SpatialPartOfAWellBore .
88 84
89 ep-well:Mud 85 ep-well:Mud
90 - rdf:type ep-well:CementingFluidType , owl:Class ; 86 + rdf:type owl:Class , ep-well:CementingFluidType ;
91 rdfs:label "mud"^^xsd:string ; 87 rdfs:label "mud"^^xsd:string ;
92 rdfs:subClassOf ep-well:CementingFluid ; 88 rdfs:subClassOf ep-well:CementingFluid ;
93 - owl:disjointWith ep-well:Slurry , ep-well:Spacer , ep-well:Wash . 89 + owl:disjointWith ep-well:Wash , ep-well:Spacer , ep-well:Slurry .
94 90
95 ep-well:Mud-oilBased 91 ep-well:Mud-oilBased
96 - rdf:type ep-well:MudClass , owl:Class ; 92 + rdf:type owl:Class , ep-well:MudClass ;
97 rdfs:label "mud - oil based"^^xsd:string ; 93 rdfs:label "mud - oil based"^^xsd:string ;
98 rdfs:subClassOf ep-well:Mud ; 94 rdfs:subClassOf ep-well:Mud ;
99 - owl:disjointWith ep-well:Mud-other , ep-well:Mud-waterBased . 95 + owl:disjointWith ep-well:Mud-waterBased , ep-well:Mud-other .
100 96
101 ep-well:Mud-other 97 ep-well:Mud-other
102 - rdf:type ep-well:MudClass , owl:Class ; 98 + rdf:type owl:Class , ep-well:MudClass ;
103 rdfs:label "mud - other"^^xsd:string ; 99 rdfs:label "mud - other"^^xsd:string ;
104 rdfs:subClassOf ep-well:Mud ; 100 rdfs:subClassOf ep-well:Mud ;
105 - owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-waterBased . 101 + owl:disjointWith ep-well:Mud-waterBased , ep-well:Mud-oilBased .
106 102
107 ep-well:Mud-waterBased 103 ep-well:Mud-waterBased
108 - rdf:type ep-well:MudClass , owl:Class ; 104 + rdf:type owl:Class , ep-well:MudClass ;
109 rdfs:label "mud - water based"^^xsd:string ; 105 rdfs:label "mud - water based"^^xsd:string ;
110 rdfs:subClassOf ep-well:Mud ; 106 rdfs:subClassOf ep-well:Mud ;
111 - owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-other . 107 + owl:disjointWith ep-well:Mud-other , ep-well:Mud-oilBased .
112 108
113 ep-well:MudClass 109 ep-well:MudClass
114 rdf:type owl:Class ; 110 rdf:type owl:Class ;
...@@ -116,16 +112,11 @@ ep-well:MudClass ...@@ -116,16 +112,11 @@ ep-well:MudClass
116 rdfs:subClassOf ep-well:FluidType . 112 rdfs:subClassOf ep-well:FluidType .
117 113
118 ep-well:NotHphtWellBore 114 ep-well:NotHphtWellBore
119 - rdf:type ep-well:WellBoreHphtType , owl:Class ; 115 + rdf:type owl:Class , ep-well:WellBoreHphtType ;
120 rdfs:label "not high pressure high temperature well bore"^^xsd:string ; 116 rdfs:label "not high pressure high temperature well bore"^^xsd:string ;
121 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; 117 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ;
122 owl:disjointWith ep-well:HphtWellBore . 118 owl:disjointWith ep-well:HphtWellBore .
123 119
124 -ep-well:Oil
125 - rdf:type ep-well:FluidComponentType , owl:Class ;
126 - rdfs:label "oil"^^xsd:string ;
127 - rdfs:subClassOf ep-well:Fluid .
128 -
129 ep-well:PositionWithinWellBore 120 ep-well:PositionWithinWellBore
130 rdf:type owl:Class ; 121 rdf:type owl:Class ;
131 rdfs:label "position within wellbore"^^xsd:string ; 122 rdfs:label "position within wellbore"^^xsd:string ;
...@@ -137,16 +128,16 @@ ep-well:RecoveredCore ...@@ -137,16 +128,16 @@ ep-well:RecoveredCore
137 rdfs:subClassOf ep-core:PhysicalObject . 128 rdfs:subClassOf ep-core:PhysicalObject .
138 129
139 ep-well:Slurry 130 ep-well:Slurry
140 - rdf:type ep-well:CementingFluidType , owl:Class ; 131 + rdf:type owl:Class , ep-well:CementingFluidType ;
141 rdfs:label "slurry"^^xsd:string ; 132 rdfs:label "slurry"^^xsd:string ;
142 rdfs:subClassOf ep-well:CementingFluid ; 133 rdfs:subClassOf ep-well:CementingFluid ;
143 - owl:disjointWith ep-well:Mud , ep-well:Spacer , ep-well:Wash . 134 + owl:disjointWith ep-well:Wash , ep-well:Spacer , ep-well:Mud .
144 135
145 ep-well:Spacer 136 ep-well:Spacer
146 - rdf:type ep-well:CementingFluidType , owl:Class ; 137 + rdf:type owl:Class , ep-well:CementingFluidType ;
147 rdfs:label "spacer"^^xsd:string ; 138 rdfs:label "spacer"^^xsd:string ;
148 rdfs:subClassOf ep-well:CementingFluid ; 139 rdfs:subClassOf ep-well:CementingFluid ;
149 - owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Wash . 140 + owl:disjointWith ep-well:Wash , ep-well:Slurry , ep-well:Mud .
150 141
151 ep-well:SpatialPartOfAWell 142 ep-well:SpatialPartOfAWell
152 rdf:type owl:Class ; 143 rdf:type owl:Class ;
...@@ -174,7 +165,7 @@ ep-well:TemporalPartOfAWellBore ...@@ -174,7 +165,7 @@ ep-well:TemporalPartOfAWellBore
174 rdfs:subClassOf ep-core:PhysicalObject . 165 rdfs:subClassOf ep-core:PhysicalObject .
175 166
176 ep-well:TightWellBore 167 ep-well:TightWellBore
177 - rdf:type ep-well:WellBoreTightnessType , owl:Class ; 168 + rdf:type owl:Class , ep-well:WellBoreTightnessType ;
178 rdfs:label "tight well bore"^^xsd:string ; 169 rdfs:label "tight well bore"^^xsd:string ;
179 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; 170 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ;
180 owl:disjointWith ep-well:LeakyWellBore . 171 owl:disjointWith ep-well:LeakyWellBore .
...@@ -185,23 +176,18 @@ ep-well:UserDescribedCementingFluidType ...@@ -185,23 +176,18 @@ ep-well:UserDescribedCementingFluidType
185 rdfs:subClassOf ep-well:FluidType . 176 rdfs:subClassOf ep-well:FluidType .
186 177
187 ep-well:Wash 178 ep-well:Wash
188 - rdf:type ep-well:CementingFluidType , owl:Class ; 179 + rdf:type owl:Class , ep-well:CementingFluidType ;
189 rdfs:label "wash"^^xsd:string ; 180 rdfs:label "wash"^^xsd:string ;
190 rdfs:subClassOf ep-well:CementingFluid ; 181 rdfs:subClassOf ep-well:CementingFluid ;
191 - owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Spacer . 182 + owl:disjointWith ep-well:Spacer , ep-well:Slurry , ep-well:Mud .
192 -
193 -ep-well:Water
194 - rdf:type ep-well:FluidComponentType , owl:Class ;
195 - rdfs:label "water"^^xsd:string ;
196 - rdfs:subClassOf ep-well:Fluid .
197 183
198 ep-well:Well 184 ep-well:Well
199 - rdf:type ep-fac:ProductionFacilityType , owl:Class ; 185 + rdf:type owl:Class , ep-fac:ProductionFacilityType ;
200 rdfs:label "well (whole life)"^^xsd:string ; 186 rdfs:label "well (whole life)"^^xsd:string ;
201 rdfs:subClassOf ep-well:TemporalPartOfAWell . 187 rdfs:subClassOf ep-well:TemporalPartOfAWell .
202 188
203 ep-well:WellBore 189 ep-well:WellBore
204 - rdf:type ep-fac:ProductionFacilityType , owl:Class ; 190 + rdf:type owl:Class , ep-fac:ProductionFacilityType ;
205 rdfs:label "wellbore (whole life)"^^xsd:string ; 191 rdfs:label "wellbore (whole life)"^^xsd:string ;
206 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; 192 rdfs:subClassOf ep-well:TemporalPartOfAWellBore ;
207 rdfs:subClassOf 193 rdfs:subClassOf
...@@ -211,7 +197,7 @@ ep-well:WellBore ...@@ -211,7 +197,7 @@ ep-well:WellBore
211 ] . 197 ] .
212 198
213 ep-well:WellBoreBottom 199 ep-well:WellBoreBottom
214 - rdf:type ep-fac:ProductionFacilityType , owl:Class ; 200 + rdf:type owl:Class , ep-fac:ProductionFacilityType ;
215 rdfs:label "wellbore bottom"^^xsd:string ; 201 rdfs:label "wellbore bottom"^^xsd:string ;
216 rdfs:subClassOf ep-well:SpatialPartOfAWellBore . 202 rdfs:subClassOf ep-well:SpatialPartOfAWellBore .
217 203
...@@ -253,256 +239,196 @@ ep-well:WellBoreWithoutCirculation ...@@ -253,256 +239,196 @@ ep-well:WellBoreWithoutCirculation
253 owl:disjointWith ep-well:WellBoreWithCirculation . 239 owl:disjointWith ep-well:WellBoreWithCirculation .
254 240
255 ep-well:WellGroup 241 ep-well:WellGroup
256 - rdf:type ep-fac:ProductionFacilityType , owl:Class ; 242 + rdf:type owl:Class , ep-fac:ProductionFacilityType ;
257 rdfs:label "well group"^^xsd:string ; 243 rdfs:label "well group"^^xsd:string ;
258 rdfs:subClassOf ep-core:PhysicalObject . 244 rdfs:subClassOf ep-core:PhysicalObject .
259 245
260 ep-well:WellHead 246 ep-well:WellHead
261 - rdf:type ep-fac:ProductionFacilityType , owl:Class ; 247 + rdf:type owl:Class , ep-fac:ProductionFacilityType ;
262 rdfs:label "well head"^^xsd:string ; 248 rdfs:label "well head"^^xsd:string ;
263 rdfs:subClassOf ep-well:SpatialPartOfAWell . 249 rdfs:subClassOf ep-well:SpatialPartOfAWell .
264 250
265 ep-well:averageBottomHolePressure 251 ep-well:averageBottomHolePressure
266 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 252 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
267 rdfs:domain ep-well:TemporalPartOfAWellBore ; 253 rdfs:domain ep-well:TemporalPartOfAWellBore ;
268 rdfs:label "average bottom hole pressure"^^xsd:string ; 254 rdfs:label "average bottom hole pressure"^^xsd:string ;
269 rdfs:range ep-core:Pressure . 255 rdfs:range ep-core:Pressure .
270 256
271 ep-well:averageBottomHoleTemperature 257 ep-well:averageBottomHoleTemperature
272 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 258 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
273 rdfs:domain ep-well:TemporalPartOfAWellBore ; 259 rdfs:domain ep-well:TemporalPartOfAWellBore ;
274 rdfs:label "average bottom hole temperature"^^xsd:string ; 260 rdfs:label "average bottom hole temperature"^^xsd:string ;
275 rdfs:range ep-core:Temperature . 261 rdfs:range ep-core:Temperature .
276 262
277 ep-well:azimuth 263 ep-well:azimuth
278 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 264 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
279 rdfs:domain ep-well:PositionWithinWellBore ; 265 rdfs:domain ep-well:PositionWithinWellBore ;
280 rdfs:label "azimuth"^^xsd:string ; 266 rdfs:label "azimuth"^^xsd:string ;
281 rdfs:range ep-core:PlaneAngle . 267 rdfs:range ep-core:PlaneAngle .
282 268
283 ep-well:bottomHoleMeasuredDepth 269 ep-well:bottomHoleMeasuredDepth
284 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 270 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
285 rdfs:domain ep-well:TemporalPartOfAWellBore ; 271 rdfs:domain ep-well:TemporalPartOfAWellBore ;
286 rdfs:label "bottom hole measured depth"^^xsd:string ; 272 rdfs:label "bottom hole measured depth"^^xsd:string ;
287 rdfs:range ep-core:Length . 273 rdfs:range ep-core:Length .
288 274
289 ep-well:bottomHoleTemperature 275 ep-well:bottomHoleTemperature
290 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 276 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
291 rdfs:domain ep-well:TemporalPartOfAWellBore ; 277 rdfs:domain ep-well:TemporalPartOfAWellBore ;
292 rdfs:label "bottom hole temperature"^^xsd:string ; 278 rdfs:label "bottom hole temperature"^^xsd:string ;
293 rdfs:range ep-core:Temperature . 279 rdfs:range ep-core:Temperature .
294 280
295 ep-well:bottomHoleTrueVerticalDepth 281 ep-well:bottomHoleTrueVerticalDepth
296 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 282 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
297 rdfs:domain ep-well:TemporalPartOfAWellBore ; 283 rdfs:domain ep-well:TemporalPartOfAWellBore ;
298 rdfs:label "bottom hole true vertical depth"^^xsd:string ; 284 rdfs:label "bottom hole true vertical depth"^^xsd:string ;
299 rdfs:range ep-core:Length . 285 rdfs:range ep-core:Length .
300 286
301 -ep-well:carbonDioxideConcentration
302 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
303 - rdfs:domain ep-well:Gas ;
304 - rdfs:label "carbon dioxide concentration"^^xsd:string ;
305 - rdfs:range ep-core:MassPerUnitMassConcentration .
306 -
307 ep-well:cementingFluidPerCentFreeWater 287 ep-well:cementingFluidPerCentFreeWater
308 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 288 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
309 rdfs:domain ep-well:CementingFluid ; 289 rdfs:domain ep-well:CementingFluid ;
310 rdfs:label "cementing fluid per cent free water"^^xsd:string ; 290 rdfs:label "cementing fluid per cent free water"^^xsd:string ;
311 rdfs:range ep-core:VolumePerUnitVolumeConcentration . 291 rdfs:range ep-core:VolumePerUnitVolumeConcentration .
312 292
313 ep-well:cementingFluidThickeningTime 293 ep-well:cementingFluidThickeningTime
314 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 294 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
315 rdfs:domain ep-well:CementingFluid ; 295 rdfs:domain ep-well:CementingFluid ;
316 rdfs:label "cementing fluid thickening time"^^xsd:string ; 296 rdfs:label "cementing fluid thickening time"^^xsd:string ;
317 rdfs:range ep-core:TimeDuration . 297 rdfs:range ep-core:TimeDuration .
318 298
319 -ep-well:chlorideConcentration
320 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
321 - rdfs:domain ep-well:Gas ;
322 - rdfs:label "chloride concentration"^^xsd:string ;
323 - rdfs:range ep-core:MassPerUnitMassConcentration .
324 -
325 ep-well:coreLength 299 ep-well:coreLength
326 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 300 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
327 rdfs:domain ep-well:RecoveredCore ; 301 rdfs:domain ep-well:RecoveredCore ;
328 rdfs:label "core length"^^xsd:string ; 302 rdfs:label "core length"^^xsd:string ;
329 rdfs:range ep-core:Length . 303 rdfs:range ep-core:Length .
330 304
331 ep-well:diameterOfAWellBorePilotHole 305 ep-well:diameterOfAWellBorePilotHole
332 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 306 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
333 rdfs:domain ep-well:WellBorePilotHole ; 307 rdfs:domain ep-well:WellBorePilotHole ;
334 rdfs:label "diameter of a wellbore pilot hole"^^xsd:string ; 308 rdfs:label "diameter of a wellbore pilot hole"^^xsd:string ;
335 rdfs:range ep-core:Length . 309 rdfs:range ep-core:Length .
336 310
337 ep-well:dominantComponent 311 ep-well:dominantComponent
338 rdf:type owl:ObjectProperty ; 312 rdf:type owl:ObjectProperty ;
339 - rdfs:domain ep-well:Fluid ; 313 + rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ;
340 rdfs:label "dominant component"^^xsd:string ; 314 rdfs:label "dominant component"^^xsd:string ;
341 rdfs:range ep-well:FluidComponentType . 315 rdfs:range ep-well:FluidComponentType .
342 316
343 -ep-well:ethaneConcentration
344 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
345 - rdfs:domain ep-well:Gas ;
346 - rdfs:label "ethane concentration"^^xsd:string ;
347 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
348 -
349 ep-well:finalBottomHoleMeasuredDepth 317 ep-well:finalBottomHoleMeasuredDepth
350 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 318 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
351 rdfs:domain ep-well:TemporalPartOfAWellBore ; 319 rdfs:domain ep-well:TemporalPartOfAWellBore ;
352 rdfs:label "final bottom hole measured depth"^^xsd:string ; 320 rdfs:label "final bottom hole measured depth"^^xsd:string ;
353 rdfs:range ep-core:Length . 321 rdfs:range ep-core:Length .
354 322
355 ep-well:finalBottomHoleTrueVerticalDepth 323 ep-well:finalBottomHoleTrueVerticalDepth
356 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 324 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
357 rdfs:domain ep-well:TemporalPartOfAWellBore ; 325 rdfs:domain ep-well:TemporalPartOfAWellBore ;
358 rdfs:label "final bottom hole true vertical depth"^^xsd:string ; 326 rdfs:label "final bottom hole true vertical depth"^^xsd:string ;
359 rdfs:range ep-core:Length . 327 rdfs:range ep-core:Length .
360 328
361 ep-well:gasConcentrationHigh 329 ep-well:gasConcentrationHigh
362 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 330 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
363 - rdfs:domain ep-well:Fluid ; 331 + rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ;
364 rdfs:label "gas concentration - high"^^xsd:string ; 332 rdfs:label "gas concentration - high"^^xsd:string ;
365 rdfs:range ep-core:VolumePerUnitVolumeConcentration . 333 rdfs:range ep-core:VolumePerUnitVolumeConcentration .
366 334
367 ep-well:gasConcentrationLow 335 ep-well:gasConcentrationLow
368 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 336 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
369 - rdfs:domain ep-well:Fluid ; 337 + rdfs:domain <http://www.reportinghub.no/ep/schema/material#Fluid> ;
370 rdfs:label "gas concentration - low"^^xsd:string ; 338 rdfs:label "gas concentration - low"^^xsd:string ;
371 rdfs:range ep-core:VolumePerUnitVolumeConcentration . 339 rdfs:range ep-core:VolumePerUnitVolumeConcentration .
372 340
373 -ep-well:gasOilRatio
374 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
375 - rdfs:domain ep-well:Fluid ;
376 - rdfs:label "gas oil ratio"^^xsd:string ;
377 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
378 -
379 ep-well:hasBarrel 341 ep-well:hasBarrel
380 - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; 342 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
381 rdfs:domain ep-well:RecoveredCore ; 343 rdfs:domain ep-well:RecoveredCore ;
382 rdfs:label "has barrel"^^xsd:string ; 344 rdfs:label "has barrel"^^xsd:string ;
383 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> . 345 rdfs:range <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> .
384 346
385 -ep-well:hydrogenSulfideConcentration
386 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
387 - rdfs:domain ep-well:Gas ;
388 - rdfs:label "hydrogen sulfide concentration"^^xsd:string ;
389 - rdfs:range ep-core:MassPerUnitMassConcentration .
390 -
391 ep-well:inclination 347 ep-well:inclination
392 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 348 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
393 rdfs:domain ep-well:PositionWithinWellBore ; 349 rdfs:domain ep-well:PositionWithinWellBore ;
394 rdfs:label "inclination"^^xsd:string ; 350 rdfs:label "inclination"^^xsd:string ;
395 rdfs:range ep-core:PlaneAngle . 351 rdfs:range ep-core:PlaneAngle .
396 352
397 ep-well:initialBottomHoleMeasuredDepth 353 ep-well:initialBottomHoleMeasuredDepth
398 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 354 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
399 rdfs:domain ep-well:TemporalPartOfAWellBore ; 355 rdfs:domain ep-well:TemporalPartOfAWellBore ;
400 rdfs:label "initial bottom hole measured depth"^^xsd:string ; 356 rdfs:label "initial bottom hole measured depth"^^xsd:string ;
401 rdfs:range ep-core:Length . 357 rdfs:range ep-core:Length .
402 358
403 -ep-well:isoButaneConcentration
404 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
405 - rdfs:domain ep-well:Gas ;
406 - rdfs:label "iso-Butane concentration"^^xsd:string ;
407 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
408 -
409 -ep-well:isoPentaneConcentration
410 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
411 - rdfs:domain ep-well:Gas ;
412 - rdfs:label "iso-Pentane concentration"^^xsd:string ;
413 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
414 -
415 ep-well:lithologyDescription 359 ep-well:lithologyDescription
416 rdf:type owl:DatatypeProperty ; 360 rdf:type owl:DatatypeProperty ;
417 rdfs:domain ep-well:SpatialPartOfAWellBore ; 361 rdfs:domain ep-well:SpatialPartOfAWellBore ;
418 rdfs:label "lithology description"^^xsd:string . 362 rdfs:label "lithology description"^^xsd:string .
419 363
420 ep-well:measuredDepth 364 ep-well:measuredDepth
421 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 365 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
422 rdfs:domain ep-well:SpatialPartOfAWellBore ; 366 rdfs:domain ep-well:SpatialPartOfAWellBore ;
423 rdfs:label "measured depth"^^xsd:string ; 367 rdfs:label "measured depth"^^xsd:string ;
424 rdfs:range ep-core:Length . 368 rdfs:range ep-core:Length .
425 369
426 ep-well:measuredDepthOfPlugTop 370 ep-well:measuredDepthOfPlugTop
427 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 371 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
428 rdfs:domain ep-well:TemporalPartOfAWellBore ; 372 rdfs:domain ep-well:TemporalPartOfAWellBore ;
429 rdfs:label "measured depth of plug top"^^xsd:string ; 373 rdfs:label "measured depth of plug top"^^xsd:string ;
430 rdfs:range ep-core:Length . 374 rdfs:range ep-core:Length .
431 375
432 ep-well:measuredDepthToTheBottomOfAPartOfAWellBore 376 ep-well:measuredDepthToTheBottomOfAPartOfAWellBore
433 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 377 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
434 rdfs:domain ep-well:SpatialPartOfAWellBore ; 378 rdfs:domain ep-well:SpatialPartOfAWellBore ;
435 rdfs:label "measured depth to the bottom of a part of a wellbore"^^xsd:string ; 379 rdfs:label "measured depth to the bottom of a part of a wellbore"^^xsd:string ;
436 rdfs:range ep-core:Length . 380 rdfs:range ep-core:Length .
437 381
438 ep-well:measuredDepthToTheTopOfAPartOfAWellBore 382 ep-well:measuredDepthToTheTopOfAPartOfAWellBore
439 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 383 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
440 rdfs:domain ep-well:SpatialPartOfAWellBore ; 384 rdfs:domain ep-well:SpatialPartOfAWellBore ;
441 rdfs:label "measured depth to the top of a part of a wellbore"^^xsd:string ; 385 rdfs:label "measured depth to the top of a part of a wellbore"^^xsd:string ;
442 rdfs:range ep-core:Length . 386 rdfs:range ep-core:Length .
443 387
444 -ep-well:methaneConcentration
445 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
446 - rdfs:domain ep-well:Gas ;
447 - rdfs:label "methane concentration"^^xsd:string ;
448 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
449 -
450 ep-well:nominalInsideDiameterOfBoreHole 388 ep-well:nominalInsideDiameterOfBoreHole
451 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 389 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
452 rdfs:domain ep-well:TemporalPartOfAWellBore ; 390 rdfs:domain ep-well:TemporalPartOfAWellBore ;
453 rdfs:label "nominal inside diameter of borehole"^^xsd:string ; 391 rdfs:label "nominal inside diameter of borehole"^^xsd:string ;
454 rdfs:range ep-core:Length . 392 rdfs:range ep-core:Length .
455 393
456 -ep-well:norButaneConcentration
457 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
458 - rdfs:domain ep-well:Gas ;
459 - rdfs:label "nor-Butane concentration"^^xsd:string ;
460 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
461 -
462 ep-well:plannedBottomHoleMeasuredDepth 394 ep-well:plannedBottomHoleMeasuredDepth
463 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 395 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
464 rdfs:domain ep-well:TemporalPartOfAWellBore ; 396 rdfs:domain ep-well:TemporalPartOfAWellBore ;
465 rdfs:label "planned bottom hole measured depth"^^xsd:string ; 397 rdfs:label "planned bottom hole measured depth"^^xsd:string ;
466 rdfs:range ep-core:Length . 398 rdfs:range ep-core:Length .
467 399
468 ep-well:plannedPilotBottomHoleMeasuredDepth 400 ep-well:plannedPilotBottomHoleMeasuredDepth
469 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 401 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
470 rdfs:domain ep-well:WellBorePilotHole ; 402 rdfs:domain ep-well:WellBorePilotHole ;
471 rdfs:label "planned pilot bottom hole measured depth"^^xsd:string ; 403 rdfs:label "planned pilot bottom hole measured depth"^^xsd:string ;
472 rdfs:range ep-core:Length . 404 rdfs:range ep-core:Length .
473 405
474 ep-well:plannedPilotBottomHoleTrueVerticalDepth 406 ep-well:plannedPilotBottomHoleTrueVerticalDepth
475 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 407 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
476 rdfs:domain ep-well:WellBorePilotHole ; 408 rdfs:domain ep-well:WellBorePilotHole ;
477 rdfs:label "planned pilot bottom hole true vertical depth"^^xsd:string ; 409 rdfs:label "planned pilot bottom hole true vertical depth"^^xsd:string ;
478 rdfs:range ep-core:Length . 410 rdfs:range ep-core:Length .
479 411
480 ep-well:porePressure 412 ep-well:porePressure
481 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 413 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
482 rdfs:domain ep-well:SpatialPartOfAWellBore ; 414 rdfs:domain ep-well:SpatialPartOfAWellBore ;
483 rdfs:label "pore pressure"^^xsd:string ; 415 rdfs:label "pore pressure"^^xsd:string ;
484 rdfs:range ep-core:Pressure . 416 rdfs:range ep-core:Pressure .
485 417
486 ep-well:porePressureEquivalentMudDensity 418 ep-well:porePressureEquivalentMudDensity
487 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 419 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
488 rdfs:domain ep-well:TemporalPartOfAWellBore ; 420 rdfs:domain ep-well:TemporalPartOfAWellBore ;
489 rdfs:label "pore pressure - equivalent mud density"^^xsd:string ; 421 rdfs:label "pore pressure - equivalent mud density"^^xsd:string ;
490 rdfs:range ep-core:Density . 422 rdfs:range ep-core:Density .
491 423
492 -ep-well:propaneConcentration
493 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
494 - rdfs:domain ep-well:Gas ;
495 - rdfs:label "propane concentration"^^xsd:string ;
496 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
497 -
498 ep-well:ratioOfCementMixToWater 424 ep-well:ratioOfCementMixToWater
499 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 425 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
500 rdfs:domain ep-well:CementingFluid ; 426 rdfs:domain ep-well:CementingFluid ;
501 rdfs:label "ratio of cement mix to water"^^xsd:string ; 427 rdfs:label "ratio of cement mix to water"^^xsd:string ;
502 rdfs:range ep-core:VolumePerUnitVolumeConcentration . 428 rdfs:range ep-core:VolumePerUnitVolumeConcentration .
503 429
504 ep-well:relativeAmountOfCoreRecovered 430 ep-well:relativeAmountOfCoreRecovered
505 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 431 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
506 rdfs:domain ep-well:RecoveredCore ; 432 rdfs:domain ep-well:RecoveredCore ;
507 rdfs:label "relative amount of core recovered"^^xsd:string ; 433 rdfs:label "relative amount of core recovered"^^xsd:string ;
508 rdfs:range ep-core:VolumePerUnitVolumeConcentration . 434 rdfs:range ep-core:VolumePerUnitVolumeConcentration .
...@@ -513,13 +439,13 @@ ep-well:showDescription ...@@ -513,13 +439,13 @@ ep-well:showDescription
513 rdfs:label "show description"^^xsd:string . 439 rdfs:label "show description"^^xsd:string .
514 440
515 ep-well:shutInCasingPressure 441 ep-well:shutInCasingPressure
516 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 442 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
517 rdfs:domain ep-well:TemporalPartOfAWellBore ; 443 rdfs:domain ep-well:TemporalPartOfAWellBore ;
518 rdfs:label "shut in casing pressure"^^xsd:string ; 444 rdfs:label "shut in casing pressure"^^xsd:string ;
519 rdfs:range ep-core:Pressure . 445 rdfs:range ep-core:Pressure .
520 446
521 ep-well:shutInDrillPipePressure 447 ep-well:shutInDrillPipePressure
522 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 448 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
523 rdfs:domain ep-well:TemporalPartOfAWellBore ; 449 rdfs:domain ep-well:TemporalPartOfAWellBore ;
524 rdfs:label "shut in drill pipe pressure"^^xsd:string ; 450 rdfs:label "shut in drill pipe pressure"^^xsd:string ;
525 rdfs:range ep-core:Pressure . 451 rdfs:range ep-core:Pressure .
...@@ -530,46 +456,40 @@ ep-well:stratigraphyDescription ...@@ -530,46 +456,40 @@ ep-well:stratigraphyDescription
530 rdfs:label "stratigraphy description"^^xsd:string . 456 rdfs:label "stratigraphy description"^^xsd:string .
531 457
532 ep-well:strengthOfRockFormation 458 ep-well:strengthOfRockFormation
533 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 459 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
534 rdfs:domain ep-well:SurroundingRockFormation ; 460 rdfs:domain ep-well:SurroundingRockFormation ;
535 rdfs:label "strength of rock formation"^^xsd:string ; 461 rdfs:label "strength of rock formation"^^xsd:string ;
536 rdfs:range ep-core:StrengthOfRockFormation . 462 rdfs:range ep-core:StrengthOfRockFormation .
537 463
538 ep-well:trueVerticalDepth 464 ep-well:trueVerticalDepth
539 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 465 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
540 rdfs:domain ep-well:SpatialPartOfAWellBore ; 466 rdfs:domain ep-well:SpatialPartOfAWellBore ;
541 rdfs:label "true vertical depth"^^xsd:string ; 467 rdfs:label "true vertical depth"^^xsd:string ;
542 rdfs:range ep-core:Length . 468 rdfs:range ep-core:Length .
543 469
544 ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore 470 ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore
545 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 471 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
546 rdfs:domain ep-well:SpatialPartOfAWellBore ; 472 rdfs:domain ep-well:SpatialPartOfAWellBore ;
547 rdfs:label "true vertical depth to the bottom of a part of a wellbore"^^xsd:string ; 473 rdfs:label "true vertical depth to the bottom of a part of a wellbore"^^xsd:string ;
548 rdfs:range ep-core:Length . 474 rdfs:range ep-core:Length .
549 475
550 ep-well:trueVerticalDepthToTheTopOfAPartOfAWellBore 476 ep-well:trueVerticalDepthToTheTopOfAPartOfAWellBore
551 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; 477 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
552 rdfs:domain ep-well:SpatialPartOfAWellBore ; 478 rdfs:domain ep-well:SpatialPartOfAWellBore ;
553 rdfs:label "true vertical depth to the top of a part of a wellbore"^^xsd:string ; 479 rdfs:label "true vertical depth to the top of a part of a wellbore"^^xsd:string ;
554 rdfs:range ep-core:Length . 480 rdfs:range ep-core:Length .
555 481
556 -ep-well:waterOilRatio
557 - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
558 - rdfs:domain ep-well:Fluid ;
559 - rdfs:label "water oil ratio"^^xsd:string ;
560 - rdfs:range ep-core:VolumePerUnitVolumeConcentration .
561 -
562 ep-well:wellBoreCompletedAt 482 ep-well:wellBoreCompletedAt
563 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; 483 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
564 rdfs:domain ep-well:TemporalPartOfAWellBore ; 484 rdfs:domain ep-well:TemporalPartOfAWellBore ;
565 rdfs:label "wellbore completed at"^^xsd:string . 485 rdfs:label "wellbore completed at"^^xsd:string .
566 486
567 ep-well:wellBorePreSpudAt 487 ep-well:wellBorePreSpudAt
568 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; 488 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
569 rdfs:domain ep-well:TemporalPartOfAWellBore ; 489 rdfs:domain ep-well:TemporalPartOfAWellBore ;
570 rdfs:label "wellbore pre-spud at"^^xsd:string . 490 rdfs:label "wellbore pre-spud at"^^xsd:string .
571 491
572 ep-well:wellBoreSpudAt 492 ep-well:wellBoreSpudAt
573 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; 493 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
574 rdfs:domain ep-well:TemporalPartOfAWellBore ; 494 rdfs:domain ep-well:TemporalPartOfAWellBore ;
575 rdfs:label "wellbore spud at"^^xsd:string . 495 rdfs:label "wellbore spud at"^^xsd:string .
......
This diff could not be displayed because it is too large.
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
6 # imports: http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type 6 # imports: http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type
7 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment 7 # imports: http://www.reportinghub.no/ep/schema/1.0/equipment
8 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 8 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
9 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
9 # imports: http://www.reportinghub.no/ep/schema/1.0/report 10 # imports: http://www.reportinghub.no/ep/schema/1.0/report
10 # imports: http://www.reportinghub.no/ep/schema/1.0/well 11 # imports: http://www.reportinghub.no/ep/schema/1.0/well
11 # imports: http://www.reportinghub.no/spin/rh 12 # imports: http://www.reportinghub.no/spin/rh
...@@ -31,7 +32,7 @@ ...@@ -31,7 +32,7 @@
31 32
32 <http://www.reportinghub.no/ep/spin/1.1/lib> 33 <http://www.reportinghub.no/ep/spin/1.1/lib>
33 rdf:type owl:Ontology ; 34 rdf:type owl:Ontology ;
34 - owl:imports <http://www.reportinghub.no/spin/rh> , <http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://spinrdf.org/spin> , <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> , <http://www.reportinghub.no/ep/schema/1.0/facility> ; 35 + owl:imports <http://www.reportinghub.no/spin/rh> , <http://www.reportinghub.no/ep/schema/1.0/drilling-equipment-type> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/report> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://spinrdf.org/spin> , <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> , <http://www.reportinghub.no/ep/schema/1.0/facility> ;
35 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 36 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
36 37
37 ep-spin-lib:Function 38 ep-spin-lib:Function
...@@ -542,7 +543,7 @@ ep-spin-lib:buildSteelGradeAPI_5CTClass ...@@ -542,7 +543,7 @@ ep-spin-lib:buildSteelGradeAPI_5CTClass
542 sp:where ([ rdf:type sp:Bind ; 543 sp:where ([ rdf:type sp:Bind ;
543 sp:expression 544 sp:expression
544 [ rdf:type ep-spin-lib:buildURI ; 545 [ rdf:type ep-spin-lib:buildURI ;
545 - sp:arg1 "http://www.reportinghub.no/ep/schema/steelGrade/API_5CT-" ; 546 + sp:arg1 "http://www.reportinghub.no/ep/data/steelGrade/API_5CT-" ;
546 sp:arg2 [ rdf:type fn:concat ; 547 sp:arg2 [ rdf:type fn:concat ;
547 sp:arg1 spin:_arg1 548 sp:arg1 spin:_arg1
548 ] 549 ]
...@@ -1442,7 +1443,8 @@ ep-spin-lib:selectComponentType ...@@ -1442,7 +1443,8 @@ ep-spin-lib:selectComponentType
1442 rdfs:subClassOf ep-spin-lib:Function ; 1443 rdfs:subClassOf ep-spin-lib:Function ;
1443 spin:body 1444 spin:body
1444 [ rdf:type sp:Select ; 1445 [ rdf:type sp:Select ;
1445 - sp:resultVariables (_:b39) ; 1446 + sp:resultVariables ([ sp:varName "componentType"^^xsd:string
1447 + ]) ;
1446 sp:where ([ rdf:type sp:Bind ; 1448 sp:where ([ rdf:type sp:Bind ;
1447 sp:expression 1449 sp:expression
1448 [ rdf:type sp:if ; 1450 [ rdf:type sp:if ;
...@@ -1450,38 +1452,40 @@ ep-spin-lib:selectComponentType ...@@ -1450,38 +1452,40 @@ ep-spin-lib:selectComponentType
1450 sp:arg1 spin:_arg1 ; 1452 sp:arg1 spin:_arg1 ;
1451 sp:arg2 ddr:DCTNPD_condensate 1453 sp:arg2 ddr:DCTNPD_condensate
1452 ] ; 1454 ] ;
1453 - sp:arg2 <http://www.reportinghub.no/ep/schema/well#Condensate> ; 1455 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Condensate> ;
1454 sp:arg3 [ rdf:type sp:if ; 1456 sp:arg3 [ rdf:type sp:if ;
1455 sp:arg1 [ rdf:type sp:eq ; 1457 sp:arg1 [ rdf:type sp:eq ;
1456 sp:arg1 spin:_arg1 ; 1458 sp:arg1 spin:_arg1 ;
1457 sp:arg2 ddr:DCTNPD_filtrate 1459 sp:arg2 ddr:DCTNPD_filtrate
1458 ] ; 1460 ] ;
1459 - sp:arg2 <http://www.reportinghub.no/ep/schema/well#Filtrate> ; 1461 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Filtrate> ;
1460 sp:arg3 [ rdf:type sp:if ; 1462 sp:arg3 [ rdf:type sp:if ;
1461 sp:arg1 [ rdf:type sp:eq ; 1463 sp:arg1 [ rdf:type sp:eq ;
1462 sp:arg1 spin:_arg1 ; 1464 sp:arg1 spin:_arg1 ;
1463 sp:arg2 ddr:DCTNPD_gas 1465 sp:arg2 ddr:DCTNPD_gas
1464 ] ; 1466 ] ;
1465 - sp:arg2 <http://www.reportinghub.no/ep/schema/well#Gas> ; 1467 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Gas> ;
1466 sp:arg3 [ rdf:type sp:if ; 1468 sp:arg3 [ rdf:type sp:if ;
1467 sp:arg1 [ rdf:type sp:eq ; 1469 sp:arg1 [ rdf:type sp:eq ;
1468 sp:arg1 spin:_arg1 ; 1470 sp:arg1 spin:_arg1 ;
1469 sp:arg2 ddr:DCTNPD_oil 1471 sp:arg2 ddr:DCTNPD_oil
1470 ] ; 1472 ] ;
1471 - sp:arg2 <http://www.reportinghub.no/ep/schema/well#Oil> ; 1473 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Oil> ;
1472 sp:arg3 [ rdf:type sp:if ; 1474 sp:arg3 [ rdf:type sp:if ;
1473 sp:arg1 [ rdf:type sp:eq ; 1475 sp:arg1 [ rdf:type sp:eq ;
1474 sp:arg1 spin:_arg1 ; 1476 sp:arg1 spin:_arg1 ;
1475 sp:arg2 ddr:DCTNPD_water 1477 sp:arg2 ddr:DCTNPD_water
1476 ] ; 1478 ] ;
1477 - sp:arg2 <http://www.reportinghub.no/ep/schema/well#Water> ; 1479 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Water> ;
1478 - sp:arg3 <http://www.reportinghub.no/ep/schema/well#Fluid> 1480 + sp:arg3 <http://www.reportinghub.no/ep/schema/material#Fluid>
1479 ] 1481 ]
1480 ] 1482 ]
1481 ] 1483 ]
1482 ] 1484 ]
1483 ] ; 1485 ] ;
1484 - sp:variable _:b39 1486 + sp:variable
1487 + [ sp:varName "componentType"^^xsd:string
1488 + ]
1485 ]) 1489 ])
1486 ] . 1490 ] .
1487 1491
...@@ -1529,7 +1533,7 @@ ep-spin-lib:selectDailyDrillingReportType ...@@ -1529,7 +1533,7 @@ ep-spin-lib:selectDailyDrillingReportType
1529 rdfs:subClassOf ep-spin-lib:Function ; 1533 rdfs:subClassOf ep-spin-lib:Function ;
1530 spin:body 1534 spin:body
1531 [ rdf:type sp:Select ; 1535 [ rdf:type sp:Select ;
1532 - sp:resultVariables (_:b40) ; 1536 + sp:resultVariables (_:b39) ;
1533 sp:where ([ rdf:type sp:Bind ; 1537 sp:where ([ rdf:type sp:Bind ;
1534 sp:expression 1538 sp:expression
1535 [ rdf:type sp:if ; 1539 [ rdf:type sp:if ;
...@@ -1547,7 +1551,7 @@ ep-spin-lib:selectDailyDrillingReportType ...@@ -1547,7 +1551,7 @@ ep-spin-lib:selectDailyDrillingReportType
1547 sp:arg3 <http://www.reportinghub.no/ep/schema/report#FinalDailyDrillingReport> 1551 sp:arg3 <http://www.reportinghub.no/ep/schema/report#FinalDailyDrillingReport>
1548 ] 1552 ]
1549 ] ; 1553 ] ;
1550 - sp:variable _:b40 1554 + sp:variable _:b39
1551 ]) 1555 ])
1552 ] . 1556 ] .
1553 1557
...@@ -1557,7 +1561,7 @@ ep-spin-lib:selectDensityScale ...@@ -1557,7 +1561,7 @@ ep-spin-lib:selectDensityScale
1557 rdfs:subClassOf ep-spin-lib:Function ; 1561 rdfs:subClassOf ep-spin-lib:Function ;
1558 spin:body 1562 spin:body
1559 [ rdf:type sp:Select ; 1563 [ rdf:type sp:Select ;
1560 - sp:resultVariables (_:b41) ; 1564 + sp:resultVariables (_:b40) ;
1561 sp:where ([ rdf:type sp:Bind ; 1565 sp:where ([ rdf:type sp:Bind ;
1562 sp:expression 1566 sp:expression
1563 [ rdf:type sp:if ; 1567 [ rdf:type sp:if ;
...@@ -1575,7 +1579,7 @@ ep-spin-lib:selectDensityScale ...@@ -1575,7 +1579,7 @@ ep-spin-lib:selectDensityScale
1575 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 1579 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
1576 ] 1580 ]
1577 ] ; 1581 ] ;
1578 - sp:variable _:b41 1582 + sp:variable _:b40
1579 ]) 1583 ])
1580 ] . 1584 ] .
1581 1585
...@@ -1585,7 +1589,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType ...@@ -1585,7 +1589,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType
1585 rdfs:subClassOf ep-spin-lib:Function ; 1589 rdfs:subClassOf ep-spin-lib:Function ;
1586 spin:body 1590 spin:body
1587 [ rdf:type sp:Select ; 1591 [ rdf:type sp:Select ;
1588 - sp:resultVariables (_:b42) ; 1592 + sp:resultVariables (_:b41) ;
1589 sp:where ([ rdf:type sp:Bind ; 1593 sp:where ([ rdf:type sp:Bind ;
1590 sp:expression 1594 sp:expression
1591 [ rdf:type sp:if ; 1595 [ rdf:type sp:if ;
...@@ -1652,7 +1656,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType ...@@ -1652,7 +1656,7 @@ ep-spin-lib:selectDrillingActivityOutcomeType
1652 ] 1656 ]
1653 ] 1657 ]
1654 ] ; 1658 ] ;
1655 - sp:variable _:b42 1659 + sp:variable _:b41
1656 ]) 1660 ])
1657 ] . 1661 ] .
1658 1662
...@@ -1662,7 +1666,7 @@ ep-spin-lib:selectDrillingActivityPurposeType ...@@ -1662,7 +1666,7 @@ ep-spin-lib:selectDrillingActivityPurposeType
1662 rdfs:subClassOf ep-spin-lib:Function ; 1666 rdfs:subClassOf ep-spin-lib:Function ;
1663 spin:body 1667 spin:body
1664 [ rdf:type sp:Select ; 1668 [ rdf:type sp:Select ;
1665 - sp:resultVariables (_:b43) ; 1669 + sp:resultVariables (_:b42) ;
1666 sp:where ([ rdf:type sp:Bind ; 1670 sp:where ([ rdf:type sp:Bind ;
1667 sp:expression 1671 sp:expression
1668 [ rdf:type sp:if ; 1672 [ rdf:type sp:if ;
...@@ -2247,7 +2251,7 @@ ep-spin-lib:selectDrillingActivityPurposeType ...@@ -2247,7 +2251,7 @@ ep-spin-lib:selectDrillingActivityPurposeType
2247 ] 2251 ]
2248 ] 2252 ]
2249 ] ; 2253 ] ;
2250 - sp:variable _:b43 2254 + sp:variable _:b42
2251 ]) 2255 ])
2252 ] . 2256 ] .
2253 2257
...@@ -2257,7 +2261,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ...@@ -2257,7 +2261,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType
2257 rdfs:subClassOf ep-spin-lib:Function ; 2261 rdfs:subClassOf ep-spin-lib:Function ;
2258 spin:body 2262 spin:body
2259 [ rdf:type sp:Select ; 2263 [ rdf:type sp:Select ;
2260 - sp:resultVariables (_:b44) ; 2264 + sp:resultVariables (_:b43) ;
2261 sp:where ([ rdf:type sp:Bind ; 2265 sp:where ([ rdf:type sp:Bind ;
2262 sp:expression 2266 sp:expression
2263 [ rdf:type sp:if ; 2267 [ rdf:type sp:if ;
...@@ -2296,7 +2300,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ...@@ -2296,7 +2300,7 @@ ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType
2296 ] 2300 ]
2297 ] 2301 ]
2298 ] ; 2302 ] ;
2299 - sp:variable _:b44 2303 + sp:variable _:b43
2300 ]) 2304 ])
2301 ] . 2305 ] .
2302 2306
...@@ -2306,7 +2310,7 @@ ep-spin-lib:selectDrillingEquipmentType ...@@ -2306,7 +2310,7 @@ ep-spin-lib:selectDrillingEquipmentType
2306 rdfs:subClassOf ep-spin-lib:Function ; 2310 rdfs:subClassOf ep-spin-lib:Function ;
2307 spin:body 2311 spin:body
2308 [ rdf:type sp:Select ; 2312 [ rdf:type sp:Select ;
2309 - sp:resultVariables (_:b45) ; 2313 + sp:resultVariables (_:b44) ;
2310 sp:where ([ rdf:type sp:Bind ; 2314 sp:where ([ rdf:type sp:Bind ;
2311 sp:expression 2315 sp:expression
2312 [ rdf:type sp:if ; 2316 [ rdf:type sp:if ;
...@@ -2723,7 +2727,7 @@ ep-spin-lib:selectDrillingEquipmentType ...@@ -2723,7 +2727,7 @@ ep-spin-lib:selectDrillingEquipmentType
2723 ] 2727 ]
2724 ] 2728 ]
2725 ] ; 2729 ] ;
2726 - sp:variable _:b45 2730 + sp:variable _:b44
2727 ]) 2731 ])
2728 ] . 2732 ] .
2729 2733
...@@ -2764,7 +2768,7 @@ ep-spin-lib:selectFixedOrMoveableRigType ...@@ -2764,7 +2768,7 @@ ep-spin-lib:selectFixedOrMoveableRigType
2764 rdfs:subClassOf ep-spin-lib:Function ; 2768 rdfs:subClassOf ep-spin-lib:Function ;
2765 spin:body 2769 spin:body
2766 [ rdf:type sp:Select ; 2770 [ rdf:type sp:Select ;
2767 - sp:resultVariables (_:b46) ; 2771 + sp:resultVariables (_:b45) ;
2768 sp:where ([ rdf:type sp:Bind ; 2772 sp:where ([ rdf:type sp:Bind ;
2769 sp:expression 2773 sp:expression
2770 [ rdf:type sp:if ; 2774 [ rdf:type sp:if ;
...@@ -2775,7 +2779,7 @@ ep-spin-lib:selectFixedOrMoveableRigType ...@@ -2775,7 +2779,7 @@ ep-spin-lib:selectFixedOrMoveableRigType
2775 sp:arg2 <http://www.reportinghub.no/ep/schema/facility#FixedRig> ; 2779 sp:arg2 <http://www.reportinghub.no/ep/schema/facility#FixedRig> ;
2776 sp:arg3 <http://www.reportinghub.no/ep/schema/facility#MoveableRig> 2780 sp:arg3 <http://www.reportinghub.no/ep/schema/facility#MoveableRig>
2777 ] ; 2781 ] ;
2778 - sp:variable _:b46 2782 + sp:variable _:b45
2779 ]) 2783 ])
2780 ] . 2784 ] .
2781 2785
...@@ -2785,7 +2789,8 @@ ep-spin-lib:selectFluidType ...@@ -2785,7 +2789,8 @@ ep-spin-lib:selectFluidType
2785 rdfs:subClassOf ep-spin-lib:Function ; 2789 rdfs:subClassOf ep-spin-lib:Function ;
2786 spin:body 2790 spin:body
2787 [ rdf:type sp:Select ; 2791 [ rdf:type sp:Select ;
2788 - sp:resultVariables (_:b47) ; 2792 + sp:resultVariables ([ sp:varName "fluidType"^^xsd:string
2793 + ]) ;
2789 sp:where ([ rdf:type sp:Bind ; 2794 sp:where ([ rdf:type sp:Bind ;
2790 sp:expression 2795 sp:expression
2791 [ rdf:type sp:if ; 2796 [ rdf:type sp:if ;
...@@ -2812,12 +2817,14 @@ ep-spin-lib:selectFluidType ...@@ -2812,12 +2817,14 @@ ep-spin-lib:selectFluidType
2812 sp:arg2 ddr:FT_Slurry 2817 sp:arg2 ddr:FT_Slurry
2813 ] ; 2818 ] ;
2814 sp:arg2 <http://www.reportinghub.no/ep/schema/well#Slurry> ; 2819 sp:arg2 <http://www.reportinghub.no/ep/schema/well#Slurry> ;
2815 - sp:arg3 <http://www.reportinghub.no/ep/schema/well#Fluid> 2820 + sp:arg3 <http://www.reportinghub.no/ep/schema/material#Fluid>
2816 ] 2821 ]
2817 ] 2822 ]
2818 ] 2823 ]
2819 ] ; 2824 ] ;
2820 - sp:variable _:b47 2825 + sp:variable
2826 + [ sp:varName "fluidType"^^xsd:string
2827 + ]
2821 ]) 2828 ])
2822 ] . 2829 ] .
2823 2830
...@@ -2907,7 +2914,7 @@ ep-spin-lib:selectGasReadingType ...@@ -2907,7 +2914,7 @@ ep-spin-lib:selectGasReadingType
2907 rdfs:subClassOf ep-spin-lib:Function ; 2914 rdfs:subClassOf ep-spin-lib:Function ;
2908 spin:body 2915 spin:body
2909 [ rdf:type sp:Select ; 2916 [ rdf:type sp:Select ;
2910 - sp:resultVariables (_:b48) ; 2917 + sp:resultVariables (_:b46) ;
2911 sp:where ([ rdf:type sp:Bind ; 2918 sp:where ([ rdf:type sp:Bind ;
2912 sp:expression 2919 sp:expression
2913 [ rdf:type sp:if ; 2920 [ rdf:type sp:if ;
...@@ -2974,7 +2981,7 @@ ep-spin-lib:selectGasReadingType ...@@ -2974,7 +2981,7 @@ ep-spin-lib:selectGasReadingType
2974 ] 2981 ]
2975 ] 2982 ]
2976 ] ; 2983 ] ;
2977 - sp:variable _:b48 2984 + sp:variable _:b46
2978 ]) 2985 ])
2979 ] . 2986 ] .
2980 2987
...@@ -3022,7 +3029,7 @@ ep-spin-lib:selectInnerBarrelType ...@@ -3022,7 +3029,7 @@ ep-spin-lib:selectInnerBarrelType
3022 rdfs:subClassOf ep-spin-lib:Function ; 3029 rdfs:subClassOf ep-spin-lib:Function ;
3023 spin:body 3030 spin:body
3024 [ rdf:type sp:Select ; 3031 [ rdf:type sp:Select ;
3025 - sp:resultVariables (_:b49) ; 3032 + sp:resultVariables (_:b47) ;
3026 sp:where ([ rdf:type sp:Bind ; 3033 sp:where ([ rdf:type sp:Bind ;
3027 sp:expression 3034 sp:expression
3028 [ rdf:type sp:if ; 3035 [ rdf:type sp:if ;
...@@ -3054,7 +3061,7 @@ ep-spin-lib:selectInnerBarrelType ...@@ -3054,7 +3061,7 @@ ep-spin-lib:selectInnerBarrelType
3054 ] 3061 ]
3055 ] 3062 ]
3056 ] ; 3063 ] ;
3057 - sp:variable _:b49 3064 + sp:variable _:b47
3058 ]) 3065 ])
3059 ] . 3066 ] .
3060 3067
...@@ -3064,7 +3071,7 @@ ep-spin-lib:selectLabelOfSystem ...@@ -3064,7 +3071,7 @@ ep-spin-lib:selectLabelOfSystem
3064 rdfs:subClassOf ep-spin-lib:Function ; 3071 rdfs:subClassOf ep-spin-lib:Function ;
3065 spin:body 3072 spin:body
3066 [ rdf:type sp:Select ; 3073 [ rdf:type sp:Select ;
3067 - sp:resultVariables (_:b50) ; 3074 + sp:resultVariables (_:b48) ;
3068 sp:where ([ rdf:type sp:Bind ; 3075 sp:where ([ rdf:type sp:Bind ;
3069 sp:expression 3076 sp:expression
3070 [ rdf:type sp:if ; 3077 [ rdf:type sp:if ;
...@@ -3110,7 +3117,7 @@ ep-spin-lib:selectLabelOfSystem ...@@ -3110,7 +3117,7 @@ ep-spin-lib:selectLabelOfSystem
3110 ] 3117 ]
3111 ] 3118 ]
3112 ] ; 3119 ] ;
3113 - sp:variable _:b50 3120 + sp:variable _:b48
3114 ]) 3121 ])
3115 ] . 3122 ] .
3116 3123
...@@ -3120,7 +3127,7 @@ ep-spin-lib:selectLengthScale ...@@ -3120,7 +3127,7 @@ ep-spin-lib:selectLengthScale
3120 rdfs:subClassOf ep-spin-lib:Function ; 3127 rdfs:subClassOf ep-spin-lib:Function ;
3121 spin:body 3128 spin:body
3122 [ rdf:type sp:Select ; 3129 [ rdf:type sp:Select ;
3123 - sp:resultVariables (_:b51) ; 3130 + sp:resultVariables (_:b49) ;
3124 sp:where ([ rdf:type sp:Bind ; 3131 sp:where ([ rdf:type sp:Bind ;
3125 sp:expression 3132 sp:expression
3126 [ rdf:type sp:if ; 3133 [ rdf:type sp:if ;
...@@ -3201,7 +3208,7 @@ ep-spin-lib:selectLengthScale ...@@ -3201,7 +3208,7 @@ ep-spin-lib:selectLengthScale
3201 ] 3208 ]
3202 ] 3209 ]
3203 ] ; 3210 ] ;
3204 - sp:variable _:b51 3211 + sp:variable _:b49
3205 ]) 3212 ])
3206 ] . 3213 ] .
3207 3214
...@@ -3211,7 +3218,7 @@ ep-spin-lib:selectMassPerUnitLengthScale ...@@ -3211,7 +3218,7 @@ ep-spin-lib:selectMassPerUnitLengthScale
3211 rdfs:subClassOf ep-spin-lib:Function ; 3218 rdfs:subClassOf ep-spin-lib:Function ;
3212 spin:body 3219 spin:body
3213 [ rdf:type sp:Select ; 3220 [ rdf:type sp:Select ;
3214 - sp:resultVariables (_:b52) ; 3221 + sp:resultVariables (_:b50) ;
3215 sp:where ([ rdf:type sp:Bind ; 3222 sp:where ([ rdf:type sp:Bind ;
3216 sp:expression 3223 sp:expression
3217 [ rdf:type sp:if ; 3224 [ rdf:type sp:if ;
...@@ -3222,7 +3229,7 @@ ep-spin-lib:selectMassPerUnitLengthScale ...@@ -3222,7 +3229,7 @@ ep-spin-lib:selectMassPerUnitLengthScale
3222 sp:arg2 <http://www.reportinghub.no/ep/schema/core#pound_foot-1> ; 3229 sp:arg2 <http://www.reportinghub.no/ep/schema/core#pound_foot-1> ;
3223 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 3230 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
3224 ] ; 3231 ] ;
3225 - sp:variable _:b52 3232 + sp:variable _:b50
3226 ]) 3233 ])
3227 ] . 3234 ] .
3228 3235
...@@ -3256,7 +3263,7 @@ ep-spin-lib:selectMudClass ...@@ -3256,7 +3263,7 @@ ep-spin-lib:selectMudClass
3256 rdfs:subClassOf ep-spin-lib:Function ; 3263 rdfs:subClassOf ep-spin-lib:Function ;
3257 spin:body 3264 spin:body
3258 [ rdf:type sp:Select ; 3265 [ rdf:type sp:Select ;
3259 - sp:resultVariables (_:b53) ; 3266 + sp:resultVariables (_:b51) ;
3260 sp:where ([ rdf:type sp:Bind ; 3267 sp:where ([ rdf:type sp:Bind ;
3261 sp:expression 3268 sp:expression
3262 [ rdf:type sp:if ; 3269 [ rdf:type sp:if ;
...@@ -3281,7 +3288,7 @@ ep-spin-lib:selectMudClass ...@@ -3281,7 +3288,7 @@ ep-spin-lib:selectMudClass
3281 ] 3288 ]
3282 ] 3289 ]
3283 ] ; 3290 ] ;
3284 - sp:variable _:b53 3291 + sp:variable _:b51
3285 ]) 3292 ])
3286 ] . 3293 ] .
3287 3294
...@@ -3291,7 +3298,7 @@ ep-spin-lib:selectPlaneAngleScale ...@@ -3291,7 +3298,7 @@ ep-spin-lib:selectPlaneAngleScale
3291 rdfs:subClassOf ep-spin-lib:Function ; 3298 rdfs:subClassOf ep-spin-lib:Function ;
3292 spin:body 3299 spin:body
3293 [ rdf:type sp:Select ; 3300 [ rdf:type sp:Select ;
3294 - sp:resultVariables (_:b54) ; 3301 + sp:resultVariables (_:b52) ;
3295 sp:where ([ rdf:type sp:Bind ; 3302 sp:where ([ rdf:type sp:Bind ;
3296 sp:expression 3303 sp:expression
3297 [ rdf:type sp:if ; 3304 [ rdf:type sp:if ;
...@@ -3302,7 +3309,7 @@ ep-spin-lib:selectPlaneAngleScale ...@@ -3302,7 +3309,7 @@ ep-spin-lib:selectPlaneAngleScale
3302 sp:arg2 <http://www.reportinghub.no/ep/schema/core#degreesOfAngle> ; 3309 sp:arg2 <http://www.reportinghub.no/ep/schema/core#degreesOfAngle> ;
3303 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 3310 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
3304 ] ; 3311 ] ;
3305 - sp:variable _:b54 3312 + sp:variable _:b52
3306 ]) 3313 ])
3307 ] . 3314 ] .
3308 3315
...@@ -3312,7 +3319,7 @@ ep-spin-lib:selectPlasticViscosityScale ...@@ -3312,7 +3319,7 @@ ep-spin-lib:selectPlasticViscosityScale
3312 rdfs:subClassOf ep-spin-lib:Function ; 3319 rdfs:subClassOf ep-spin-lib:Function ;
3313 spin:body 3320 spin:body
3314 [ rdf:type sp:Select ; 3321 [ rdf:type sp:Select ;
3315 - sp:resultVariables (_:b55) ; 3322 + sp:resultVariables (_:b53) ;
3316 sp:where ([ rdf:type sp:Bind ; 3323 sp:where ([ rdf:type sp:Bind ;
3317 sp:expression 3324 sp:expression
3318 [ rdf:type sp:if ; 3325 [ rdf:type sp:if ;
...@@ -3386,7 +3393,7 @@ ep-spin-lib:selectPlasticViscosityScale ...@@ -3386,7 +3393,7 @@ ep-spin-lib:selectPlasticViscosityScale
3386 ] 3393 ]
3387 ] 3394 ]
3388 ] ; 3395 ] ;
3389 - sp:variable _:b55 3396 + sp:variable _:b53
3390 ]) 3397 ])
3391 ] . 3398 ] .
3392 3399
...@@ -3427,7 +3434,7 @@ ep-spin-lib:selectPorePressureDeterminationType ...@@ -3427,7 +3434,7 @@ ep-spin-lib:selectPorePressureDeterminationType
3427 rdfs:subClassOf ep-spin-lib:Function ; 3434 rdfs:subClassOf ep-spin-lib:Function ;
3428 spin:body 3435 spin:body
3429 [ rdf:type sp:Select ; 3436 [ rdf:type sp:Select ;
3430 - sp:resultVariables (_:b56) ; 3437 + sp:resultVariables (_:b54) ;
3431 sp:where ([ rdf:type sp:Bind ; 3438 sp:where ([ rdf:type sp:Bind ;
3432 sp:expression 3439 sp:expression
3433 [ rdf:type sp:if ; 3440 [ rdf:type sp:if ;
...@@ -3445,7 +3452,7 @@ ep-spin-lib:selectPorePressureDeterminationType ...@@ -3445,7 +3452,7 @@ ep-spin-lib:selectPorePressureDeterminationType
3445 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#PorePressureDetermination> 3452 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#PorePressureDetermination>
3446 ] 3453 ]
3447 ] ; 3454 ] ;
3448 - sp:variable _:b56 3455 + sp:variable _:b54
3449 ]) 3456 ])
3450 ] . 3457 ] .
3451 3458
...@@ -3455,7 +3462,7 @@ ep-spin-lib:selectPressureScale ...@@ -3455,7 +3462,7 @@ ep-spin-lib:selectPressureScale
3455 rdfs:subClassOf ep-spin-lib:Function ; 3462 rdfs:subClassOf ep-spin-lib:Function ;
3456 spin:body 3463 spin:body
3457 [ rdf:type sp:Select ; 3464 [ rdf:type sp:Select ;
3458 - sp:resultVariables (_:b57) ; 3465 + sp:resultVariables (_:b55) ;
3459 sp:where ([ rdf:type sp:Bind ; 3466 sp:where ([ rdf:type sp:Bind ;
3460 sp:expression 3467 sp:expression
3461 [ rdf:type sp:if ; 3468 [ rdf:type sp:if ;
...@@ -3494,7 +3501,7 @@ ep-spin-lib:selectPressureScale ...@@ -3494,7 +3501,7 @@ ep-spin-lib:selectPressureScale
3494 ] 3501 ]
3495 ] 3502 ]
3496 ] ; 3503 ] ;
3497 - sp:variable _:b57 3504 + sp:variable _:b55
3498 ]) 3505 ])
3499 ] . 3506 ] .
3500 3507
...@@ -3504,7 +3511,7 @@ ep-spin-lib:selectPressureTestType ...@@ -3504,7 +3511,7 @@ ep-spin-lib:selectPressureTestType
3504 rdfs:subClassOf ep-spin-lib:Function ; 3511 rdfs:subClassOf ep-spin-lib:Function ;
3505 spin:body 3512 spin:body
3506 [ rdf:type sp:Select ; 3513 [ rdf:type sp:Select ;
3507 - sp:resultVariables (_:b58) ; 3514 + sp:resultVariables (_:b56) ;
3508 sp:where ([ rdf:type sp:Bind ; 3515 sp:where ([ rdf:type sp:Bind ;
3509 sp:expression 3516 sp:expression
3510 [ rdf:type sp:if ; 3517 [ rdf:type sp:if ;
...@@ -3522,7 +3529,7 @@ ep-spin-lib:selectPressureTestType ...@@ -3522,7 +3529,7 @@ ep-spin-lib:selectPressureTestType
3522 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellBorePressureTest> 3529 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellBorePressureTest>
3523 ] 3530 ]
3524 ] ; 3531 ] ;
3525 - sp:variable _:b58 3532 + sp:variable _:b56
3526 ]) 3533 ])
3527 ] . 3534 ] .
3528 3535
...@@ -3532,7 +3539,7 @@ ep-spin-lib:selectSpeedScale ...@@ -3532,7 +3539,7 @@ ep-spin-lib:selectSpeedScale
3532 rdfs:subClassOf ep-spin-lib:Function ; 3539 rdfs:subClassOf ep-spin-lib:Function ;
3533 spin:body 3540 spin:body
3534 [ rdf:type sp:Select ; 3541 [ rdf:type sp:Select ;
3535 - sp:resultVariables (_:b59) ; 3542 + sp:resultVariables (_:b57) ;
3536 sp:where ([ rdf:type sp:Bind ; 3543 sp:where ([ rdf:type sp:Bind ;
3537 sp:expression 3544 sp:expression
3538 [ rdf:type sp:if ; 3545 [ rdf:type sp:if ;
...@@ -3543,7 +3550,7 @@ ep-spin-lib:selectSpeedScale ...@@ -3543,7 +3550,7 @@ ep-spin-lib:selectSpeedScale
3543 sp:arg2 <http://www.reportinghub.no/ep/schema/core#metre_hour-1> ; 3550 sp:arg2 <http://www.reportinghub.no/ep/schema/core#metre_hour-1> ;
3544 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 3551 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
3545 ] ; 3552 ] ;
3546 - sp:variable _:b59 3553 + sp:variable _:b57
3547 ]) 3554 ])
3548 ] . 3555 ] .
3549 3556
...@@ -3553,7 +3560,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale ...@@ -3553,7 +3560,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale
3553 rdfs:subClassOf ep-spin-lib:Function ; 3560 rdfs:subClassOf ep-spin-lib:Function ;
3554 spin:body 3561 spin:body
3555 [ rdf:type sp:Select ; 3562 [ rdf:type sp:Select ;
3556 - sp:resultVariables (_:b60) ; 3563 + sp:resultVariables (_:b58) ;
3557 sp:where ([ rdf:type sp:Bind ; 3564 sp:where ([ rdf:type sp:Bind ;
3558 sp:expression 3565 sp:expression
3559 [ rdf:type sp:if ; 3566 [ rdf:type sp:if ;
...@@ -3571,7 +3578,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale ...@@ -3571,7 +3578,7 @@ ep-spin-lib:selectStrengthOfRockFormationScale
3571 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 3578 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
3572 ] 3579 ]
3573 ] ; 3580 ] ;
3574 - sp:variable _:b60 3581 + sp:variable _:b58
3575 ]) 3582 ])
3576 ] . 3583 ] .
3577 3584
...@@ -3581,7 +3588,7 @@ ep-spin-lib:selectTemperatureScale ...@@ -3581,7 +3588,7 @@ ep-spin-lib:selectTemperatureScale
3581 rdfs:subClassOf ep-spin-lib:Function ; 3588 rdfs:subClassOf ep-spin-lib:Function ;
3582 spin:body 3589 spin:body
3583 [ rdf:type sp:Select ; 3590 [ rdf:type sp:Select ;
3584 - sp:resultVariables (_:b61) ; 3591 + sp:resultVariables (_:b59) ;
3585 sp:where ([ rdf:type sp:Bind ; 3592 sp:where ([ rdf:type sp:Bind ;
3586 sp:expression 3593 sp:expression
3587 [ rdf:type sp:if ; 3594 [ rdf:type sp:if ;
...@@ -3592,7 +3599,7 @@ ep-spin-lib:selectTemperatureScale ...@@ -3592,7 +3599,7 @@ ep-spin-lib:selectTemperatureScale
3592 sp:arg2 <http://www.reportinghub.no/ep/schema/core#celsius> ; 3599 sp:arg2 <http://www.reportinghub.no/ep/schema/core#celsius> ;
3593 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale> 3600 sp:arg3 <http://www.reportinghub.no/ep/schema/core#undefinedScale>
3594 ] ; 3601 ] ;
3595 - sp:variable _:b61 3602 + sp:variable _:b59
3596 ]) 3603 ])
3597 ] . 3604 ] .
3598 3605
...@@ -3602,7 +3609,7 @@ ep-spin-lib:selectTimeDurationScale ...@@ -3602,7 +3609,7 @@ ep-spin-lib:selectTimeDurationScale
3602 rdfs:subClassOf ep-spin-lib:Function ; 3609 rdfs:subClassOf ep-spin-lib:Function ;
3603 spin:body 3610 spin:body
3604 [ rdf:type sp:Select ; 3611 [ rdf:type sp:Select ;
3605 - sp:resultVariables (_:b62) ; 3612 + sp:resultVariables (_:b60) ;
3606 sp:where ([ rdf:type sp:Bind ; 3613 sp:where ([ rdf:type sp:Bind ;
3607 sp:expression 3614 sp:expression
3608 [ rdf:type sp:if ; 3615 [ rdf:type sp:if ;
...@@ -3648,7 +3655,7 @@ ep-spin-lib:selectTimeDurationScale ...@@ -3648,7 +3655,7 @@ ep-spin-lib:selectTimeDurationScale
3648 ] 3655 ]
3649 ] 3656 ]
3650 ] ; 3657 ] ;
3651 - sp:variable _:b62 3658 + sp:variable _:b60
3652 ]) 3659 ])
3653 ] . 3660 ] .
3654 3661
...@@ -3786,7 +3793,7 @@ ep-spin-lib:selectVolumeScale ...@@ -3786,7 +3793,7 @@ ep-spin-lib:selectVolumeScale
3786 rdfs:subClassOf ep-spin-lib:Function ; 3793 rdfs:subClassOf ep-spin-lib:Function ;
3787 spin:body 3794 spin:body
3788 [ rdf:type sp:Select ; 3795 [ rdf:type sp:Select ;
3789 - sp:resultVariables (_:b63) ; 3796 + sp:resultVariables (_:b61) ;
3790 sp:where ([ rdf:type sp:Bind ; 3797 sp:where ([ rdf:type sp:Bind ;
3791 sp:expression 3798 sp:expression
3792 [ rdf:type sp:if ; 3799 [ rdf:type sp:if ;
...@@ -3811,7 +3818,7 @@ ep-spin-lib:selectVolumeScale ...@@ -3811,7 +3818,7 @@ ep-spin-lib:selectVolumeScale
3811 ] 3818 ]
3812 ] 3819 ]
3813 ] ; 3820 ] ;
3814 - sp:variable _:b63 3821 + sp:variable _:b61
3815 ]) 3822 ])
3816 ] . 3823 ] .
3817 3824
...@@ -3821,7 +3828,7 @@ ep-spin-lib:selectVolumetricFlowRateScale ...@@ -3821,7 +3828,7 @@ ep-spin-lib:selectVolumetricFlowRateScale
3821 rdfs:subClassOf ep-spin-lib:Function ; 3828 rdfs:subClassOf ep-spin-lib:Function ;
3822 spin:body 3829 spin:body
3823 [ rdf:type sp:Select ; 3830 [ rdf:type sp:Select ;
3824 - sp:resultVariables (_:b64) ; 3831 + sp:resultVariables (_:b62) ;
3825 sp:where ([ rdf:type sp:Bind ; 3832 sp:where ([ rdf:type sp:Bind ;
3826 sp:expression 3833 sp:expression
3827 [ rdf:type sp:if ; 3834 [ rdf:type sp:if ;
...@@ -3846,7 +3853,7 @@ ep-spin-lib:selectVolumetricFlowRateScale ...@@ -3846,7 +3853,7 @@ ep-spin-lib:selectVolumetricFlowRateScale
3846 ] 3853 ]
3847 ] 3854 ]
3848 ] ; 3855 ] ;
3849 - sp:variable _:b64 3856 + sp:variable _:b62
3850 ]) 3857 ])
3851 ] . 3858 ] .
3852 3859
...@@ -3856,7 +3863,7 @@ ep-spin-lib:selectWellBoreDrillingType ...@@ -3856,7 +3863,7 @@ ep-spin-lib:selectWellBoreDrillingType
3856 rdfs:subClassOf ep-spin-lib:Function ; 3863 rdfs:subClassOf ep-spin-lib:Function ;
3857 spin:body 3864 spin:body
3858 [ rdf:type sp:Select ; 3865 [ rdf:type sp:Select ;
3859 - sp:resultVariables (_:b65) ; 3866 + sp:resultVariables (_:b63) ;
3860 sp:where ([ rdf:type sp:Bind ; 3867 sp:where ([ rdf:type sp:Bind ;
3861 sp:expression 3868 sp:expression
3862 [ rdf:type sp:if ; 3869 [ rdf:type sp:if ;
...@@ -3902,7 +3909,7 @@ ep-spin-lib:selectWellBoreDrillingType ...@@ -3902,7 +3909,7 @@ ep-spin-lib:selectWellBoreDrillingType
3902 ] 3909 ]
3903 ] 3910 ]
3904 ] ; 3911 ] ;
3905 - sp:variable _:b65 3912 + sp:variable _:b63
3906 ]) 3913 ])
3907 ] . 3914 ] .
3908 3915
...@@ -3943,7 +3950,7 @@ ep-spin-lib:selectWellBoreHphtType ...@@ -3943,7 +3950,7 @@ ep-spin-lib:selectWellBoreHphtType
3943 rdfs:subClassOf ep-spin-lib:Function ; 3950 rdfs:subClassOf ep-spin-lib:Function ;
3944 spin:body 3951 spin:body
3945 [ rdf:type sp:Select ; 3952 [ rdf:type sp:Select ;
3946 - sp:resultVariables (_:b66) ; 3953 + sp:resultVariables (_:b64) ;
3947 sp:where ([ rdf:type sp:Bind ; 3954 sp:where ([ rdf:type sp:Bind ;
3948 sp:expression 3955 sp:expression
3949 [ rdf:type sp:if ; 3956 [ rdf:type sp:if ;
...@@ -3954,7 +3961,7 @@ ep-spin-lib:selectWellBoreHphtType ...@@ -3954,7 +3961,7 @@ ep-spin-lib:selectWellBoreHphtType
3954 sp:arg2 <http://www.reportinghub.no/ep/schema/well#HphtWellBore> ; 3961 sp:arg2 <http://www.reportinghub.no/ep/schema/well#HphtWellBore> ;
3955 sp:arg3 <http://www.reportinghub.no/ep/schema/well#NotHphtWellBore> 3962 sp:arg3 <http://www.reportinghub.no/ep/schema/well#NotHphtWellBore>
3956 ] ; 3963 ] ;
3957 - sp:variable _:b66 3964 + sp:variable _:b64
3958 ]) 3965 ])
3959 ] . 3966 ] .
3960 3967
...@@ -3995,7 +4002,7 @@ ep-spin-lib:selectWellBoreTightnessType ...@@ -3995,7 +4002,7 @@ ep-spin-lib:selectWellBoreTightnessType
3995 rdfs:subClassOf ep-spin-lib:Function ; 4002 rdfs:subClassOf ep-spin-lib:Function ;
3996 spin:body 4003 spin:body
3997 [ rdf:type sp:Select ; 4004 [ rdf:type sp:Select ;
3998 - sp:resultVariables (_:b67) ; 4005 + sp:resultVariables (_:b65) ;
3999 sp:where ([ rdf:type sp:Bind ; 4006 sp:where ([ rdf:type sp:Bind ;
4000 sp:expression 4007 sp:expression
4001 [ rdf:type sp:if ; 4008 [ rdf:type sp:if ;
...@@ -4006,7 +4013,7 @@ ep-spin-lib:selectWellBoreTightnessType ...@@ -4006,7 +4013,7 @@ ep-spin-lib:selectWellBoreTightnessType
4006 sp:arg2 <http://www.reportinghub.no/ep/schema/well#TightWellBore> ; 4013 sp:arg2 <http://www.reportinghub.no/ep/schema/well#TightWellBore> ;
4007 sp:arg3 <http://www.reportinghub.no/ep/schema/well#LeakyWellBore> 4014 sp:arg3 <http://www.reportinghub.no/ep/schema/well#LeakyWellBore>
4008 ] ; 4015 ] ;
4009 - sp:variable _:b67 4016 + sp:variable _:b65
4010 ]) 4017 ])
4011 ] . 4018 ] .
4012 4019
...@@ -4016,7 +4023,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType ...@@ -4016,7 +4023,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType
4016 rdfs:subClassOf ep-spin-lib:Function ; 4023 rdfs:subClassOf ep-spin-lib:Function ;
4017 spin:body 4024 spin:body
4018 [ rdf:type sp:Select ; 4025 [ rdf:type sp:Select ;
4019 - sp:resultVariables (_:b68) ; 4026 + sp:resultVariables (_:b66) ;
4020 sp:where ([ rdf:type sp:Bind ; 4027 sp:where ([ rdf:type sp:Bind ;
4021 sp:expression 4028 sp:expression
4022 [ rdf:type sp:if ; 4029 [ rdf:type sp:if ;
...@@ -4027,7 +4034,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType ...@@ -4027,7 +4034,7 @@ ep-spin-lib:selectWellCementJobBottomPlugType
4027 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithBottomPlug> ; 4034 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithBottomPlug> ;
4028 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutBottomPlug> 4035 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutBottomPlug>
4029 ] ; 4036 ] ;
4030 - sp:variable _:b68 4037 + sp:variable _:b66
4031 ]) 4038 ])
4032 ] . 4039 ] .
4033 4040
...@@ -4037,7 +4044,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType ...@@ -4037,7 +4044,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType
4037 rdfs:subClassOf ep-spin-lib:Function ; 4044 rdfs:subClassOf ep-spin-lib:Function ;
4038 spin:body 4045 spin:body
4039 [ rdf:type sp:Select ; 4046 [ rdf:type sp:Select ;
4040 - sp:resultVariables (_:b69) ; 4047 + sp:resultVariables (_:b67) ;
4041 sp:where ([ rdf:type sp:Bind ; 4048 sp:where ([ rdf:type sp:Bind ;
4042 sp:expression 4049 sp:expression
4043 [ rdf:type sp:if ; 4050 [ rdf:type sp:if ;
...@@ -4048,7 +4055,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType ...@@ -4048,7 +4055,7 @@ ep-spin-lib:selectWellCementJobCasingReciprocationType
4048 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingReciprocation> ; 4055 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingReciprocation> ;
4049 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingReciprocation> 4056 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingReciprocation>
4050 ] ; 4057 ] ;
4051 - sp:variable _:b69 4058 + sp:variable _:b67
4052 ]) 4059 ])
4053 ] . 4060 ] .
4054 4061
...@@ -4058,7 +4065,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType ...@@ -4058,7 +4065,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType
4058 rdfs:subClassOf ep-spin-lib:Function ; 4065 rdfs:subClassOf ep-spin-lib:Function ;
4059 spin:body 4066 spin:body
4060 [ rdf:type sp:Select ; 4067 [ rdf:type sp:Select ;
4061 - sp:resultVariables (_:b70) ; 4068 + sp:resultVariables (_:b68) ;
4062 sp:where ([ rdf:type sp:Bind ; 4069 sp:where ([ rdf:type sp:Bind ;
4063 sp:expression 4070 sp:expression
4064 [ rdf:type sp:if ; 4071 [ rdf:type sp:if ;
...@@ -4069,7 +4076,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType ...@@ -4069,7 +4076,7 @@ ep-spin-lib:selectWellCementJobCasingRotationType
4069 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingRotation> ; 4076 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithCasingRotation> ;
4070 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingRotation> 4077 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutCasingRotation>
4071 ] ; 4078 ] ;
4072 - sp:variable _:b70 4079 + sp:variable _:b68
4073 ]) 4080 ])
4074 ] . 4081 ] .
4075 4082
...@@ -4124,7 +4131,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType ...@@ -4124,7 +4131,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType
4124 rdfs:subClassOf ep-spin-lib:Function ; 4131 rdfs:subClassOf ep-spin-lib:Function ;
4125 spin:body 4132 spin:body
4126 [ rdf:type sp:Select ; 4133 [ rdf:type sp:Select ;
4127 - sp:resultVariables (_:b71) ; 4134 + sp:resultVariables (_:b69) ;
4128 sp:where ([ rdf:type sp:Bind ; 4135 sp:where ([ rdf:type sp:Bind ;
4129 sp:expression 4136 sp:expression
4130 [ rdf:type sp:if ; 4137 [ rdf:type sp:if ;
...@@ -4135,7 +4142,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType ...@@ -4135,7 +4142,7 @@ ep-spin-lib:selectWellCementJobFloatHoldingType
4135 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithFloatHolding> ; 4142 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithFloatHolding> ;
4136 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutFloatHolding> 4143 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutFloatHolding>
4137 ] ; 4144 ] ;
4138 - sp:variable _:b71 4145 + sp:variable _:b69
4139 ]) 4146 ])
4140 ] . 4147 ] .
4141 4148
...@@ -4145,7 +4152,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType ...@@ -4145,7 +4152,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType
4145 rdfs:subClassOf ep-spin-lib:Function ; 4152 rdfs:subClassOf ep-spin-lib:Function ;
4146 spin:body 4153 spin:body
4147 [ rdf:type sp:Select ; 4154 [ rdf:type sp:Select ;
4148 - sp:resultVariables (_:b72) ; 4155 + sp:resultVariables (_:b70) ;
4149 sp:where ([ rdf:type sp:Bind ; 4156 sp:where ([ rdf:type sp:Bind ;
4150 sp:expression 4157 sp:expression
4151 [ rdf:type sp:if ; 4158 [ rdf:type sp:if ;
...@@ -4156,7 +4163,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType ...@@ -4156,7 +4163,7 @@ ep-spin-lib:selectWellCementJobPlugBumpingType
4156 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithPlugBumping> ; 4163 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithPlugBumping> ;
4157 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutPlugBumping> 4164 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutPlugBumping>
4158 ] ; 4165 ] ;
4159 - sp:variable _:b72 4166 + sp:variable _:b70
4160 ]) 4167 ])
4161 ] . 4168 ] .
4162 4169
...@@ -4166,7 +4173,7 @@ ep-spin-lib:selectWellCementJobTopPlugType ...@@ -4166,7 +4173,7 @@ ep-spin-lib:selectWellCementJobTopPlugType
4166 rdfs:subClassOf ep-spin-lib:Function ; 4173 rdfs:subClassOf ep-spin-lib:Function ;
4167 spin:body 4174 spin:body
4168 [ rdf:type sp:Select ; 4175 [ rdf:type sp:Select ;
4169 - sp:resultVariables (_:b73) ; 4176 + sp:resultVariables (_:b71) ;
4170 sp:where ([ rdf:type sp:Bind ; 4177 sp:where ([ rdf:type sp:Bind ;
4171 sp:expression 4178 sp:expression
4172 [ rdf:type sp:if ; 4179 [ rdf:type sp:if ;
...@@ -4177,7 +4184,7 @@ ep-spin-lib:selectWellCementJobTopPlugType ...@@ -4177,7 +4184,7 @@ ep-spin-lib:selectWellCementJobTopPlugType
4177 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithTopPlug> ; 4184 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithTopPlug> ;
4178 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutTopPlug> 4185 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellCementJobWithoutTopPlug>
4179 ] ; 4186 ] ;
4180 - sp:variable _:b73 4187 + sp:variable _:b71
4181 ]) 4188 ])
4182 ] . 4189 ] .
4183 4190
...@@ -4187,7 +4194,7 @@ ep-spin-lib:selectWellCementJobType ...@@ -4187,7 +4194,7 @@ ep-spin-lib:selectWellCementJobType
4187 rdfs:subClassOf ep-spin-lib:Function ; 4194 rdfs:subClassOf ep-spin-lib:Function ;
4188 spin:body 4195 spin:body
4189 [ rdf:type sp:Select ; 4196 [ rdf:type sp:Select ;
4190 - sp:resultVariables (_:b74) ; 4197 + sp:resultVariables (_:b72) ;
4191 sp:where ([ rdf:type sp:Bind ; 4198 sp:where ([ rdf:type sp:Bind ;
4192 sp:expression 4199 sp:expression
4193 [ rdf:type sp:if ; 4200 [ rdf:type sp:if ;
...@@ -4219,7 +4226,7 @@ ep-spin-lib:selectWellCementJobType ...@@ -4219,7 +4226,7 @@ ep-spin-lib:selectWellCementJobType
4219 ] 4226 ]
4220 ] 4227 ]
4221 ] ; 4228 ] ;
4222 - sp:variable _:b74 4229 + sp:variable _:b72
4223 ]) 4230 ])
4224 ] . 4231 ] .
4225 4232
...@@ -4274,7 +4281,7 @@ ep-spin-lib:selectWellControlIncidentType ...@@ -4274,7 +4281,7 @@ ep-spin-lib:selectWellControlIncidentType
4274 rdfs:subClassOf ep-spin-lib:Function ; 4281 rdfs:subClassOf ep-spin-lib:Function ;
4275 spin:body 4282 spin:body
4276 [ rdf:type sp:Select ; 4283 [ rdf:type sp:Select ;
4277 - sp:resultVariables (_:b75) ; 4284 + sp:resultVariables (_:b73) ;
4278 sp:where ([ rdf:type sp:Bind ; 4285 sp:where ([ rdf:type sp:Bind ;
4279 sp:expression 4286 sp:expression
4280 [ rdf:type sp:if ; 4287 [ rdf:type sp:if ;
...@@ -4306,7 +4313,7 @@ ep-spin-lib:selectWellControlIncidentType ...@@ -4306,7 +4313,7 @@ ep-spin-lib:selectWellControlIncidentType
4306 ] 4313 ]
4307 ] 4314 ]
4308 ] ; 4315 ] ;
4309 - sp:variable _:b75 4316 + sp:variable _:b73
4310 ]) 4317 ])
4311 ] . 4318 ] .
4312 4319
...@@ -4375,7 +4382,7 @@ ep-spin-lib:selectWellKillingType ...@@ -4375,7 +4382,7 @@ ep-spin-lib:selectWellKillingType
4375 rdfs:subClassOf ep-spin-lib:Function ; 4382 rdfs:subClassOf ep-spin-lib:Function ;
4376 spin:body 4383 spin:body
4377 [ rdf:type sp:Select ; 4384 [ rdf:type sp:Select ;
4378 - sp:resultVariables (_:b76) ; 4385 + sp:resultVariables (_:b74) ;
4379 sp:where ([ rdf:type sp:Bind ; 4386 sp:where ([ rdf:type sp:Bind ;
4380 sp:expression 4387 sp:expression
4381 [ rdf:type sp:if ; 4388 [ rdf:type sp:if ;
...@@ -4421,7 +4428,7 @@ ep-spin-lib:selectWellKillingType ...@@ -4421,7 +4428,7 @@ ep-spin-lib:selectWellKillingType
4421 ] 4428 ]
4422 ] 4429 ]
4423 ] ; 4430 ] ;
4424 - sp:variable _:b76 4431 + sp:variable _:b74
4425 ]) 4432 ])
4426 ] . 4433 ] .
4427 4434
...@@ -4431,7 +4438,7 @@ ep-spin-lib:selectWellTestType ...@@ -4431,7 +4438,7 @@ ep-spin-lib:selectWellTestType
4431 rdfs:subClassOf ep-spin-lib:Function ; 4438 rdfs:subClassOf ep-spin-lib:Function ;
4432 spin:body 4439 spin:body
4433 [ rdf:type sp:Select ; 4440 [ rdf:type sp:Select ;
4434 - sp:resultVariables (_:b77) ; 4441 + sp:resultVariables (_:b75) ;
4435 sp:where ([ rdf:type sp:Bind ; 4442 sp:where ([ rdf:type sp:Bind ;
4436 sp:expression 4443 sp:expression
4437 [ rdf:type sp:if ; 4444 [ rdf:type sp:if ;
...@@ -4449,7 +4456,7 @@ ep-spin-lib:selectWellTestType ...@@ -4449,7 +4456,7 @@ ep-spin-lib:selectWellTestType
4449 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellTest> 4456 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WellTest>
4450 ] 4457 ]
4451 ] ; 4458 ] ;
4452 - sp:variable _:b77 4459 + sp:variable _:b75
4453 ]) 4460 ])
4454 ] . 4461 ] .
4455 4462
...@@ -4459,7 +4466,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType ...@@ -4459,7 +4466,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType
4459 rdfs:subClassOf ep-spin-lib:Function ; 4466 rdfs:subClassOf ep-spin-lib:Function ;
4460 spin:body 4467 spin:body
4461 [ rdf:type sp:Select ; 4468 [ rdf:type sp:Select ;
4462 - sp:resultVariables (_:b78) ; 4469 + sp:resultVariables (_:b76) ;
4463 sp:where ([ rdf:type sp:Bind ; 4470 sp:where ([ rdf:type sp:Bind ;
4464 sp:expression 4471 sp:expression
4465 [ rdf:type sp:if ; 4472 [ rdf:type sp:if ;
...@@ -4470,7 +4477,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType ...@@ -4470,7 +4477,7 @@ ep-spin-lib:selectWirelineFormationTestGoodnessOfSealType
4470 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithGoodSeal> ; 4477 sp:arg2 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithGoodSeal> ;
4471 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithoutGoodSeal> 4478 sp:arg3 <http://www.reportinghub.no/ep/schema/activity#WirelineFormationTestWithoutGoodSeal>
4472 ] ; 4479 ] ;
4473 - sp:variable _:b78 4480 + sp:variable _:b76
4474 ]) 4481 ])
4475 ] . 4482 ] .
4476 4483
...@@ -4480,7 +4487,7 @@ ep-spin-lib:selectYieldPointScale ...@@ -4480,7 +4487,7 @@ ep-spin-lib:selectYieldPointScale
4480 rdfs:subClassOf ep-spin-lib:Function ; 4487 rdfs:subClassOf ep-spin-lib:Function ;
4481 spin:body 4488 spin:body
4482 [ rdf:type sp:Select ; 4489 [ rdf:type sp:Select ;
4483 - sp:resultVariables (_:b79) ; 4490 + sp:resultVariables (_:b77) ;
4484 sp:where ([ rdf:type sp:Bind ; 4491 sp:where ([ rdf:type sp:Bind ;
4485 sp:expression 4492 sp:expression
4486 [ rdf:type sp:if ; 4493 [ rdf:type sp:if ;
...@@ -4505,7 +4512,7 @@ ep-spin-lib:selectYieldPointScale ...@@ -4505,7 +4512,7 @@ ep-spin-lib:selectYieldPointScale
4505 ] 4512 ]
4506 ] 4513 ]
4507 ] ; 4514 ] ;
4508 - sp:variable _:b79 4515 + sp:variable _:b77
4509 ]) 4516 ])
4510 ] . 4517 ] .
4511 4518
...@@ -4514,230 +4521,224 @@ ddr:TTUC_Enumeration_1 ...@@ -4514,230 +4521,224 @@ ddr:TTUC_Enumeration_1
4514 rdfs:label "Enumeration"^^xsd:string ; 4521 rdfs:label "Enumeration"^^xsd:string ;
4515 dtype:value ddr:TTUC_degC . 4522 dtype:value ddr:TTUC_degC .
4516 4523
4517 -_:b1 sp:varName "uri"^^xsd:string . 4524 +_:b77
4525 + sp:varName "yieldPointScale"^^xsd:string .
4518 4526
4519 -_:b2 sp:varName "uri"^^xsd:string . 4527 +_:b76
4528 + sp:varName "wirelineFormationTestGoodnessOfSealType"^^xsd:string .
4520 4529
4521 -_:b3 sp:varName "uri"^^xsd:string . 4530 +_:b75
4531 + sp:varName "wellTestType"^^xsd:string .
4522 4532
4523 -_:b4 sp:varName "uri"^^xsd:string . 4533 +_:b74
4534 + sp:varName "wellKillingType"^^xsd:string .
4524 4535
4525 -_:b5 sp:varName "uri"^^xsd:string . 4536 +_:b73
4537 + sp:varName "wellControlIncidentType"^^xsd:string .
4526 4538
4527 -_:b6 sp:varName "uri"^^xsd:string . 4539 +_:b72
4540 + sp:varName "wellCementJobType"^^xsd:string .
4528 4541
4529 -_:b7 sp:varName "uri"^^xsd:string . 4542 +_:b71
4543 + sp:varName "wellCementJobTopPlugType"^^xsd:string .
4530 4544
4531 -_:b8 sp:varName "uri"^^xsd:string . 4545 +_:b70
4546 + sp:varName "wellCementJobPlugBumpingType"^^xsd:string .
4532 4547
4533 -_:b9 sp:varName "uri"^^xsd:string . 4548 +_:b69
4549 + sp:varName "wellCementJobFloatHoldingType"^^xsd:string .
4534 4550
4535 -_:b10 4551 +_:b68
4536 - sp:varName "uri"^^xsd:string . 4552 + sp:varName "wellCementJobCasingRotationType"^^xsd:string .
4537 4553
4538 -_:b11 4554 +_:b67
4539 - sp:varName "uri"^^xsd:string . 4555 + sp:varName "wellCementJobCasingReciprocationType"^^xsd:string .
4540 4556
4541 -_:b12 4557 +_:b66
4542 - sp:varName "uri"^^xsd:string . 4558 + sp:varName "wellCementJobBottomPlugType"^^xsd:string .
4543 4559
4544 -_:b13 4560 +_:b65
4545 - sp:varName "uri"^^xsd:string . 4561 + sp:varName "wellBoreTightnessType"^^xsd:string .
4546 4562
4547 -_:b14 4563 +_:b64
4548 - sp:varName "uri"^^xsd:string . 4564 + sp:varName "wellBoreHphtType"^^xsd:string .
4549 4565
4550 -_:b15 4566 +_:b63
4551 - sp:varName "uri"^^xsd:string . 4567 + sp:varName "wellBoreDrillingType"^^xsd:string .
4552 4568
4553 -_:b16 4569 +_:b62
4554 - sp:varName "uri"^^xsd:string . 4570 + sp:varName "volumetricFlowRateScale"^^xsd:string .
4555 4571
4556 -_:b17 4572 +_:b61
4557 - sp:varName "uri"^^xsd:string . 4573 + sp:varName "volumeScale"^^xsd:string .
4558 4574
4559 -_:b18 4575 +_:b60
4560 - sp:varName "uri"^^xsd:string . 4576 + sp:varName "durationScale"^^xsd:string .
4561 4577
4562 -_:b19 4578 +_:b59
4563 - sp:varName "uri"^^xsd:string . 4579 + sp:varName "temperatureScale"^^xsd:string .
4564 4580
4565 -_:b20 4581 +_:b58
4566 - sp:varName "uri"^^xsd:string . 4582 + sp:varName "strengthScale"^^xsd:string .
4567 4583
4568 -_:b21 4584 +_:b57
4569 - sp:varName "uri"^^xsd:string . 4585 + sp:varName "speedScale"^^xsd:string .
4570 4586
4571 -_:b22 4587 +_:b56
4572 - sp:varName "uri"^^xsd:string . 4588 + sp:varName "pressureTestType"^^xsd:string .
4573 4589
4574 -_:b23 4590 +_:b55
4575 - sp:varName "uri"^^xsd:string . 4591 + sp:varName "pressureScale"^^xsd:string .
4576 4592
4577 -_:b24 4593 +_:b54
4578 - sp:varName "uri"^^xsd:string . 4594 + sp:varName "porePressureDeterminationType"^^xsd:string .
4579 4595
4580 -_:b25 4596 +_:b53
4581 - sp:varName "uri"^^xsd:string . 4597 + sp:varName "plasticViscosityScale"^^xsd:string .
4582 4598
4583 -_:b26 4599 +_:b52
4584 - sp:varName "normalizedStr"^^xsd:string . 4600 + sp:varName "angleScale"^^xsd:string .
4585 4601
4586 -_:b27 4602 +_:b51
4587 - sp:varName "s1"^^xsd:string . 4603 + sp:varName "mudClass"^^xsd:string .
4588 4604
4589 -_:b28 4605 +_:b50
4590 - sp:varName "s2"^^xsd:string . 4606 + sp:varName "massPerUnitLengthScale"^^xsd:string .
4591 4607
4592 -_:b29 4608 +_:b49
4593 - sp:varName "t0a"^^xsd:string . 4609 + sp:varName "lengthScale"^^xsd:string .
4594 4610
4595 -_:b30 4611 +_:b48
4596 - sp:varName "t0b"^^xsd:string . 4612 + sp:varName "dailyDrillingReportType"^^xsd:string .
4597 4613
4598 -_:b31 4614 +_:b47
4599 - sp:varName "t1"^^xsd:string . 4615 + sp:varName "innerBarrelType"^^xsd:string .
4600 4616
4601 -_:b32 4617 +_:b46
4602 - sp:varName "t2"^^xsd:string . 4618 + sp:varName "gasReadingType"^^xsd:string .
4603 4619
4604 -_:b33 4620 +_:b45
4605 - sp:varName "t3"^^xsd:string . 4621 + sp:varName "fixedOrMoveableRigType"^^xsd:string .
4606 4622
4607 -_:b34 4623 +_:b44
4608 - sp:varName "t4"^^xsd:string . 4624 + sp:varName "drillingEquipmentType"^^xsd:string .
4609 4625
4610 -_:b35 4626 +_:b43
4611 - sp:varName "activitySuccessType"^^xsd:string . 4627 + sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string .
4612 4628
4613 -_:b36 4629 +_:b42
4614 - sp:varName "casingRoleType"^^xsd:string . 4630 + sp:varName "drillingActivityPurposeType"^^xsd:string .
4615 4631
4616 -_:b37 4632 +_:b41
4617 - sp:varName "cementingFluidReturnType"^^xsd:string . 4633 + sp:varName "drillingActivityOutcomeType"^^xsd:string .
4618 4634
4619 -_:b38 4635 +_:b40
4620 - sp:varName "classOfWellDatumObject"^^xsd:string . 4636 + sp:varName "densityScale"^^xsd:string .
4621 4637
4622 _:b39 4638 _:b39
4623 - sp:varName "componentType"^^xsd:string .
4624 -
4625 -_:b40
4626 sp:varName "dailyDrillingReportType"^^xsd:string . 4639 sp:varName "dailyDrillingReportType"^^xsd:string .
4627 4640
4628 -_:b41 4641 +_:b38
4629 - sp:varName "densityScale"^^xsd:string . 4642 + sp:varName "classOfWellDatumObject"^^xsd:string .
4630 -
4631 -_:b42
4632 - sp:varName "drillingActivityOutcomeType"^^xsd:string .
4633 4643
4634 -_:b43 4644 +_:b37
4635 - sp:varName "drillingActivityPurposeType"^^xsd:string . 4645 + sp:varName "cementingFluidReturnType"^^xsd:string .
4636 4646
4637 -_:b44 4647 +_:b36
4638 - sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string . 4648 + sp:varName "casingRoleType"^^xsd:string .
4639 4649
4640 -_:b45 4650 +_:b35
4641 - sp:varName "drillingEquipmentType"^^xsd:string . 4651 + sp:varName "activitySuccessType"^^xsd:string .
4642 4652
4643 -_:b46 4653 +_:b34
4644 - sp:varName "fixedOrMoveableRigType"^^xsd:string . 4654 + sp:varName "t4"^^xsd:string .
4645 4655
4646 -_:b47 4656 +_:b33
4647 - sp:varName "fluidType"^^xsd:string . 4657 + sp:varName "t3"^^xsd:string .
4648 4658
4649 -_:b48 4659 +_:b32
4650 - sp:varName "gasReadingType"^^xsd:string . 4660 + sp:varName "t2"^^xsd:string .
4651 4661
4652 -_:b49 4662 +_:b31
4653 - sp:varName "innerBarrelType"^^xsd:string . 4663 + sp:varName "t1"^^xsd:string .
4654 4664
4655 -_:b50 4665 +_:b30
4656 - sp:varName "dailyDrillingReportType"^^xsd:string . 4666 + sp:varName "t0b"^^xsd:string .
4657 4667
4658 -_:b51 4668 +_:b29
4659 - sp:varName "lengthScale"^^xsd:string . 4669 + sp:varName "t0a"^^xsd:string .
4660 4670
4661 -_:b52 4671 +_:b28
4662 - sp:varName "massPerUnitLengthScale"^^xsd:string . 4672 + sp:varName "s2"^^xsd:string .
4663 4673
4664 -_:b53 4674 +_:b27
4665 - sp:varName "mudClass"^^xsd:string . 4675 + sp:varName "s1"^^xsd:string .
4666 4676
4667 -_:b54 4677 +_:b26
4668 - sp:varName "angleScale"^^xsd:string . 4678 + sp:varName "normalizedStr"^^xsd:string .
4669 4679
4670 -_:b55 4680 +_:b25
4671 - sp:varName "plasticViscosityScale"^^xsd:string . 4681 + sp:varName "uri"^^xsd:string .
4672 4682
4673 -_:b56 4683 +_:b24
4674 - sp:varName "porePressureDeterminationType"^^xsd:string . 4684 + sp:varName "uri"^^xsd:string .
4675 4685
4676 -_:b57 4686 +_:b23
4677 - sp:varName "pressureScale"^^xsd:string . 4687 + sp:varName "uri"^^xsd:string .
4678 4688
4679 -_:b58 4689 +_:b22
4680 - sp:varName "pressureTestType"^^xsd:string . 4690 + sp:varName "uri"^^xsd:string .
4681 4691
4682 -_:b59 4692 +_:b21
4683 - sp:varName "speedScale"^^xsd:string . 4693 + sp:varName "uri"^^xsd:string .
4684 4694
4685 -_:b60 4695 +_:b20
4686 - sp:varName "strengthScale"^^xsd:string . 4696 + sp:varName "uri"^^xsd:string .
4687 4697
4688 -_:b61 4698 +_:b19
4689 - sp:varName "temperatureScale"^^xsd:string . 4699 + sp:varName "uri"^^xsd:string .
4690 4700
4691 -_:b62 4701 +_:b18
4692 - sp:varName "durationScale"^^xsd:string . 4702 + sp:varName "uri"^^xsd:string .
4693 4703
4694 -_:b63 4704 +_:b17
4695 - sp:varName "volumeScale"^^xsd:string . 4705 + sp:varName "uri"^^xsd:string .
4696 4706
4697 -_:b64 4707 +_:b16
4698 - sp:varName "volumetricFlowRateScale"^^xsd:string . 4708 + sp:varName "uri"^^xsd:string .
4699 4709
4700 -_:b65 4710 +_:b15
4701 - sp:varName "wellBoreDrillingType"^^xsd:string . 4711 + sp:varName "uri"^^xsd:string .
4702 4712
4703 -_:b66 4713 +_:b14
4704 - sp:varName "wellBoreHphtType"^^xsd:string . 4714 + sp:varName "uri"^^xsd:string .
4705 4715
4706 -_:b67 4716 +_:b13
4707 - sp:varName "wellBoreTightnessType"^^xsd:string . 4717 + sp:varName "uri"^^xsd:string .
4708 4718
4709 -_:b68 4719 +_:b12
4710 - sp:varName "wellCementJobBottomPlugType"^^xsd:string . 4720 + sp:varName "uri"^^xsd:string .
4711 4721
4712 -_:b69 4722 +_:b11
4713 - sp:varName "wellCementJobCasingReciprocationType"^^xsd:string . 4723 + sp:varName "uri"^^xsd:string .
4714 4724
4715 -_:b70 4725 +_:b10
4716 - sp:varName "wellCementJobCasingRotationType"^^xsd:string . 4726 + sp:varName "uri"^^xsd:string .
4717 4727
4718 -_:b71 4728 +_:b9 sp:varName "uri"^^xsd:string .
4719 - sp:varName "wellCementJobFloatHoldingType"^^xsd:string .
4720 4729
4721 -_:b72 4730 +_:b8 sp:varName "uri"^^xsd:string .
4722 - sp:varName "wellCementJobPlugBumpingType"^^xsd:string .
4723 4731
4724 -_:b73 4732 +_:b7 sp:varName "uri"^^xsd:string .
4725 - sp:varName "wellCementJobTopPlugType"^^xsd:string .
4726 4733
4727 -_:b74 4734 +_:b6 sp:varName "uri"^^xsd:string .
4728 - sp:varName "wellCementJobType"^^xsd:string .
4729 4735
4730 -_:b75 4736 +_:b5 sp:varName "uri"^^xsd:string .
4731 - sp:varName "wellControlIncidentType"^^xsd:string .
4732 4737
4733 -_:b76 4738 +_:b4 sp:varName "uri"^^xsd:string .
4734 - sp:varName "wellKillingType"^^xsd:string .
4735 4739
4736 -_:b77 4740 +_:b3 sp:varName "uri"^^xsd:string .
4737 - sp:varName "wellTestType"^^xsd:string .
4738 4741
4739 -_:b78 4742 +_:b2 sp:varName "uri"^^xsd:string .
4740 - sp:varName "wirelineFormationTestGoodnessOfSealType"^^xsd:string .
4741 4743
4742 -_:b79 4744 +_:b1 sp:varName "uri"^^xsd:string .
4743 - sp:varName "yieldPointScale"^^xsd:string .
......
1 -# Saved by TopBraid on Wed Nov 02 15:52:30 GMT 2011
2 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun 1 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun
2 +# imports: http://spinrdf.org/spin
3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
4 # imports: http://www.witsml.org/schemas/1series 4 # imports: http://www.witsml.org/schemas/1series
5 -# imports: http://spinrdf.org/spin
6 5
7 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun#> . 6 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun#> .
8 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . 7 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
...@@ -20,7 +19,7 @@ ...@@ -20,7 +19,7 @@
20 19
21 <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun> 20 <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun>
22 rdf:type owl:Ontology ; 21 rdf:type owl:Ontology ;
23 - owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ; 22 + owl:imports <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://spinrdf.org/spin> ;
24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 23 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
25 24
26 ddr:Obj_drillReport 25 ddr:Obj_drillReport
...@@ -29,299 +28,520 @@ ddr:Obj_drillReport ...@@ -29,299 +28,520 @@ ddr:Obj_drillReport
29 rdfs:comment "STEP 280 Well completion"^^xsd:string ; 28 rdfs:comment "STEP 280 Well completion"^^xsd:string ;
30 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCompletion> ; 29 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCompletion> ;
31 sp:predicate rdf:type ; 30 sp:predicate rdf:type ;
32 - sp:subject _:b1 31 + sp:subject
33 - ] [ sp:object _:b1 ; 32 + [ sp:varName "wellCompletion"^^xsd:string
33 + ]
34 + ] [ sp:object
35 + [ sp:varName "wellCompletion"^^xsd:string
36 + ] ;
34 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 37 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
35 - sp:subject _:b2 38 + sp:subject
36 - ] [ sp:object _:b3 ; 39 + [ sp:varName "dailyDrillingActivity"^^xsd:string
40 + ]
41 + ] [ sp:object
42 + [ sp:varName "dTimStartStim"^^xsd:string
43 + ] ;
37 sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; 44 sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ;
38 - sp:subject _:b1 45 + sp:subject
39 - ] [ sp:object _:b4 ; 46 + [ sp:varName "wellCompletion"^^xsd:string
47 + ]
48 + ] [ sp:object
49 + [ sp:varName "dTimEndStim"^^xsd:string
50 + ] ;
40 sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; 51 sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ;
41 - sp:subject _:b1 52 + sp:subject
42 - ] [ sp:object _:b5 ; 53 + [ sp:varName "wellCompletion"^^xsd:string
54 + ]
55 + ] [ sp:object
56 + [ sp:varName "description"^^xsd:string
57 + ] ;
43 sp:predicate rdfs:comment ; 58 sp:predicate rdfs:comment ;
44 - sp:subject _:b1 59 + sp:subject
45 - ] [ sp:object _:b6 ; 60 + [ sp:varName "wellCompletion"^^xsd:string
61 + ]
62 + ] [ sp:object _:b1 ;
46 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 63 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
47 - sp:subject _:b1 64 + sp:subject
65 + [ sp:varName "wellCompletion"^^xsd:string
66 + ]
48 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; 67 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ;
49 sp:predicate rdf:type ; 68 sp:predicate rdf:type ;
50 - sp:subject _:b6 69 + sp:subject _:b1
51 - ] [ sp:object _:b7 ; 70 + ] [ sp:object _:b2 ;
52 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 71 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
53 - sp:subject _:b6 72 + sp:subject _:b1
54 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; 73 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ;
55 sp:predicate rdf:type ; 74 sp:predicate rdf:type ;
56 - sp:subject _:b7 75 + sp:subject _:b2
57 - ] [ sp:object _:b8 ; 76 + ] [ sp:object
77 + [ sp:varName "wellBore"^^xsd:string
78 + ] ;
58 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; 79 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ;
59 - sp:subject _:b7 80 + sp:subject _:b2
60 - ] [ sp:object _:b9 ; 81 + ] [ sp:object _:b3 ;
61 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; 82 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ;
62 - sp:subject _:b7 83 + sp:subject _:b2
63 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 84 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
64 sp:predicate rdf:type ; 85 sp:predicate rdf:type ;
65 - sp:subject _:b9 86 + sp:subject _:b3
66 - ] [ sp:object _:b10 ; 87 + ] [ sp:object
67 - sp:predicate _:b11 ; 88 + [ sp:varName "realMdTop"^^xsd:string
68 - sp:subject _:b9 89 + ] ;
69 - ] [ sp:object _:b12 ; 90 + sp:predicate
91 + [ sp:varName "lengthScaleMdTop"^^xsd:string
92 + ] ;
93 + sp:subject _:b3
94 + ] [ sp:object _:b4 ;
70 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; 95 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ;
71 - sp:subject _:b7 96 + sp:subject _:b2
72 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 97 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
73 sp:predicate rdf:type ; 98 sp:predicate rdf:type ;
74 - sp:subject _:b12 99 + sp:subject _:b4
75 - ] [ sp:object _:b13 ; 100 + ] [ sp:object
76 - sp:predicate _:b14 ; 101 + [ sp:varName "realMdBottom"^^xsd:string
77 - sp:subject _:b12 102 + ] ;
78 - ] [ sp:object _:b15 ; 103 + sp:predicate
104 + [ sp:varName "lengthScaleMdBottom"^^xsd:string
105 + ] ;
106 + sp:subject _:b4
107 + ] [ sp:object _:b5 ;
79 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ; 108 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ;
80 - sp:subject _:b7 109 + sp:subject _:b2
81 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; 110 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ;
82 sp:predicate rdf:type ; 111 sp:predicate rdf:type ;
83 - sp:subject _:b15 112 + sp:subject _:b5
84 - ] [ sp:object _:b16 ; 113 + ] [ sp:object
114 + [ sp:varName "casingRoleType"^^xsd:string
115 + ] ;
85 sp:predicate rdf:type ; 116 sp:predicate rdf:type ;
86 - sp:subject _:b15 117 + sp:subject _:b5
87 - ] [ sp:object _:b17 ; 118 + ] [ sp:object
119 + [ sp:varName "tubeType"^^xsd:string
120 + ] ;
88 sp:predicate rdf:type ; 121 sp:predicate rdf:type ;
89 - sp:subject _:b15 122 + sp:subject _:b5
90 - ] [ sp:object _:b18 ; 123 + ] [ sp:object _:b6 ;
91 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#insideDiameterOfATubular> ; 124 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#insideDiameterOfATubular> ;
92 - sp:subject _:b15 125 + sp:subject _:b5
93 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 126 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
94 sp:predicate rdf:type ; 127 sp:predicate rdf:type ;
95 - sp:subject _:b18 128 + sp:subject _:b6
96 - ] [ sp:object _:b19 ; 129 + ] [ sp:object
97 - sp:predicate _:b20 ; 130 + [ sp:varName "realId"^^xsd:string
98 - sp:subject _:b18 131 + ] ;
99 - ] [ sp:object _:b21 ; 132 + sp:predicate
133 + [ sp:varName "lengthScaleId"^^xsd:string
134 + ] ;
135 + sp:subject _:b6
136 + ] [ sp:object
137 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
138 + ] ;
100 sp:predicate rdf:type ; 139 sp:predicate rdf:type ;
101 - sp:subject _:b15 140 + sp:subject _:b5
102 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; 141 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ;
103 sp:predicate rdfs:subClassOf ; 142 sp:predicate rdfs:subClassOf ;
104 - sp:subject _:b21 143 + sp:subject
144 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
145 + ]
105 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; 146 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ;
106 sp:predicate rdf:type ; 147 sp:predicate rdf:type ;
107 - sp:subject _:b21 148 + sp:subject
108 - ] [ sp:object _:b22 ; 149 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
150 + ]
151 + ] [ sp:object
152 + [ sp:varName "realOdName"^^xsd:string
153 + ] ;
109 sp:predicate rdfs:label ; 154 sp:predicate rdfs:label ;
110 - sp:subject _:b21 155 + sp:subject
111 - ] [ sp:object _:b23 ; 156 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
157 + ]
158 + ] [ sp:object
159 + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string
160 + ] ;
112 sp:predicate rdf:type ; 161 sp:predicate rdf:type ;
113 - sp:subject _:b15 162 + sp:subject _:b5
114 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; 163 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ;
115 sp:predicate rdfs:subClassOf ; 164 sp:predicate rdfs:subClassOf ;
116 - sp:subject _:b23 165 + sp:subject
166 + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string
167 + ]
117 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeWeightAPI_5CTClass> ; 168 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeWeightAPI_5CTClass> ;
118 sp:predicate rdf:type ; 169 sp:predicate rdf:type ;
119 - sp:subject _:b23 170 + sp:subject
120 - ] [ sp:object _:b24 ; 171 + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string
172 + ]
173 + ] [ sp:object
174 + [ sp:varName "weightName"^^xsd:string
175 + ] ;
121 sp:predicate rdfs:label ; 176 sp:predicate rdfs:label ;
122 - sp:subject _:b23 177 + sp:subject
123 - ] [ sp:object _:b25 ; 178 + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string
179 + ]
180 + ] [ sp:object
181 + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string
182 + ] ;
124 sp:predicate rdf:type ; 183 sp:predicate rdf:type ;
125 - sp:subject _:b15 184 + sp:subject _:b5
126 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; 185 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Material> ;
127 sp:predicate rdfs:subClassOf ; 186 sp:predicate rdfs:subClassOf ;
128 - sp:subject _:b25 187 + sp:subject
188 + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string
189 + ]
129 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#SteelGradeAPI_5CTClass> ; 190 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#SteelGradeAPI_5CTClass> ;
130 sp:predicate rdf:type ; 191 sp:predicate rdf:type ;
131 - sp:subject _:b25 192 + sp:subject
132 - ] [ sp:object _:b26 ; 193 + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string
194 + ]
195 + ] [ sp:object
196 + [ sp:varName "grade"^^xsd:string
197 + ] ;
133 sp:predicate rdfs:label ; 198 sp:predicate rdfs:label ;
134 - sp:subject _:b25 199 + sp:subject
135 - ] [ sp:object _:b27 ; 200 + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string
201 + ]
202 + ] [ sp:object _:b7 ;
136 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#hasTubularConnectionClass> ; 203 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#hasTubularConnectionClass> ;
137 - sp:subject _:b15 204 + sp:subject _:b5
138 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#TubularConnectionClass> ; 205 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#TubularConnectionClass> ;
139 sp:predicate rdf:type ; 206 sp:predicate rdf:type ;
140 - sp:subject _:b27 207 + sp:subject _:b7
141 - ] [ sp:object _:b28 ; 208 + ] [ sp:object
209 + [ sp:varName "connection"^^xsd:string
210 + ] ;
142 sp:predicate rdfs:label ; 211 sp:predicate rdfs:label ;
143 - sp:subject _:b27 212 + sp:subject _:b7
144 - ] [ sp:object _:b29 ; 213 + ] [ sp:object _:b8 ;
145 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#stringLengthOfATubular> ; 214 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#stringLengthOfATubular> ;
146 - sp:subject _:b15 215 + sp:subject _:b5
147 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 216 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
148 sp:predicate rdf:type ; 217 sp:predicate rdf:type ;
149 - sp:subject _:b29 218 + sp:subject _:b8
150 - ] [ sp:object _:b30 ; 219 + ] [ sp:object
151 - sp:predicate _:b31 ; 220 + [ sp:varName "realLen"^^xsd:string
152 - sp:subject _:b29 221 + ] ;
222 + sp:predicate
223 + [ sp:varName "lengthScaleLen"^^xsd:string
224 + ] ;
225 + sp:subject _:b8
153 ]) ; 226 ]) ;
154 - sp:where ([ sp:object _:b32 ; 227 + sp:where ([ sp:object
228 + [ sp:varName "nameWellBore"^^xsd:string
229 + ] ;
155 sp:predicate ep-spin-lib:nameWellbore ; 230 sp:predicate ep-spin-lib:nameWellbore ;
156 sp:subject spin:_this 231 sp:subject spin:_this
157 - ] [ sp:object _:b33 ; 232 + ] [ sp:object
233 + [ sp:varName "dTimStart"^^xsd:string
234 + ] ;
158 sp:predicate ddr:dTimStart ; 235 sp:predicate ddr:dTimStart ;
159 sp:subject spin:_this 236 sp:subject spin:_this
160 - ] [ sp:object _:b34 ; 237 + ] [ sp:object
238 + [ sp:varName "casingLinerTubing"^^xsd:string
239 + ] ;
161 sp:predicate ddr:casing_liner_tubingRef ; 240 sp:predicate ddr:casing_liner_tubingRef ;
162 sp:subject spin:_this 241 sp:subject spin:_this
163 ] [ rdf:type sp:Optional ; 242 ] [ rdf:type sp:Optional ;
164 - sp:elements ([ sp:object _:b35 ; 243 + sp:elements ([ sp:object
244 + [ sp:varName "enumTubeType"^^xsd:string
245 + ] ;
165 sp:predicate ddr:typeRef ; 246 sp:predicate ddr:typeRef ;
166 - sp:subject _:b34 247 + sp:subject
248 + [ sp:varName "casingLinerTubing"^^xsd:string
249 + ]
167 ]) 250 ])
168 ] [ rdf:type sp:Optional ; 251 ] [ rdf:type sp:Optional ;
169 - sp:elements ([ sp:object _:b36 ; 252 + sp:elements ([ sp:object
253 + [ sp:varName "id"^^xsd:string
254 + ] ;
170 sp:predicate ddr:idRef ; 255 sp:predicate ddr:idRef ;
171 - sp:subject _:b34 256 + sp:subject
172 - ] [ sp:object _:b37 ; 257 + [ sp:varName "casingLinerTubing"^^xsd:string
258 + ]
259 + ] [ sp:object
260 + [ sp:varName "uomId"^^xsd:string
261 + ] ;
173 sp:predicate ddr:uomRef ; 262 sp:predicate ddr:uomRef ;
174 - sp:subject _:b36 263 + sp:subject
175 - ] [ sp:object _:b19 ; 264 + [ sp:varName "id"^^xsd:string
265 + ]
266 + ] [ sp:object
267 + [ sp:varName "realId"^^xsd:string
268 + ] ;
176 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 269 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
177 - sp:subject _:b36 270 + sp:subject
271 + [ sp:varName "id"^^xsd:string
272 + ]
178 ]) 273 ])
179 ] [ rdf:type sp:Optional ; 274 ] [ rdf:type sp:Optional ;
180 - sp:elements ([ sp:object _:b38 ; 275 + sp:elements ([ sp:object
276 + [ sp:varName "od"^^xsd:string
277 + ] ;
181 sp:predicate ddr:odRef ; 278 sp:predicate ddr:odRef ;
182 - sp:subject _:b34 279 + sp:subject
183 - ] [ sp:object _:b39 ; 280 + [ sp:varName "casingLinerTubing"^^xsd:string
281 + ]
282 + ] [ sp:object
283 + [ sp:varName "uomOd"^^xsd:string
284 + ] ;
184 sp:predicate ddr:uomRef ; 285 sp:predicate ddr:uomRef ;
185 - sp:subject _:b38 286 + sp:subject
186 - ] [ sp:object _:b40 ; 287 + [ sp:varName "od"^^xsd:string
288 + ]
289 + ] [ sp:object
290 + [ sp:varName "realOd"^^xsd:string
291 + ] ;
187 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 292 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
188 - sp:subject _:b38 293 + sp:subject
294 + [ sp:varName "od"^^xsd:string
295 + ]
189 ]) 296 ])
190 ] [ rdf:type sp:Optional ; 297 ] [ rdf:type sp:Optional ;
191 - sp:elements ([ sp:object _:b41 ; 298 + sp:elements ([ sp:object
299 + [ sp:varName "weight"^^xsd:string
300 + ] ;
192 sp:predicate ddr:weightRef ; 301 sp:predicate ddr:weightRef ;
193 - sp:subject _:b34 302 + sp:subject
194 - ] [ sp:object _:b42 ; 303 + [ sp:varName "casingLinerTubing"^^xsd:string
304 + ]
305 + ] [ sp:object
306 + [ sp:varName "uomWeight"^^xsd:string
307 + ] ;
195 sp:predicate ddr:uomRef ; 308 sp:predicate ddr:uomRef ;
196 - sp:subject _:b41 309 + sp:subject
197 - ] [ sp:object _:b43 ; 310 + [ sp:varName "weight"^^xsd:string
311 + ]
312 + ] [ sp:object
313 + [ sp:varName "realMassPerUnitLength"^^xsd:string
314 + ] ;
198 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 315 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
199 - sp:subject _:b41 316 + sp:subject
317 + [ sp:varName "weight"^^xsd:string
318 + ]
200 ]) 319 ])
201 ] [ rdf:type sp:Optional ; 320 ] [ rdf:type sp:Optional ;
202 - sp:elements ([ sp:object _:b26 ; 321 + sp:elements ([ sp:object
322 + [ sp:varName "grade"^^xsd:string
323 + ] ;
203 sp:predicate ddr:grade ; 324 sp:predicate ddr:grade ;
204 - sp:subject _:b34 325 + sp:subject
326 + [ sp:varName "casingLinerTubing"^^xsd:string
327 + ]
205 ]) 328 ])
206 ] [ rdf:type sp:Optional ; 329 ] [ rdf:type sp:Optional ;
207 - sp:elements ([ sp:object _:b28 ; 330 + sp:elements ([ sp:object
331 + [ sp:varName "connection"^^xsd:string
332 + ] ;
208 sp:predicate ddr:connection ; 333 sp:predicate ddr:connection ;
209 - sp:subject _:b34 334 + sp:subject
335 + [ sp:varName "casingLinerTubing"^^xsd:string
336 + ]
210 ]) 337 ])
211 ] [ rdf:type sp:Optional ; 338 ] [ rdf:type sp:Optional ;
212 - sp:elements ([ sp:object _:b44 ; 339 + sp:elements ([ sp:object
340 + [ sp:varName "length"^^xsd:string
341 + ] ;
213 sp:predicate ddr:lengthRef ; 342 sp:predicate ddr:lengthRef ;
214 - sp:subject _:b34 343 + sp:subject
215 - ] [ sp:object _:b45 ; 344 + [ sp:varName "casingLinerTubing"^^xsd:string
345 + ]
346 + ] [ sp:object
347 + [ sp:varName "uomLen"^^xsd:string
348 + ] ;
216 sp:predicate ddr:uomRef ; 349 sp:predicate ddr:uomRef ;
217 - sp:subject _:b44 350 + sp:subject
218 - ] [ sp:object _:b30 ; 351 + [ sp:varName "length"^^xsd:string
352 + ]
353 + ] [ sp:object
354 + [ sp:varName "realLen"^^xsd:string
355 + ] ;
219 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 356 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
220 - sp:subject _:b44 357 + sp:subject
358 + [ sp:varName "length"^^xsd:string
359 + ]
221 ]) 360 ])
222 ] [ rdf:type sp:Optional ; 361 ] [ rdf:type sp:Optional ;
223 - sp:elements ([ sp:object _:b46 ; 362 + sp:elements ([ sp:object
363 + [ sp:varName "mdTop"^^xsd:string
364 + ] ;
224 sp:predicate ddr:mdTopRef ; 365 sp:predicate ddr:mdTopRef ;
225 - sp:subject _:b34 366 + sp:subject
226 - ] [ sp:object _:b47 ; 367 + [ sp:varName "casingLinerTubing"^^xsd:string
368 + ]
369 + ] [ sp:object
370 + [ sp:varName "uomMdTop"^^xsd:string
371 + ] ;
227 sp:predicate ddr:uomRef ; 372 sp:predicate ddr:uomRef ;
228 - sp:subject _:b46 373 + sp:subject
229 - ] [ sp:object _:b10 ; 374 + [ sp:varName "mdTop"^^xsd:string
375 + ]
376 + ] [ sp:object
377 + [ sp:varName "realMdTop"^^xsd:string
378 + ] ;
230 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 379 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
231 - sp:subject _:b46 380 + sp:subject
381 + [ sp:varName "mdTop"^^xsd:string
382 + ]
232 ]) 383 ])
233 ] [ rdf:type sp:Optional ; 384 ] [ rdf:type sp:Optional ;
234 - sp:elements ([ sp:object _:b48 ; 385 + sp:elements ([ sp:object
386 + [ sp:varName "mdBottom"^^xsd:string
387 + ] ;
235 sp:predicate ddr:mdBottomRef ; 388 sp:predicate ddr:mdBottomRef ;
236 - sp:subject _:b34 389 + sp:subject
237 - ] [ sp:object _:b49 ; 390 + [ sp:varName "casingLinerTubing"^^xsd:string
391 + ]
392 + ] [ sp:object
393 + [ sp:varName "uomMdBottom"^^xsd:string
394 + ] ;
238 sp:predicate ddr:uomRef ; 395 sp:predicate ddr:uomRef ;
239 - sp:subject _:b48 396 + sp:subject
240 - ] [ sp:object _:b13 ; 397 + [ sp:varName "mdBottom"^^xsd:string
398 + ]
399 + ] [ sp:object
400 + [ sp:varName "realMdBottom"^^xsd:string
401 + ] ;
241 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 402 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
242 - sp:subject _:b48 403 + sp:subject
404 + [ sp:varName "mdBottom"^^xsd:string
405 + ]
243 ]) 406 ])
244 ] [ rdf:type sp:Optional ; 407 ] [ rdf:type sp:Optional ;
245 - sp:elements ([ sp:object _:b50 ; 408 + sp:elements ([ sp:object
409 + [ sp:varName "casingLinerTubingRun"^^xsd:string
410 + ] ;
246 sp:predicate ddr:casing_liner_tubing_runRef ; 411 sp:predicate ddr:casing_liner_tubing_runRef ;
247 - sp:subject _:b34 412 + sp:subject
248 - ] [ sp:object _:b51 ; 413 + [ sp:varName "casingLinerTubing"^^xsd:string
414 + ]
415 + ] [ sp:object
416 + [ sp:varName "enumCasingType"^^xsd:string
417 + ] ;
249 sp:predicate ddr:casingTypeRef ; 418 sp:predicate ddr:casingTypeRef ;
250 - sp:subject _:b50 419 + sp:subject
420 + [ sp:varName "casingLinerTubingRun"^^xsd:string
421 + ]
251 ]) 422 ])
252 ] [ rdf:type sp:Optional ; 423 ] [ rdf:type sp:Optional ;
253 - sp:elements ([ sp:object _:b50 ; 424 + sp:elements ([ sp:object
425 + [ sp:varName "casingLinerTubingRun"^^xsd:string
426 + ] ;
254 sp:predicate ddr:casing_liner_tubing_runRef ; 427 sp:predicate ddr:casing_liner_tubing_runRef ;
255 - sp:subject _:b34 428 + sp:subject
256 - ] [ sp:object _:b5 ; 429 + [ sp:varName "casingLinerTubing"^^xsd:string
430 + ]
431 + ] [ sp:object
432 + [ sp:varName "description"^^xsd:string
433 + ] ;
257 sp:predicate ddr:description ; 434 sp:predicate ddr:description ;
258 - sp:subject _:b50 435 + sp:subject
436 + [ sp:varName "casingLinerTubingRun"^^xsd:string
437 + ]
259 ]) 438 ])
260 ] [ rdf:type sp:Optional ; 439 ] [ rdf:type sp:Optional ;
261 - sp:elements ([ sp:object _:b50 ; 440 + sp:elements ([ sp:object
441 + [ sp:varName "casingLinerTubingRun"^^xsd:string
442 + ] ;
262 sp:predicate ddr:casing_liner_tubing_runRef ; 443 sp:predicate ddr:casing_liner_tubing_runRef ;
263 - sp:subject _:b34 444 + sp:subject
264 - ] [ sp:object _:b3 ; 445 + [ sp:varName "casingLinerTubing"^^xsd:string
446 + ]
447 + ] [ sp:object
448 + [ sp:varName "dTimStartStim"^^xsd:string
449 + ] ;
265 sp:predicate ddr:dTimStart ; 450 sp:predicate ddr:dTimStart ;
266 - sp:subject _:b50 451 + sp:subject
452 + [ sp:varName "casingLinerTubingRun"^^xsd:string
453 + ]
267 ]) 454 ])
268 ] [ rdf:type sp:Optional ; 455 ] [ rdf:type sp:Optional ;
269 - sp:elements ([ sp:object _:b50 ; 456 + sp:elements ([ sp:object
457 + [ sp:varName "casingLinerTubingRun"^^xsd:string
458 + ] ;
270 sp:predicate ddr:casing_liner_tubing_runRef ; 459 sp:predicate ddr:casing_liner_tubing_runRef ;
271 - sp:subject _:b34 460 + sp:subject
272 - ] [ sp:object _:b4 ; 461 + [ sp:varName "casingLinerTubing"^^xsd:string
462 + ]
463 + ] [ sp:object
464 + [ sp:varName "dTimEndStim"^^xsd:string
465 + ] ;
273 sp:predicate ddr:dTimEnd ; 466 sp:predicate ddr:dTimEnd ;
274 - sp:subject _:b50 467 + sp:subject
468 + [ sp:varName "casingLinerTubingRun"^^xsd:string
469 + ]
275 ]) 470 ])
276 ] [ rdf:type sp:Bind ; 471 ] [ rdf:type sp:Bind ;
277 sp:expression 472 sp:expression
278 [ rdf:type ep-spin-lib:normalizeString ; 473 [ rdf:type ep-spin-lib:normalizeString ;
279 - sp:arg1 _:b32 474 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
475 + ]
280 ] ; 476 ] ;
281 - sp:variable _:b52 477 + sp:variable
478 + [ sp:varName "normalizedWellBoreName"^^xsd:string
479 + ]
282 ] [ rdf:type sp:Bind ; 480 ] [ rdf:type sp:Bind ;
283 sp:expression 481 sp:expression
284 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; 482 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
285 - sp:arg1 _:b52 ; 483 + sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string
286 - sp:arg2 _:b33 484 + ] ;
485 + sp:arg2 [ sp:varName "dTimStart"^^xsd:string
486 + ]
287 ] ; 487 ] ;
288 - sp:variable _:b2 488 + sp:variable
489 + [ sp:varName "dailyDrillingActivity"^^xsd:string
490 + ]
289 ] [ rdf:type sp:Bind ; 491 ] [ rdf:type sp:Bind ;
290 sp:expression 492 sp:expression
291 [ rdf:type afn:localname ; 493 [ rdf:type afn:localname ;
292 - sp:arg1 _:b34 494 + sp:arg1 [ sp:varName "casingLinerTubing"^^xsd:string
495 + ]
293 ] ; 496 ] ;
294 - sp:variable _:b53 497 + sp:variable
498 + [ sp:varName "localname"^^xsd:string
499 + ]
295 ] [ rdf:type sp:Bind ; 500 ] [ rdf:type sp:Bind ;
296 sp:expression 501 sp:expression
297 [ rdf:type ep-spin-lib:buildWellCompletionURI ; 502 [ rdf:type ep-spin-lib:buildWellCompletionURI ;
298 - sp:arg1 _:b52 ; 503 + sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string
299 - sp:arg2 _:b33 ; 504 + ] ;
300 - sp:arg3 _:b53 505 + sp:arg2 [ sp:varName "dTimStart"^^xsd:string
506 + ] ;
507 + sp:arg3 [ sp:varName "localname"^^xsd:string
508 + ]
301 ] ; 509 ] ;
302 - sp:variable _:b1 510 + sp:variable
511 + [ sp:varName "wellCompletion"^^xsd:string
512 + ]
303 ] [ rdf:type sp:Bind ; 513 ] [ rdf:type sp:Bind ;
304 sp:expression 514 sp:expression
305 [ rdf:type ep-spin-lib:selectCasingRoleType ; 515 [ rdf:type ep-spin-lib:selectCasingRoleType ;
306 - sp:arg1 _:b51 516 + sp:arg1 [ sp:varName "enumCasingType"^^xsd:string
517 + ]
307 ] ; 518 ] ;
308 - sp:variable _:b16 519 + sp:variable
520 + [ sp:varName "casingRoleType"^^xsd:string
521 + ]
309 ] [ rdf:type sp:Bind ; 522 ] [ rdf:type sp:Bind ;
310 sp:expression 523 sp:expression
311 [ rdf:type ep-spin-lib:selectTubeType ; 524 [ rdf:type ep-spin-lib:selectTubeType ;
312 - sp:arg1 _:b35 525 + sp:arg1 [ sp:varName "enumTubeType"^^xsd:string
526 + ]
313 ] ; 527 ] ;
314 - sp:variable _:b17 528 + sp:variable
529 + [ sp:varName "tubeType"^^xsd:string
530 + ]
315 ] [ rdf:type sp:Bind ; 531 ] [ rdf:type sp:Bind ;
316 sp:expression 532 sp:expression
317 [ rdf:type ep-spin-lib:selectLengthScale ; 533 [ rdf:type ep-spin-lib:selectLengthScale ;
318 - sp:arg1 _:b37 534 + sp:arg1 [ sp:varName "uomId"^^xsd:string
535 + ]
319 ] ; 536 ] ;
320 - sp:variable _:b20 537 + sp:variable
538 + [ sp:varName "lengthScaleId"^^xsd:string
539 + ]
321 ] [ rdf:type sp:Bind ; 540 ] [ rdf:type sp:Bind ;
322 sp:expression 541 sp:expression
323 [ rdf:type ep-spin-lib:selectLengthScale ; 542 [ rdf:type ep-spin-lib:selectLengthScale ;
324 - sp:arg1 _:b39 543 + sp:arg1 [ sp:varName "uomOd"^^xsd:string
544 + ]
325 ] ; 545 ] ;
326 sp:variable 546 sp:variable
327 [ sp:varName "lengthScaleOd"^^xsd:string 547 [ sp:varName "lengthScaleOd"^^xsd:string
...@@ -329,25 +549,35 @@ ddr:Obj_drillReport ...@@ -329,25 +549,35 @@ ddr:Obj_drillReport
329 ] [ rdf:type sp:Bind ; 549 ] [ rdf:type sp:Bind ;
330 sp:expression 550 sp:expression
331 [ rdf:type ep-spin-lib:selectLengthScale ; 551 [ rdf:type ep-spin-lib:selectLengthScale ;
332 - sp:arg1 _:b45 552 + sp:arg1 [ sp:varName "uomLen"^^xsd:string
553 + ]
333 ] ; 554 ] ;
334 - sp:variable _:b31 555 + sp:variable
556 + [ sp:varName "lengthScaleLen"^^xsd:string
557 + ]
335 ] [ rdf:type sp:Bind ; 558 ] [ rdf:type sp:Bind ;
336 sp:expression 559 sp:expression
337 [ rdf:type ep-spin-lib:selectLengthScale ; 560 [ rdf:type ep-spin-lib:selectLengthScale ;
338 - sp:arg1 _:b47 561 + sp:arg1 [ sp:varName "uomMdTop"^^xsd:string
562 + ]
339 ] ; 563 ] ;
340 - sp:variable _:b11 564 + sp:variable
565 + [ sp:varName "lengthScaleMdTop"^^xsd:string
566 + ]
341 ] [ rdf:type sp:Bind ; 567 ] [ rdf:type sp:Bind ;
342 sp:expression 568 sp:expression
343 [ rdf:type ep-spin-lib:selectLengthScale ; 569 [ rdf:type ep-spin-lib:selectLengthScale ;
344 - sp:arg1 _:b49 570 + sp:arg1 [ sp:varName "uomMdBottom"^^xsd:string
571 + ]
345 ] ; 572 ] ;
346 - sp:variable _:b14 573 + sp:variable
574 + [ sp:varName "lengthScaleMdBottom"^^xsd:string
575 + ]
347 ] [ rdf:type sp:Bind ; 576 ] [ rdf:type sp:Bind ;
348 sp:expression 577 sp:expression
349 [ rdf:type ep-spin-lib:selectMassPerUnitLengthScale ; 578 [ rdf:type ep-spin-lib:selectMassPerUnitLengthScale ;
350 - sp:arg1 _:b42 579 + sp:arg1 [ sp:varName "uomWeight"^^xsd:string
580 + ]
351 ] ; 581 ] ;
352 sp:variable 582 sp:variable
353 [ sp:varName "massPerUnitLengthScale"^^xsd:string 583 [ sp:varName "massPerUnitLengthScale"^^xsd:string
...@@ -355,170 +585,59 @@ ddr:Obj_drillReport ...@@ -355,170 +585,59 @@ ddr:Obj_drillReport
355 ] [ rdf:type sp:Bind ; 585 ] [ rdf:type sp:Bind ;
356 sp:expression 586 sp:expression
357 [ rdf:type ep-spin-lib:buildSteelGradeAPI_5CTClass ; 587 [ rdf:type ep-spin-lib:buildSteelGradeAPI_5CTClass ;
358 - sp:arg1 _:b26 588 + sp:arg1 [ sp:varName "grade"^^xsd:string
589 + ]
359 ] ; 590 ] ;
360 - sp:variable _:b25 591 + sp:variable
592 + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string
593 + ]
361 ] [ rdf:type sp:Bind ; 594 ] [ rdf:type sp:Bind ;
362 sp:expression 595 sp:expression
363 [ rdf:type ep-spin-lib:normalizeDoubleName ; 596 [ rdf:type ep-spin-lib:normalizeDoubleName ;
364 - sp:arg1 _:b40 597 + sp:arg1 [ sp:varName "realOd"^^xsd:string
598 + ]
365 ] ; 599 ] ;
366 - sp:variable _:b22 600 + sp:variable
601 + [ sp:varName "realOdName"^^xsd:string
602 + ]
367 ] [ rdf:type sp:Bind ; 603 ] [ rdf:type sp:Bind ;
368 sp:expression 604 sp:expression
369 [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ; 605 [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ;
370 - sp:arg1 _:b22 606 + sp:arg1 [ sp:varName "realOdName"^^xsd:string
607 + ]
371 ] ; 608 ] ;
372 - sp:variable _:b21 609 + sp:variable
610 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
611 + ]
373 ] [ rdf:type sp:Bind ; 612 ] [ rdf:type sp:Bind ;
374 sp:expression 613 sp:expression
375 [ rdf:type ep-spin-lib:normalizeDoubleName ; 614 [ rdf:type ep-spin-lib:normalizeDoubleName ;
376 - sp:arg1 _:b43 615 + sp:arg1 [ sp:varName "realMassPerUnitLength"^^xsd:string
616 + ]
377 ] ; 617 ] ;
378 - sp:variable _:b24 618 + sp:variable
619 + [ sp:varName "weightName"^^xsd:string
620 + ]
379 ] [ rdf:type sp:Bind ; 621 ] [ rdf:type sp:Bind ;
380 sp:expression 622 sp:expression
381 [ rdf:type ep-spin-lib:buildPipeWeightAPI_5CTClass ; 623 [ rdf:type ep-spin-lib:buildPipeWeightAPI_5CTClass ;
382 - sp:arg1 _:b24 624 + sp:arg1 [ sp:varName "weightName"^^xsd:string
625 + ]
383 ] ; 626 ] ;
384 - sp:variable _:b23 627 + sp:variable
628 + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string
629 + ]
385 ] [ rdf:type sp:Bind ; 630 ] [ rdf:type sp:Bind ;
386 sp:expression 631 sp:expression
387 [ rdf:type rhspin:wellBoreByName ; 632 [ rdf:type rhspin:wellBoreByName ;
388 arg:wellBoreName 633 arg:wellBoreName
389 [ rdf:type xsd:string ; 634 [ rdf:type xsd:string ;
390 - sp:arg1 _:b32 635 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
636 + ]
391 ] 637 ]
392 ] ; 638 ] ;
393 - sp:variable _:b8 639 + sp:variable
640 + [ sp:varName "wellBore"^^xsd:string
641 + ]
394 ]) 642 ])
395 ] . 643 ] .
396 -
397 -_:b32
398 - sp:varName "nameWellBore"^^xsd:string .
399 -
400 -_:b33
401 - sp:varName "dTimStart"^^xsd:string .
402 -
403 -_:b34
404 - sp:varName "casingLinerTubing"^^xsd:string .
405 -
406 -_:b35
407 - sp:varName "enumTubeType"^^xsd:string .
408 -
409 -_:b36
410 - sp:varName "id"^^xsd:string .
411 -
412 -_:b37
413 - sp:varName "uomId"^^xsd:string .
414 -
415 -_:b19
416 - sp:varName "realId"^^xsd:string .
417 -
418 -_:b38
419 - sp:varName "od"^^xsd:string .
420 -
421 -_:b39
422 - sp:varName "uomOd"^^xsd:string .
423 -
424 -_:b40
425 - sp:varName "realOd"^^xsd:string .
426 -
427 -_:b41
428 - sp:varName "weight"^^xsd:string .
429 -
430 -_:b42
431 - sp:varName "uomWeight"^^xsd:string .
432 -
433 -_:b43
434 - sp:varName "realMassPerUnitLength"^^xsd:string .
435 -
436 -_:b26
437 - sp:varName "grade"^^xsd:string .
438 -
439 -_:b28
440 - sp:varName "connection"^^xsd:string .
441 -
442 -_:b44
443 - sp:varName "length"^^xsd:string .
444 -
445 -_:b45
446 - sp:varName "uomLen"^^xsd:string .
447 -
448 -_:b30
449 - sp:varName "realLen"^^xsd:string .
450 -
451 -_:b46
452 - sp:varName "mdTop"^^xsd:string .
453 -
454 -_:b47
455 - sp:varName "uomMdTop"^^xsd:string .
456 -
457 -_:b10
458 - sp:varName "realMdTop"^^xsd:string .
459 -
460 -_:b48
461 - sp:varName "mdBottom"^^xsd:string .
462 -
463 -_:b49
464 - sp:varName "uomMdBottom"^^xsd:string .
465 -
466 -_:b13
467 - sp:varName "realMdBottom"^^xsd:string .
468 -
469 -_:b50
470 - sp:varName "casingLinerTubingRun"^^xsd:string .
471 -
472 -_:b51
473 - sp:varName "enumCasingType"^^xsd:string .
474 -
475 -_:b5 sp:varName "description"^^xsd:string .
476 -
477 -_:b3 sp:varName "dTimStartStim"^^xsd:string .
478 -
479 -_:b4 sp:varName "dTimEndStim"^^xsd:string .
480 -
481 -_:b52
482 - sp:varName "normalizedWellBoreName"^^xsd:string .
483 -
484 -_:b2 sp:varName "dailyDrillingActivity"^^xsd:string .
485 -
486 -_:b53
487 - sp:varName "localname"^^xsd:string .
488 -
489 -_:b1 sp:varName "wellCompletion"^^xsd:string .
490 -
491 -_:b16
492 - sp:varName "casingRoleType"^^xsd:string .
493 -
494 -_:b17
495 - sp:varName "tubeType"^^xsd:string .
496 -
497 -_:b20
498 - sp:varName "lengthScaleId"^^xsd:string .
499 -
500 -_:b31
501 - sp:varName "lengthScaleLen"^^xsd:string .
502 -
503 -_:b11
504 - sp:varName "lengthScaleMdTop"^^xsd:string .
505 -
506 -_:b14
507 - sp:varName "lengthScaleMdBottom"^^xsd:string .
508 -
509 -_:b25
510 - sp:varName "steelGradeAPI_5CTClass"^^xsd:string .
511 -
512 -_:b22
513 - sp:varName "realOdName"^^xsd:string .
514 -
515 -_:b21
516 - sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string .
517 -
518 -_:b24
519 - sp:varName "weightName"^^xsd:string .
520 -
521 -_:b23
522 - sp:varName "pipeWeightAPI_5CTClass"^^xsd:string .
523 -
524 -_:b8 sp:varName "wellBore"^^xsd:string .
......
1 -# Saved by TopBraid on Wed Nov 02 16:30:07 GMT 2011
2 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo 1 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo
2 +# imports: http://spinrdf.org/spin
3 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 4 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
4 # imports: http://www.witsml.org/schemas/1series 5 # imports: http://www.witsml.org/schemas/1series
5 -# imports: http://spinrdf.org/spin
6 6
7 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo#> . 7 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo#> .
8 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . 8 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
20 20
21 <http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo> 21 <http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo>
22 rdf:type owl:Ontology ; 22 rdf:type owl:Ontology ;
23 - owl:imports <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://spinrdf.org/spin> ; 23 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ;
24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
25 25
26 ddr:Obj_drillReport 26 ddr:Obj_drillReport
...@@ -29,469 +29,833 @@ ddr:Obj_drillReport ...@@ -29,469 +29,833 @@ ddr:Obj_drillReport
29 rdfs:comment "STEP 250 Create an WellControlIncident activity"^^xsd:string ; 29 rdfs:comment "STEP 250 Create an WellControlIncident activity"^^xsd:string ;
30 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellControlIncident> ; 30 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellControlIncident> ;
31 sp:predicate rdf:type ; 31 sp:predicate rdf:type ;
32 - sp:subject _:b1 32 + sp:subject
33 - ] [ sp:object _:b1 ; 33 + [ sp:varName "wellControlIncident"^^xsd:string
34 + ]
35 + ] [ sp:object
36 + [ sp:varName "wellControlIncident"^^xsd:string
37 + ] ;
34 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 38 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
35 - sp:subject _:b2 39 + sp:subject
36 - ] [ sp:object _:b3 ; 40 + [ sp:varName "dailyDrillingActivity"^^xsd:string
41 + ]
42 + ] [ sp:object _:b1 ;
37 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 43 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
38 - sp:subject _:b1 44 + sp:subject
45 + [ sp:varName "wellControlIncident"^^xsd:string
46 + ]
39 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ; 47 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#TemporalPartOfAWellBore> ;
40 sp:predicate rdf:type ; 48 sp:predicate rdf:type ;
41 - sp:subject _:b3 49 + sp:subject _:b1
42 - ] [ sp:object _:b4 ; 50 + ] [ sp:object
51 + [ sp:varName "dailytemporalPartOfAWellBore"^^xsd:string
52 + ] ;
43 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 53 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
44 - sp:subject _:b3
45 - ] [ sp:object _:b5 ;
46 - sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ;
47 sp:subject _:b1 54 sp:subject _:b1
48 - ] [ sp:object _:b6 ; 55 + ] [ sp:object
56 + [ sp:varName "dTimStartOfIncident"^^xsd:string
57 + ] ;
58 + sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ;
59 + sp:subject
60 + [ sp:varName "wellControlIncident"^^xsd:string
61 + ]
62 + ] [ sp:object
63 + [ sp:varName "dTimEndOfIncident"^^xsd:string
64 + ] ;
49 sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; 65 sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ;
50 - sp:subject _:b1 66 + sp:subject
51 - ] [ sp:object _:b7 ; 67 + [ sp:varName "wellControlIncident"^^xsd:string
68 + ]
69 + ] [ sp:object _:b2 ;
52 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasInflowLocation> ; 70 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasInflowLocation> ;
53 - sp:subject _:b1 71 + sp:subject
72 + [ sp:varName "wellControlIncident"^^xsd:string
73 + ]
54 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#PositionWithinWellBore> ; 74 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#PositionWithinWellBore> ;
55 sp:predicate rdf:type ; 75 sp:predicate rdf:type ;
56 - sp:subject _:b7 76 + sp:subject _:b2
57 - ] [ sp:object _:b8 ; 77 + ] [ sp:object
78 + [ sp:varName "wellBore"^^xsd:string
79 + ] ;
58 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; 80 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ;
59 - sp:subject _:b7 81 + sp:subject _:b2
60 - ] [ sp:object _:b7 ; 82 + ] [ sp:object _:b2 ;
61 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; 83 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ;
62 - sp:subject _:b9 84 + sp:subject _:b3
63 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#SurroundingRockFormation> ; 85 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#SurroundingRockFormation> ;
64 sp:predicate rdf:type ; 86 sp:predicate rdf:type ;
65 - sp:subject _:b9 87 + sp:subject _:b3
66 - ] [ sp:object _:b10 ; 88 + ] [ sp:object
89 + [ sp:varName "formation"^^xsd:string
90 + ] ;
67 sp:predicate rdfs:comment ; 91 sp:predicate rdfs:comment ;
68 - sp:subject _:b9 92 + sp:subject _:b3
69 - ] [ sp:object _:b11 ; 93 + ] [ sp:object _:b4 ;
70 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepth> ; 94 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepth> ;
71 - sp:subject _:b7 95 + sp:subject _:b2
72 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 96 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
73 sp:predicate rdf:type ; 97 sp:predicate rdf:type ;
74 - sp:subject _:b11 98 + sp:subject _:b4
75 - ] [ sp:object _:b12 ; 99 + ] [ sp:object
76 - sp:predicate _:b13 ; 100 + [ sp:varName "realMdIn"^^xsd:string
77 - sp:subject _:b11 101 + ] ;
78 - ] [ sp:object _:b14 ; 102 + sp:predicate
103 + [ sp:varName "lengthScaleMdIn"^^xsd:string
104 + ] ;
105 + sp:subject _:b4
106 + ] [ sp:object _:b5 ;
79 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepth> ; 107 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepth> ;
80 - sp:subject _:b7 108 + sp:subject _:b2
81 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 109 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
82 sp:predicate rdf:type ; 110 sp:predicate rdf:type ;
83 - sp:subject _:b14 111 + sp:subject _:b5
84 - ] [ sp:object _:b15 ; 112 + ] [ sp:object
85 - sp:predicate _:b16 ; 113 + [ sp:varName "realTvdIn"^^xsd:string
86 - sp:subject _:b14 114 + ] ;
87 - ] [ sp:object _:b17 ; 115 + sp:predicate
116 + [ sp:varName "lengthScaleTvdIn"^^xsd:string
117 + ] ;
118 + sp:subject _:b5
119 + ] [ sp:object _:b6 ;
88 sp:predicate <http://www.reportinghub.no/ep/schema/activity#timeLost> ; 120 sp:predicate <http://www.reportinghub.no/ep/schema/activity#timeLost> ;
89 - sp:subject _:b1 121 + sp:subject
122 + [ sp:varName "wellControlIncident"^^xsd:string
123 + ]
90 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; 124 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ;
91 sp:predicate rdf:type ; 125 sp:predicate rdf:type ;
92 - sp:subject _:b17 126 + sp:subject _:b6
93 - ] [ sp:object _:b18 ; 127 + ] [ sp:object
94 - sp:predicate _:b19 ; 128 + [ sp:varName "realDuration"^^xsd:string
95 - sp:subject _:b17 129 + ] ;
96 - ] [ sp:object _:b20 ; 130 + sp:predicate
131 + [ sp:varName "timeDurationScale"^^xsd:string
132 + ] ;
133 + sp:subject _:b6
134 + ] [ sp:object
135 + [ sp:varName "wellControlIncidentType"^^xsd:string
136 + ] ;
97 sp:predicate rdf:type ; 137 sp:predicate rdf:type ;
98 - sp:subject _:b1 138 + sp:subject
99 - ] [ sp:object _:b21 ; 139 + [ sp:varName "wellControlIncident"^^xsd:string
140 + ]
141 + ] [ sp:object _:b7 ;
100 sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ; 142 sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ;
101 - sp:subject _:b1 143 + sp:subject
102 - ] [ sp:object _:b22 ; 144 + [ sp:varName "wellControlIncident"^^xsd:string
145 + ]
146 + ] [ sp:object
147 + [ sp:varName "drillingActivityPurposeType"^^xsd:string
148 + ] ;
103 sp:predicate rdf:type ; 149 sp:predicate rdf:type ;
104 - sp:subject _:b21 150 + sp:subject _:b7
105 - ] [ sp:object _:b23 ; 151 + ] [ sp:object
152 + [ sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string
153 + ] ;
106 sp:predicate rdf:type ; 154 sp:predicate rdf:type ;
107 - sp:subject _:b21 155 + sp:subject _:b7
108 - ] [ sp:object _:b24 ; 156 + ] [ sp:object _:b8 ;
109 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasDrillBit> ; 157 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasDrillBit> ;
110 - sp:subject _:b21 158 + sp:subject _:b7
111 - ] [ sp:object _:b25 ; 159 + ] [ sp:object _:b9 ;
112 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasChokeValve> ; 160 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasChokeValve> ;
113 - sp:subject _:b21 161 + sp:subject _:b7
114 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> ; 162 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ChokeValve> ;
115 sp:predicate rdf:type ; 163 sp:predicate rdf:type ;
116 - sp:subject _:b25 164 + sp:subject _:b9
117 - ] [ sp:object _:b26 ; 165 + ] [ sp:object _:b10 ;
118 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#maximumPressureForChokeValve> ; 166 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#maximumPressureForChokeValve> ;
119 - sp:subject _:b25 167 + sp:subject _:b9
120 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 168 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
121 sp:predicate rdf:type ; 169 sp:predicate rdf:type ;
122 - sp:subject _:b26 170 + sp:subject _:b10
123 - ] [ sp:object _:b27 ; 171 + ] [ sp:object
124 - sp:predicate _:b28 ; 172 + [ sp:varName "realMaxChoke"^^xsd:string
125 - sp:subject _:b26 173 + ] ;
174 + sp:predicate
175 + [ sp:varName "pressureScaleMaxChoke"^^xsd:string
176 + ] ;
177 + sp:subject _:b10
126 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBit> ; 178 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBit> ;
127 sp:predicate rdf:type ; 179 sp:predicate rdf:type ;
128 - sp:subject _:b24 180 + sp:subject _:b8
129 - ] [ sp:object _:b29 ; 181 + ] [ sp:object
182 + [ sp:varName "wellBoreDrillBitSizeClass"^^xsd:string
183 + ] ;
130 sp:predicate rdf:type ; 184 sp:predicate rdf:type ;
131 - sp:subject _:b24 185 + sp:subject _:b8
132 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBit> ; 186 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBit> ;
133 sp:predicate rdfs:subClassOf ; 187 sp:predicate rdfs:subClassOf ;
134 - sp:subject _:b29 188 + sp:subject
189 + [ sp:varName "wellBoreDrillBitSizeClass"^^xsd:string
190 + ]
135 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ClassOfDrillBitBySize> ; 191 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ClassOfDrillBitBySize> ;
136 sp:predicate rdf:type ; 192 sp:predicate rdf:type ;
137 - sp:subject _:b29 193 + sp:subject
138 - ] [ sp:object _:b30 ; 194 + [ sp:varName "wellBoreDrillBitSizeClass"^^xsd:string
195 + ]
196 + ] [ sp:object
197 + [ sp:varName "diaName"^^xsd:string
198 + ] ;
139 sp:predicate rdfs:label ; 199 sp:predicate rdfs:label ;
140 - sp:subject _:b29 200 + sp:subject
141 - ] [ sp:object _:b31 ; 201 + [ sp:varName "wellBoreDrillBitSizeClass"^^xsd:string
202 + ]
203 + ] [ sp:object _:b11 ;
142 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 204 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
143 - sp:subject _:b1 205 + sp:subject
144 - ] [ sp:object _:b32 ; 206 + [ sp:varName "wellControlIncident"^^xsd:string
207 + ]
208 + ] [ sp:object
209 + [ sp:varName "wellKillingType"^^xsd:string
210 + ] ;
145 sp:predicate rdf:type ; 211 sp:predicate rdf:type ;
146 - sp:subject _:b31 212 + sp:subject _:b11
147 - ] [ sp:object _:b33 ; 213 + ] [ sp:object _:b12 ;
148 sp:predicate <http://www.reportinghub.no/ep/schema/activity#volumeOfMudGained> ; 214 sp:predicate <http://www.reportinghub.no/ep/schema/activity#volumeOfMudGained> ;
149 - sp:subject _:b1 215 + sp:subject
216 + [ sp:varName "wellControlIncident"^^xsd:string
217 + ]
150 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; 218 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ;
151 sp:predicate rdf:type ; 219 sp:predicate rdf:type ;
152 - sp:subject _:b33 220 + sp:subject _:b12
153 - ] [ sp:object _:b34 ; 221 + ] [ sp:object
154 - sp:predicate _:b35 ; 222 + [ sp:varName "realVol"^^xsd:string
155 - sp:subject _:b33 223 + ] ;
156 - ] [ sp:object _:b36 ; 224 + sp:predicate
225 + [ sp:varName "volumeScale"^^xsd:string
226 + ] ;
227 + sp:subject _:b12
228 + ] [ sp:object
229 + [ sp:varName "description"^^xsd:string
230 + ] ;
157 sp:predicate rdfs:comment ; 231 sp:predicate rdfs:comment ;
158 - sp:subject _:b1 232 + sp:subject
159 - ] [ sp:object _:b37 ; 233 + [ sp:varName "wellControlIncident"^^xsd:string
234 + ]
235 + ] [ sp:object _:b13 ;
160 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 236 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
161 - sp:subject _:b3 237 + sp:subject _:b1
162 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#LastCasingOfAWellBore> ; 238 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#LastCasingOfAWellBore> ;
163 sp:predicate rdf:type ; 239 sp:predicate rdf:type ;
164 - sp:subject _:b37 240 + sp:subject _:b13
165 - ] [ sp:object _:b38 ; 241 + ] [ sp:object _:b14 ;
166 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 242 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
167 - sp:subject _:b37 243 + sp:subject _:b13
168 - ] [ sp:object _:b39 ; 244 + ] [ sp:object
245 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
246 + ] ;
169 sp:predicate rdf:type ; 247 sp:predicate rdf:type ;
170 - sp:subject _:b38 248 + sp:subject _:b14
171 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; 249 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ;
172 sp:predicate rdfs:subClassOf ; 250 sp:predicate rdfs:subClassOf ;
173 - sp:subject _:b39 251 + sp:subject
252 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
253 + ]
174 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; 254 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ;
175 sp:predicate rdf:type ; 255 sp:predicate rdf:type ;
176 - sp:subject _:b39 256 + sp:subject
177 - ] [ sp:object _:b40 ; 257 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
258 + ]
259 + ] [ sp:object
260 + [ sp:varName "realOdName"^^xsd:string
261 + ] ;
178 sp:predicate rdfs:label ; 262 sp:predicate rdfs:label ;
179 - sp:subject _:b39 263 + sp:subject
180 - ] [ sp:object _:b41 ; 264 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
265 + ]
266 + ] [ sp:object _:b15 ;
181 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; 267 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ;
182 - sp:subject _:b38 268 + sp:subject _:b14
183 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 269 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
184 sp:predicate rdf:type ; 270 sp:predicate rdf:type ;
185 - sp:subject _:b41 271 + sp:subject _:b15
186 - ] [ sp:object _:b42 ; 272 + ] [ sp:object
187 - sp:predicate _:b43 ; 273 + [ sp:varName "realMdCsgLast"^^xsd:string
188 - sp:subject _:b41 274 + ] ;
189 - ] [ sp:object _:b44 ; 275 + sp:predicate
276 + [ sp:varName "lengthScaleMdCsgLast"^^xsd:string
277 + ] ;
278 + sp:subject _:b15
279 + ] [ sp:object _:b16 ;
190 sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth> ; 280 sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth> ;
191 - sp:subject _:b3 281 + sp:subject _:b1
192 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 282 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
193 sp:predicate rdf:type ; 283 sp:predicate rdf:type ;
194 - sp:subject _:b44 284 + sp:subject _:b16
195 - ] [ sp:object _:b45 ; 285 + ] [ sp:object
196 - sp:predicate _:b46 ; 286 + [ sp:varName "realMdBit"^^xsd:string
197 - sp:subject _:b44 287 + ] ;
198 - ] [ sp:object _:b47 ; 288 + sp:predicate
289 + [ sp:varName "lengthScaleMdBit"^^xsd:string
290 + ] ;
291 + sp:subject _:b16
292 + ] [ sp:object _:b17 ;
199 sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleTemperature> ; 293 sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleTemperature> ;
200 - sp:subject _:b3 294 + sp:subject _:b1
201 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Temperature> ; 295 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Temperature> ;
202 sp:predicate rdf:type ; 296 sp:predicate rdf:type ;
203 - sp:subject _:b47 297 + sp:subject _:b17
204 - ] [ sp:object _:b48 ; 298 + ] [ sp:object
205 - sp:predicate _:b49 ; 299 + [ sp:varName "realTemp"^^xsd:string
206 - sp:subject _:b47 300 + ] ;
207 - ] [ sp:object _:b50 ; 301 + sp:predicate
302 + [ sp:varName "temperatureScale"^^xsd:string
303 + ] ;
304 + sp:subject _:b17
305 + ] [ sp:object _:b18 ;
208 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasDrillingFluid> ; 306 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasDrillingFluid> ;
209 - sp:subject _:b3 307 + sp:subject _:b1
210 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; 308 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
211 sp:predicate rdf:type ; 309 sp:predicate rdf:type ;
212 - sp:subject _:b50 310 + sp:subject _:b18
213 - ] [ sp:object _:b51 ; 311 + ] [ sp:object _:b19 ;
214 sp:predicate rdf:type ; 312 sp:predicate rdf:type ;
215 - sp:subject _:b50 313 + sp:subject _:b18
216 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; 314 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ;
217 sp:predicate rdf:type ; 315 sp:predicate rdf:type ;
218 - sp:subject _:b51 316 + sp:subject _:b19
219 - ] [ sp:object _:b52 ; 317 + ] [ sp:object
220 - sp:predicate _:b53 ; 318 + [ sp:varName "realWtMud"^^xsd:string
221 - sp:subject _:b51 319 + ] ;
222 - ] [ sp:object _:b54 ; 320 + sp:predicate
321 + [ sp:varName "densityScaleWtMud"^^xsd:string
322 + ] ;
323 + sp:subject _:b19
324 + ] [ sp:object _:b20 ;
223 sp:predicate <http://www.reportinghub.no/ep/schema/well#porePressureEquivalentMudDensity> ; 325 sp:predicate <http://www.reportinghub.no/ep/schema/well#porePressureEquivalentMudDensity> ;
224 - sp:subject _:b3 326 + sp:subject _:b1
225 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; 327 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ;
226 sp:predicate rdf:type ; 328 sp:predicate rdf:type ;
227 - sp:subject _:b54 329 + sp:subject _:b20
228 - ] [ sp:object _:b55 ; 330 + ] [ sp:object
229 - sp:predicate _:b56 ; 331 + [ sp:varName "realPore"^^xsd:string
230 - sp:subject _:b54 332 + ] ;
231 - ] [ sp:object _:b57 ; 333 + sp:predicate
334 + [ sp:varName "densityScalePore"^^xsd:string
335 + ] ;
336 + sp:subject _:b20
337 + ] [ sp:object _:b21 ;
232 sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInCasingPressure> ; 338 sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInCasingPressure> ;
233 - sp:subject _:b3 339 + sp:subject _:b1
234 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 340 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
235 sp:predicate rdf:type ; 341 sp:predicate rdf:type ;
236 - sp:subject _:b57 342 + sp:subject _:b21
237 - ] [ sp:object _:b58 ; 343 + ] [ sp:object
238 - sp:predicate _:b59 ; 344 + [ sp:varName "realShutInCasing"^^xsd:string
239 - sp:subject _:b57 345 + ] ;
240 - ] [ sp:object _:b60 ; 346 + sp:predicate
347 + [ sp:varName "pressureScaleShutInCasing"^^xsd:string
348 + ] ;
349 + sp:subject _:b21
350 + ] [ sp:object _:b22 ;
241 sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInDrillPipePressure> ; 351 sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInDrillPipePressure> ;
242 - sp:subject _:b3 352 + sp:subject _:b1
243 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 353 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
244 sp:predicate rdf:type ; 354 sp:predicate rdf:type ;
245 - sp:subject _:b60 355 + sp:subject _:b22
246 - ] [ sp:object _:b61 ; 356 + ] [ sp:object
247 - sp:predicate _:b62 ; 357 + [ sp:varName "realShutInDrill"^^xsd:string
248 - sp:subject _:b60 358 + ] ;
359 + sp:predicate
360 + [ sp:varName "pressureScaleShutInDrill"^^xsd:string
361 + ] ;
362 + sp:subject _:b22
249 ]) ; 363 ]) ;
250 - sp:where ([ sp:object _:b63 ; 364 + sp:where ([ sp:object
365 + [ sp:varName "nameWellBore"^^xsd:string
366 + ] ;
251 sp:predicate ep-spin-lib:nameWellbore ; 367 sp:predicate ep-spin-lib:nameWellbore ;
252 sp:subject spin:_this 368 sp:subject spin:_this
253 - ] [ sp:object _:b64 ; 369 + ] [ sp:object
370 + [ sp:varName "dTimStart"^^xsd:string
371 + ] ;
254 sp:predicate ddr:dTimStart ; 372 sp:predicate ddr:dTimStart ;
255 sp:subject spin:_this 373 sp:subject spin:_this
256 - ] [ sp:object _:b4 ; 374 + ] [ sp:object
375 + [ sp:varName "dailytemporalPartOfAWellBore"^^xsd:string
376 + ] ;
257 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 377 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
258 - sp:subject _:b2 378 + sp:subject
259 - ] [ sp:object _:b65 ; 379 + [ sp:varName "dailyDrillingActivity"^^xsd:string
380 + ]
381 + ] [ sp:object
382 + [ sp:varName "controlIncidentInfo"^^xsd:string
383 + ] ;
260 sp:predicate ddr:controlIncidentInfoRef ; 384 sp:predicate ddr:controlIncidentInfoRef ;
261 sp:subject spin:_this 385 sp:subject spin:_this
262 - ] [ sp:object _:b5 ; 386 + ] [ sp:object
387 + [ sp:varName "dTimStartOfIncident"^^xsd:string
388 + ] ;
263 sp:predicate ddr:dTim ; 389 sp:predicate ddr:dTim ;
264 - sp:subject _:b65 390 + sp:subject
265 - ] [ sp:object _:b66 ; 391 + [ sp:varName "controlIncidentInfo"^^xsd:string
392 + ]
393 + ] [ sp:object
394 + [ sp:varName "mdIn"^^xsd:string
395 + ] ;
266 sp:predicate ddr:mdInflowRef ; 396 sp:predicate ddr:mdInflowRef ;
267 - sp:subject _:b65 397 + sp:subject
268 - ] [ sp:object _:b67 ; 398 + [ sp:varName "controlIncidentInfo"^^xsd:string
399 + ]
400 + ] [ sp:object
401 + [ sp:varName "uomMdIn"^^xsd:string
402 + ] ;
269 sp:predicate ddr:uomRef ; 403 sp:predicate ddr:uomRef ;
270 - sp:subject _:b66 404 + sp:subject
271 - ] [ sp:object _:b12 ; 405 + [ sp:varName "mdIn"^^xsd:string
406 + ]
407 + ] [ sp:object
408 + [ sp:varName "realMdIn"^^xsd:string
409 + ] ;
272 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 410 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
273 - sp:subject _:b66 411 + sp:subject
412 + [ sp:varName "mdIn"^^xsd:string
413 + ]
274 ] [ rdf:type sp:Optional ; 414 ] [ rdf:type sp:Optional ;
275 - sp:elements ([ sp:object _:b68 ; 415 + sp:elements ([ sp:object
416 + [ sp:varName "tvdIn"^^xsd:string
417 + ] ;
276 sp:predicate ddr:tvdInflowRef ; 418 sp:predicate ddr:tvdInflowRef ;
277 - sp:subject _:b65 419 + sp:subject
278 - ] [ sp:object _:b69 ; 420 + [ sp:varName "controlIncidentInfo"^^xsd:string
421 + ]
422 + ] [ sp:object
423 + [ sp:varName "uomTvdIn"^^xsd:string
424 + ] ;
279 sp:predicate ddr:uomRef ; 425 sp:predicate ddr:uomRef ;
280 - sp:subject _:b68 426 + sp:subject
281 - ] [ sp:object _:b15 ; 427 + [ sp:varName "tvdIn"^^xsd:string
428 + ]
429 + ] [ sp:object
430 + [ sp:varName "realTvdIn"^^xsd:string
431 + ] ;
282 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 432 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
283 - sp:subject _:b68 433 + sp:subject
434 + [ sp:varName "tvdIn"^^xsd:string
435 + ]
284 ]) 436 ])
285 - ] [ sp:object _:b70 ; 437 + ] [ sp:object
438 + [ sp:varName "phase"^^xsd:string
439 + ] ;
286 sp:predicate ddr:phaseRef ; 440 sp:predicate ddr:phaseRef ;
287 - sp:subject _:b65 441 + sp:subject
288 - ] [ sp:object _:b71 ; 442 + [ sp:varName "controlIncidentInfo"^^xsd:string
443 + ]
444 + ] [ sp:object
445 + [ sp:varName "proprietaryCode"^^xsd:string
446 + ] ;
289 sp:predicate ddr:proprietaryCodeRef ; 447 sp:predicate ddr:proprietaryCodeRef ;
290 - sp:subject _:b65 448 + sp:subject
291 - ] [ sp:object _:b72 ; 449 + [ sp:varName "controlIncidentInfo"^^xsd:string
450 + ]
451 + ] [ sp:object
452 + [ sp:varName "eTimLost"^^xsd:string
453 + ] ;
292 sp:predicate ddr:eTimLostRef ; 454 sp:predicate ddr:eTimLostRef ;
293 - sp:subject _:b65 455 + sp:subject
294 - ] [ sp:object _:b73 ; 456 + [ sp:varName "controlIncidentInfo"^^xsd:string
457 + ]
458 + ] [ sp:object
459 + [ sp:varName "uomDuration"^^xsd:string
460 + ] ;
295 sp:predicate ddr:uomRef ; 461 sp:predicate ddr:uomRef ;
296 - sp:subject _:b72 462 + sp:subject
297 - ] [ sp:object _:b18 ; 463 + [ sp:varName "eTimLost"^^xsd:string
464 + ]
465 + ] [ sp:object
466 + [ sp:varName "realDuration"^^xsd:string
467 + ] ;
298 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 468 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
299 - sp:subject _:b72 469 + sp:subject
300 - ] [ sp:object _:b6 ; 470 + [ sp:varName "eTimLost"^^xsd:string
471 + ]
472 + ] [ sp:object
473 + [ sp:varName "dTimEndOfIncident"^^xsd:string
474 + ] ;
301 sp:predicate ddr:dTimRegained ; 475 sp:predicate ddr:dTimRegained ;
302 - sp:subject _:b65 476 + sp:subject
303 - ] [ sp:object _:b74 ; 477 + [ sp:varName "controlIncidentInfo"^^xsd:string
478 + ]
479 + ] [ sp:object
480 + [ sp:varName "diaBit"^^xsd:string
481 + ] ;
304 sp:predicate ddr:diaBitRef ; 482 sp:predicate ddr:diaBitRef ;
305 - sp:subject _:b65 483 + sp:subject
306 - ] [ sp:object _:b75 ; 484 + [ sp:varName "controlIncidentInfo"^^xsd:string
485 + ]
486 + ] [ sp:object
487 + [ sp:varName "uomDia"^^xsd:string
488 + ] ;
307 sp:predicate ddr:uomRef ; 489 sp:predicate ddr:uomRef ;
308 - sp:subject _:b74 490 + sp:subject
309 - ] [ sp:object _:b76 ; 491 + [ sp:varName "diaBit"^^xsd:string
492 + ]
493 + ] [ sp:object
494 + [ sp:varName "realDia"^^xsd:string
495 + ] ;
310 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 496 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
311 - sp:subject _:b74 497 + sp:subject
312 - ] [ sp:object _:b77 ; 498 + [ sp:varName "diaBit"^^xsd:string
499 + ]
500 + ] [ sp:object
501 + [ sp:varName "mdBit"^^xsd:string
502 + ] ;
313 sp:predicate ddr:mdBitRef ; 503 sp:predicate ddr:mdBitRef ;
314 - sp:subject _:b65 504 + sp:subject
315 - ] [ sp:object _:b78 ; 505 + [ sp:varName "controlIncidentInfo"^^xsd:string
506 + ]
507 + ] [ sp:object
508 + [ sp:varName "uomMdBit"^^xsd:string
509 + ] ;
316 sp:predicate ddr:uomRef ; 510 sp:predicate ddr:uomRef ;
317 - sp:subject _:b77 511 + sp:subject
318 - ] [ sp:object _:b45 ; 512 + [ sp:varName "mdBit"^^xsd:string
513 + ]
514 + ] [ sp:object
515 + [ sp:varName "realMdBit"^^xsd:string
516 + ] ;
319 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 517 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
320 - sp:subject _:b77 518 + sp:subject
321 - ] [ sp:object _:b79 ; 519 + [ sp:varName "mdBit"^^xsd:string
520 + ]
521 + ] [ sp:object
522 + [ sp:varName "wtMud"^^xsd:string
523 + ] ;
322 sp:predicate ddr:wtMudRef ; 524 sp:predicate ddr:wtMudRef ;
323 - sp:subject _:b65 525 + sp:subject
324 - ] [ sp:object _:b80 ; 526 + [ sp:varName "controlIncidentInfo"^^xsd:string
527 + ]
528 + ] [ sp:object
529 + [ sp:varName "uomWtMud"^^xsd:string
530 + ] ;
325 sp:predicate ddr:uomRef ; 531 sp:predicate ddr:uomRef ;
326 - sp:subject _:b79 532 + sp:subject
327 - ] [ sp:object _:b52 ; 533 + [ sp:varName "wtMud"^^xsd:string
534 + ]
535 + ] [ sp:object
536 + [ sp:varName "realWtMud"^^xsd:string
537 + ] ;
328 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 538 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
329 - sp:subject _:b79 539 + sp:subject
540 + [ sp:varName "wtMud"^^xsd:string
541 + ]
330 ] [ rdf:type sp:Optional ; 542 ] [ rdf:type sp:Optional ;
331 - sp:elements ([ sp:object _:b81 ; 543 + sp:elements ([ sp:object
544 + [ sp:varName "porePressure"^^xsd:string
545 + ] ;
332 sp:predicate ddr:porePressureRef ; 546 sp:predicate ddr:porePressureRef ;
333 - sp:subject _:b65 547 + sp:subject
334 - ] [ sp:object _:b82 ; 548 + [ sp:varName "controlIncidentInfo"^^xsd:string
549 + ]
550 + ] [ sp:object
551 + [ sp:varName "uomPore"^^xsd:string
552 + ] ;
335 sp:predicate ddr:uomRef ; 553 sp:predicate ddr:uomRef ;
336 - sp:subject _:b81 554 + sp:subject
337 - ] [ sp:object _:b55 ; 555 + [ sp:varName "porePressure"^^xsd:string
556 + ]
557 + ] [ sp:object
558 + [ sp:varName "realPore"^^xsd:string
559 + ] ;
338 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 560 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
339 - sp:subject _:b81 561 + sp:subject
562 + [ sp:varName "porePressure"^^xsd:string
563 + ]
340 ]) 564 ])
341 - ] [ sp:object _:b83 ; 565 + ] [ sp:object
566 + [ sp:varName "diaCsgLast"^^xsd:string
567 + ] ;
342 sp:predicate ddr:diaCsgLastRef ; 568 sp:predicate ddr:diaCsgLastRef ;
343 - sp:subject _:b65 569 + sp:subject
344 - ] [ sp:object _:b84 ; 570 + [ sp:varName "controlIncidentInfo"^^xsd:string
571 + ]
572 + ] [ sp:object
573 + [ sp:varName "uomDiaCsgLast"^^xsd:string
574 + ] ;
345 sp:predicate ddr:uomRef ; 575 sp:predicate ddr:uomRef ;
346 - sp:subject _:b83 576 + sp:subject
347 - ] [ sp:object _:b85 ; 577 + [ sp:varName "diaCsgLast"^^xsd:string
578 + ]
579 + ] [ sp:object
580 + [ sp:varName "realOd"^^xsd:string
581 + ] ;
348 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 582 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
349 - sp:subject _:b83 583 + sp:subject
350 - ] [ sp:object _:b86 ; 584 + [ sp:varName "diaCsgLast"^^xsd:string
585 + ]
586 + ] [ sp:object
587 + [ sp:varName "mdCsgLast"^^xsd:string
588 + ] ;
351 sp:predicate ddr:mdCsgLastRef ; 589 sp:predicate ddr:mdCsgLastRef ;
352 - sp:subject _:b65 590 + sp:subject
353 - ] [ sp:object _:b87 ; 591 + [ sp:varName "controlIncidentInfo"^^xsd:string
592 + ]
593 + ] [ sp:object
594 + [ sp:varName "uomMdCsgLast"^^xsd:string
595 + ] ;
354 sp:predicate ddr:uomRef ; 596 sp:predicate ddr:uomRef ;
355 - sp:subject _:b86 597 + sp:subject
356 - ] [ sp:object _:b42 ; 598 + [ sp:varName "mdCsgLast"^^xsd:string
599 + ]
600 + ] [ sp:object
601 + [ sp:varName "realMdCsgLast"^^xsd:string
602 + ] ;
357 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 603 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
358 - sp:subject _:b86 604 + sp:subject
359 - ] [ sp:object _:b88 ; 605 + [ sp:varName "mdCsgLast"^^xsd:string
606 + ]
607 + ] [ sp:object
608 + [ sp:varName "volMudGained"^^xsd:string
609 + ] ;
360 sp:predicate ddr:volMudGainedRef ; 610 sp:predicate ddr:volMudGainedRef ;
361 - sp:subject _:b65 611 + sp:subject
362 - ] [ sp:object _:b89 ; 612 + [ sp:varName "controlIncidentInfo"^^xsd:string
613 + ]
614 + ] [ sp:object
615 + [ sp:varName "uomVol"^^xsd:string
616 + ] ;
363 sp:predicate ddr:uomRef ; 617 sp:predicate ddr:uomRef ;
364 - sp:subject _:b88 618 + sp:subject
365 - ] [ sp:object _:b34 ; 619 + [ sp:varName "volMudGained"^^xsd:string
620 + ]
621 + ] [ sp:object
622 + [ sp:varName "realVol"^^xsd:string
623 + ] ;
366 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 624 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
367 - sp:subject _:b88 625 + sp:subject
368 - ] [ sp:object _:b90 ; 626 + [ sp:varName "volMudGained"^^xsd:string
627 + ]
628 + ] [ sp:object
629 + [ sp:varName "presShutInCasing"^^xsd:string
630 + ] ;
369 sp:predicate ddr:presShutInCasingRef ; 631 sp:predicate ddr:presShutInCasingRef ;
370 - sp:subject _:b65 632 + sp:subject
371 - ] [ sp:object _:b91 ; 633 + [ sp:varName "controlIncidentInfo"^^xsd:string
634 + ]
635 + ] [ sp:object
636 + [ sp:varName "uomShutInCasing"^^xsd:string
637 + ] ;
372 sp:predicate ddr:uomRef ; 638 sp:predicate ddr:uomRef ;
373 - sp:subject _:b90 639 + sp:subject
374 - ] [ sp:object _:b58 ; 640 + [ sp:varName "presShutInCasing"^^xsd:string
641 + ]
642 + ] [ sp:object
643 + [ sp:varName "realShutInCasing"^^xsd:string
644 + ] ;
375 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 645 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
376 - sp:subject _:b90 646 + sp:subject
377 - ] [ sp:object _:b92 ; 647 + [ sp:varName "presShutInCasing"^^xsd:string
648 + ]
649 + ] [ sp:object
650 + [ sp:varName "presShutInDrill"^^xsd:string
651 + ] ;
378 sp:predicate ddr:presShutInDrillRef ; 652 sp:predicate ddr:presShutInDrillRef ;
379 - sp:subject _:b65 653 + sp:subject
380 - ] [ sp:object _:b93 ; 654 + [ sp:varName "controlIncidentInfo"^^xsd:string
655 + ]
656 + ] [ sp:object
657 + [ sp:varName "uomShutInDrill"^^xsd:string
658 + ] ;
381 sp:predicate ddr:uomRef ; 659 sp:predicate ddr:uomRef ;
382 - sp:subject _:b92 660 + sp:subject
383 - ] [ sp:object _:b61 ; 661 + [ sp:varName "presShutInDrill"^^xsd:string
662 + ]
663 + ] [ sp:object
664 + [ sp:varName "realShutInDrill"^^xsd:string
665 + ] ;
384 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 666 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
385 - sp:subject _:b92 667 + sp:subject
386 - ] [ sp:object _:b94 ; 668 + [ sp:varName "presShutInDrill"^^xsd:string
669 + ]
670 + ] [ sp:object
671 + [ sp:varName "incidentType"^^xsd:string
672 + ] ;
387 sp:predicate ddr:incidentTypeRef ; 673 sp:predicate ddr:incidentTypeRef ;
388 - sp:subject _:b65 674 + sp:subject
389 - ] [ sp:object _:b95 ; 675 + [ sp:varName "controlIncidentInfo"^^xsd:string
676 + ]
677 + ] [ sp:object
678 + [ sp:varName "killingType"^^xsd:string
679 + ] ;
390 sp:predicate ddr:killingTypeRef ; 680 sp:predicate ddr:killingTypeRef ;
391 - sp:subject _:b65 681 + sp:subject
392 - ] [ sp:object _:b10 ; 682 + [ sp:varName "controlIncidentInfo"^^xsd:string
683 + ]
684 + ] [ sp:object
685 + [ sp:varName "formation"^^xsd:string
686 + ] ;
393 sp:predicate ddr:formation ; 687 sp:predicate ddr:formation ;
394 - sp:subject _:b65 688 + sp:subject
395 - ] [ sp:object _:b96 ; 689 + [ sp:varName "controlIncidentInfo"^^xsd:string
690 + ]
691 + ] [ sp:object
692 + [ sp:varName "tempBottom"^^xsd:string
693 + ] ;
396 sp:predicate ddr:tempBottomRef ; 694 sp:predicate ddr:tempBottomRef ;
397 - sp:subject _:b65 695 + sp:subject
398 - ] [ sp:object _:b97 ; 696 + [ sp:varName "controlIncidentInfo"^^xsd:string
697 + ]
698 + ] [ sp:object
699 + [ sp:varName "uomTemp"^^xsd:string
700 + ] ;
399 sp:predicate ddr:uomRef ; 701 sp:predicate ddr:uomRef ;
400 - sp:subject _:b96 702 + sp:subject
401 - ] [ sp:object _:b48 ; 703 + [ sp:varName "tempBottom"^^xsd:string
704 + ]
705 + ] [ sp:object
706 + [ sp:varName "realTemp"^^xsd:string
707 + ] ;
402 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 708 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
403 - sp:subject _:b96 709 + sp:subject
404 - ] [ sp:object _:b98 ; 710 + [ sp:varName "tempBottom"^^xsd:string
711 + ]
712 + ] [ sp:object
713 + [ sp:varName "presMaxChoke"^^xsd:string
714 + ] ;
405 sp:predicate ddr:presMaxChokeRef ; 715 sp:predicate ddr:presMaxChokeRef ;
406 - sp:subject _:b65 716 + sp:subject
407 - ] [ sp:object _:b99 ; 717 + [ sp:varName "controlIncidentInfo"^^xsd:string
718 + ]
719 + ] [ sp:object
720 + [ sp:varName "uomMaxChoke"^^xsd:string
721 + ] ;
408 sp:predicate ddr:uomRef ; 722 sp:predicate ddr:uomRef ;
409 - sp:subject _:b98 723 + sp:subject
410 - ] [ sp:object _:b27 ; 724 + [ sp:varName "presMaxChoke"^^xsd:string
725 + ]
726 + ] [ sp:object
727 + [ sp:varName "realMaxChoke"^^xsd:string
728 + ] ;
411 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 729 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
412 - sp:subject _:b98 730 + sp:subject
413 - ] [ sp:object _:b36 ; 731 + [ sp:varName "presMaxChoke"^^xsd:string
732 + ]
733 + ] [ sp:object
734 + [ sp:varName "description"^^xsd:string
735 + ] ;
414 sp:predicate ddr:description ; 736 sp:predicate ddr:description ;
415 - sp:subject _:b65 737 + sp:subject
738 + [ sp:varName "controlIncidentInfo"^^xsd:string
739 + ]
416 ] [ rdf:type sp:Bind ; 740 ] [ rdf:type sp:Bind ;
417 sp:expression 741 sp:expression
418 [ rdf:type afn:localname ; 742 [ rdf:type afn:localname ;
419 - sp:arg1 _:b65 743 + sp:arg1 [ sp:varName "controlIncidentInfo"^^xsd:string
744 + ]
420 ] ; 745 ] ;
421 - sp:variable _:b100 746 + sp:variable
747 + [ sp:varName "localname"^^xsd:string
748 + ]
422 ] [ rdf:type sp:Bind ; 749 ] [ rdf:type sp:Bind ;
423 sp:expression 750 sp:expression
424 [ rdf:type ep-spin-lib:normalizeString ; 751 [ rdf:type ep-spin-lib:normalizeString ;
425 - sp:arg1 _:b63 752 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
753 + ]
426 ] ; 754 ] ;
427 - sp:variable _:b101 755 + sp:variable
756 + [ sp:varName "normalizedWellBoreName"^^xsd:string
757 + ]
428 ] [ rdf:type sp:Bind ; 758 ] [ rdf:type sp:Bind ;
429 sp:expression 759 sp:expression
430 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; 760 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
431 - sp:arg1 _:b101 ; 761 + sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string
432 - sp:arg2 _:b64 762 + ] ;
763 + sp:arg2 [ sp:varName "dTimStart"^^xsd:string
764 + ]
433 ] ; 765 ] ;
434 - sp:variable _:b2 766 + sp:variable
767 + [ sp:varName "dailyDrillingActivity"^^xsd:string
768 + ]
435 ] [ rdf:type sp:Bind ; 769 ] [ rdf:type sp:Bind ;
436 sp:expression 770 sp:expression
437 [ rdf:type ep-spin-lib:buildWellControlIncidentURI ; 771 [ rdf:type ep-spin-lib:buildWellControlIncidentURI ;
438 - sp:arg1 _:b101 ; 772 + sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string
439 - sp:arg2 _:b64 ; 773 + ] ;
440 - sp:arg3 _:b100 774 + sp:arg2 [ sp:varName "dTimStart"^^xsd:string
775 + ] ;
776 + sp:arg3 [ sp:varName "localname"^^xsd:string
777 + ]
441 ] ; 778 ] ;
442 - sp:variable _:b1 779 + sp:variable
780 + [ sp:varName "wellControlIncident"^^xsd:string
781 + ]
443 ] [ rdf:type sp:Bind ; 782 ] [ rdf:type sp:Bind ;
444 sp:expression 783 sp:expression
445 [ rdf:type ep-spin-lib:selectDrillingActivityPurposeType ; 784 [ rdf:type ep-spin-lib:selectDrillingActivityPurposeType ;
446 - sp:arg1 _:b71 785 + sp:arg1 [ sp:varName "proprietaryCode"^^xsd:string
786 + ]
447 ] ; 787 ] ;
448 - sp:variable _:b22 788 + sp:variable
789 + [ sp:varName "drillingActivityPurposeType"^^xsd:string
790 + ]
449 ] [ rdf:type sp:Bind ; 791 ] [ rdf:type sp:Bind ;
450 sp:expression 792 sp:expression
451 [ rdf:type ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ; 793 [ rdf:type ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ;
452 - sp:arg1 _:b70 794 + sp:arg1 [ sp:varName "phase"^^xsd:string
795 + ]
453 ] ; 796 ] ;
454 - sp:variable _:b23 797 + sp:variable
798 + [ sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string
799 + ]
455 ] [ rdf:type sp:Bind ; 800 ] [ rdf:type sp:Bind ;
456 sp:expression 801 sp:expression
457 [ rdf:type ep-spin-lib:selectWellControlIncidentType ; 802 [ rdf:type ep-spin-lib:selectWellControlIncidentType ;
458 - sp:arg1 _:b94 803 + sp:arg1 [ sp:varName "incidentType"^^xsd:string
804 + ]
459 ] ; 805 ] ;
460 - sp:variable _:b20 806 + sp:variable
807 + [ sp:varName "wellControlIncidentType"^^xsd:string
808 + ]
461 ] [ rdf:type sp:Bind ; 809 ] [ rdf:type sp:Bind ;
462 sp:expression 810 sp:expression
463 [ rdf:type ep-spin-lib:selectWellKillingType ; 811 [ rdf:type ep-spin-lib:selectWellKillingType ;
464 - sp:arg1 _:b95 812 + sp:arg1 [ sp:varName "killingType"^^xsd:string
813 + ]
465 ] ; 814 ] ;
466 - sp:variable _:b32 815 + sp:variable
816 + [ sp:varName "wellKillingType"^^xsd:string
817 + ]
467 ] [ rdf:type sp:Bind ; 818 ] [ rdf:type sp:Bind ;
468 sp:expression 819 sp:expression
469 [ rdf:type ep-spin-lib:selectVolumeScale ; 820 [ rdf:type ep-spin-lib:selectVolumeScale ;
470 - sp:arg1 _:b89 821 + sp:arg1 [ sp:varName "uomVol"^^xsd:string
822 + ]
471 ] ; 823 ] ;
472 - sp:variable _:b35 824 + sp:variable
825 + [ sp:varName "volumeScale"^^xsd:string
826 + ]
473 ] [ rdf:type sp:Bind ; 827 ] [ rdf:type sp:Bind ;
474 sp:expression 828 sp:expression
475 [ rdf:type ep-spin-lib:selectTimeDurationScale ; 829 [ rdf:type ep-spin-lib:selectTimeDurationScale ;
476 - sp:arg1 _:b73 830 + sp:arg1 [ sp:varName "uomDuration"^^xsd:string
831 + ]
477 ] ; 832 ] ;
478 - sp:variable _:b19 833 + sp:variable
834 + [ sp:varName "timeDurationScale"^^xsd:string
835 + ]
479 ] [ rdf:type sp:Bind ; 836 ] [ rdf:type sp:Bind ;
480 sp:expression 837 sp:expression
481 [ rdf:type ep-spin-lib:selectLengthScale ; 838 [ rdf:type ep-spin-lib:selectLengthScale ;
482 - sp:arg1 _:b67 839 + sp:arg1 [ sp:varName "uomMdIn"^^xsd:string
840 + ]
483 ] ; 841 ] ;
484 - sp:variable _:b13 842 + sp:variable
843 + [ sp:varName "lengthScaleMdIn"^^xsd:string
844 + ]
485 ] [ rdf:type sp:Bind ; 845 ] [ rdf:type sp:Bind ;
486 sp:expression 846 sp:expression
487 [ rdf:type ep-spin-lib:selectLengthScale ; 847 [ rdf:type ep-spin-lib:selectLengthScale ;
488 - sp:arg1 _:b69 848 + sp:arg1 [ sp:varName "uomTvdIn"^^xsd:string
849 + ]
489 ] ; 850 ] ;
490 - sp:variable _:b16 851 + sp:variable
852 + [ sp:varName "lengthScaleTvdIn"^^xsd:string
853 + ]
491 ] [ rdf:type sp:Bind ; 854 ] [ rdf:type sp:Bind ;
492 sp:expression 855 sp:expression
493 [ rdf:type ep-spin-lib:selectLengthScale ; 856 [ rdf:type ep-spin-lib:selectLengthScale ;
494 - sp:arg1 _:b75 857 + sp:arg1 [ sp:varName "uomDia"^^xsd:string
858 + ]
495 ] ; 859 ] ;
496 sp:variable 860 sp:variable
497 [ sp:varName "lengthScaleDia"^^xsd:string 861 [ sp:varName "lengthScaleDia"^^xsd:string
...@@ -499,13 +863,17 @@ ddr:Obj_drillReport ...@@ -499,13 +863,17 @@ ddr:Obj_drillReport
499 ] [ rdf:type sp:Bind ; 863 ] [ rdf:type sp:Bind ;
500 sp:expression 864 sp:expression
501 [ rdf:type ep-spin-lib:selectLengthScale ; 865 [ rdf:type ep-spin-lib:selectLengthScale ;
502 - sp:arg1 _:b78 866 + sp:arg1 [ sp:varName "uomMdBit"^^xsd:string
867 + ]
503 ] ; 868 ] ;
504 - sp:variable _:b46 869 + sp:variable
870 + [ sp:varName "lengthScaleMdBit"^^xsd:string
871 + ]
505 ] [ rdf:type sp:Bind ; 872 ] [ rdf:type sp:Bind ;
506 sp:expression 873 sp:expression
507 [ rdf:type ep-spin-lib:selectLengthScale ; 874 [ rdf:type ep-spin-lib:selectLengthScale ;
508 - sp:arg1 _:b84 875 + sp:arg1 [ sp:varName "uomDiaCsgLast"^^xsd:string
876 + ]
509 ] ; 877 ] ;
510 sp:variable 878 sp:variable
511 [ sp:varName "lengthScaleDiaCsgLast"^^xsd:string 879 [ sp:varName "lengthScaleDiaCsgLast"^^xsd:string
...@@ -513,308 +881,113 @@ ddr:Obj_drillReport ...@@ -513,308 +881,113 @@ ddr:Obj_drillReport
513 ] [ rdf:type sp:Bind ; 881 ] [ rdf:type sp:Bind ;
514 sp:expression 882 sp:expression
515 [ rdf:type ep-spin-lib:selectLengthScale ; 883 [ rdf:type ep-spin-lib:selectLengthScale ;
516 - sp:arg1 _:b87 884 + sp:arg1 [ sp:varName "uomMdCsgLast"^^xsd:string
885 + ]
517 ] ; 886 ] ;
518 - sp:variable _:b43 887 + sp:variable
888 + [ sp:varName "lengthScaleMdCsgLast"^^xsd:string
889 + ]
519 ] [ rdf:type sp:Bind ; 890 ] [ rdf:type sp:Bind ;
520 sp:expression 891 sp:expression
521 [ rdf:type ep-spin-lib:selectDensityScale ; 892 [ rdf:type ep-spin-lib:selectDensityScale ;
522 - sp:arg1 _:b80 893 + sp:arg1 [ sp:varName "uomWtMud"^^xsd:string
894 + ]
523 ] ; 895 ] ;
524 - sp:variable _:b53 896 + sp:variable
897 + [ sp:varName "densityScaleWtMud"^^xsd:string
898 + ]
525 ] [ rdf:type sp:Bind ; 899 ] [ rdf:type sp:Bind ;
526 sp:expression 900 sp:expression
527 [ rdf:type ep-spin-lib:selectTemperatureScale ; 901 [ rdf:type ep-spin-lib:selectTemperatureScale ;
528 - sp:arg1 _:b97 902 + sp:arg1 [ sp:varName "uomTemp"^^xsd:string
903 + ]
529 ] ; 904 ] ;
530 - sp:variable _:b49 905 + sp:variable
906 + [ sp:varName "temperatureScale"^^xsd:string
907 + ]
531 ] [ rdf:type sp:Bind ; 908 ] [ rdf:type sp:Bind ;
532 sp:expression 909 sp:expression
533 [ rdf:type ep-spin-lib:selectPressureScale ; 910 [ rdf:type ep-spin-lib:selectPressureScale ;
534 - sp:arg1 _:b99 911 + sp:arg1 [ sp:varName "uomMaxChoke"^^xsd:string
912 + ]
535 ] ; 913 ] ;
536 - sp:variable _:b28 914 + sp:variable
915 + [ sp:varName "pressureScaleMaxChoke"^^xsd:string
916 + ]
537 ] [ rdf:type sp:Bind ; 917 ] [ rdf:type sp:Bind ;
538 sp:expression 918 sp:expression
539 [ rdf:type ep-spin-lib:selectPressureScale ; 919 [ rdf:type ep-spin-lib:selectPressureScale ;
540 - sp:arg1 _:b91 920 + sp:arg1 [ sp:varName "uomShutInCasing"^^xsd:string
921 + ]
541 ] ; 922 ] ;
542 - sp:variable _:b59 923 + sp:variable
924 + [ sp:varName "pressureScaleShutInCasing"^^xsd:string
925 + ]
543 ] [ rdf:type sp:Bind ; 926 ] [ rdf:type sp:Bind ;
544 sp:expression 927 sp:expression
545 [ rdf:type ep-spin-lib:selectPressureScale ; 928 [ rdf:type ep-spin-lib:selectPressureScale ;
546 - sp:arg1 _:b93 929 + sp:arg1 [ sp:varName "uomShutInDrill"^^xsd:string
930 + ]
547 ] ; 931 ] ;
548 - sp:variable _:b62 932 + sp:variable
933 + [ sp:varName "pressureScaleShutInDrill"^^xsd:string
934 + ]
549 ] [ rdf:type sp:Bind ; 935 ] [ rdf:type sp:Bind ;
550 sp:expression 936 sp:expression
551 [ rdf:type ep-spin-lib:selectDensityScale ; 937 [ rdf:type ep-spin-lib:selectDensityScale ;
552 - sp:arg1 _:b82 938 + sp:arg1 [ sp:varName "uomPore"^^xsd:string
939 + ]
553 ] ; 940 ] ;
554 - sp:variable _:b56 941 + sp:variable
942 + [ sp:varName "densityScalePore"^^xsd:string
943 + ]
555 ] [ rdf:type sp:Bind ; 944 ] [ rdf:type sp:Bind ;
556 sp:expression 945 sp:expression
557 [ rdf:type ep-spin-lib:normalizeDoubleName ; 946 [ rdf:type ep-spin-lib:normalizeDoubleName ;
558 - sp:arg1 _:b76 947 + sp:arg1 [ sp:varName "realDia"^^xsd:string
948 + ]
559 ] ; 949 ] ;
560 - sp:variable _:b30 950 + sp:variable
951 + [ sp:varName "diaName"^^xsd:string
952 + ]
561 ] [ rdf:type sp:Bind ; 953 ] [ rdf:type sp:Bind ;
562 sp:expression 954 sp:expression
563 [ rdf:type ep-spin-lib:buildDrillBitSizeClassURI ; 955 [ rdf:type ep-spin-lib:buildDrillBitSizeClassURI ;
564 - sp:arg1 _:b30 956 + sp:arg1 [ sp:varName "diaName"^^xsd:string
957 + ]
565 ] ; 958 ] ;
566 - sp:variable _:b29 959 + sp:variable
960 + [ sp:varName "wellBoreDrillBitSizeClass"^^xsd:string
961 + ]
567 ] [ rdf:type sp:Bind ; 962 ] [ rdf:type sp:Bind ;
568 sp:expression 963 sp:expression
569 [ rdf:type ep-spin-lib:normalizeDoubleName ; 964 [ rdf:type ep-spin-lib:normalizeDoubleName ;
570 - sp:arg1 _:b85 965 + sp:arg1 [ sp:varName "realOd"^^xsd:string
966 + ]
571 ] ; 967 ] ;
572 - sp:variable _:b40 968 + sp:variable
969 + [ sp:varName "realOdName"^^xsd:string
970 + ]
573 ] [ rdf:type sp:Bind ; 971 ] [ rdf:type sp:Bind ;
574 sp:expression 972 sp:expression
575 [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ; 973 [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ;
576 - sp:arg1 _:b40 974 + sp:arg1 [ sp:varName "realOdName"^^xsd:string
975 + ]
577 ] ; 976 ] ;
578 - sp:variable _:b39 977 + sp:variable
978 + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string
979 + ]
579 ] [ rdf:type sp:Bind ; 980 ] [ rdf:type sp:Bind ;
580 sp:expression 981 sp:expression
581 [ rdf:type rhspin:wellBoreByName ; 982 [ rdf:type rhspin:wellBoreByName ;
582 arg:wellBoreName 983 arg:wellBoreName
583 [ rdf:type xsd:string ; 984 [ rdf:type xsd:string ;
584 - sp:arg1 _:b63 985 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
986 + ]
585 ] 987 ]
586 ] ; 988 ] ;
587 - sp:variable _:b8 989 + sp:variable
990 + [ sp:varName "wellBore"^^xsd:string
991 + ]
588 ]) 992 ])
589 ] . 993 ] .
590 -
591 -_:b63
592 - sp:varName "nameWellBore"^^xsd:string .
593 -
594 -_:b64
595 - sp:varName "dTimStart"^^xsd:string .
596 -
597 -_:b2 sp:varName "dailyDrillingActivity"^^xsd:string .
598 -
599 -_:b4 sp:varName "dailytemporalPartOfAWellBore"^^xsd:string .
600 -
601 -_:b65
602 - sp:varName "controlIncidentInfo"^^xsd:string .
603 -
604 -_:b5 sp:varName "dTimStartOfIncident"^^xsd:string .
605 -
606 -_:b66
607 - sp:varName "mdIn"^^xsd:string .
608 -
609 -_:b67
610 - sp:varName "uomMdIn"^^xsd:string .
611 -
612 -_:b12
613 - sp:varName "realMdIn"^^xsd:string .
614 -
615 -_:b68
616 - sp:varName "tvdIn"^^xsd:string .
617 -
618 -_:b69
619 - sp:varName "uomTvdIn"^^xsd:string .
620 -
621 -_:b15
622 - sp:varName "realTvdIn"^^xsd:string .
623 -
624 -_:b70
625 - sp:varName "phase"^^xsd:string .
626 -
627 -_:b71
628 - sp:varName "proprietaryCode"^^xsd:string .
629 -
630 -_:b72
631 - sp:varName "eTimLost"^^xsd:string .
632 -
633 -_:b73
634 - sp:varName "uomDuration"^^xsd:string .
635 -
636 -_:b18
637 - sp:varName "realDuration"^^xsd:string .
638 -
639 -_:b6 sp:varName "dTimEndOfIncident"^^xsd:string .
640 -
641 -_:b74
642 - sp:varName "diaBit"^^xsd:string .
643 -
644 -_:b75
645 - sp:varName "uomDia"^^xsd:string .
646 -
647 -_:b76
648 - sp:varName "realDia"^^xsd:string .
649 -
650 -_:b77
651 - sp:varName "mdBit"^^xsd:string .
652 -
653 -_:b78
654 - sp:varName "uomMdBit"^^xsd:string .
655 -
656 -_:b45
657 - sp:varName "realMdBit"^^xsd:string .
658 -
659 -_:b79
660 - sp:varName "wtMud"^^xsd:string .
661 -
662 -_:b80
663 - sp:varName "uomWtMud"^^xsd:string .
664 -
665 -_:b52
666 - sp:varName "realWtMud"^^xsd:string .
667 -
668 -_:b81
669 - sp:varName "porePressure"^^xsd:string .
670 -
671 -_:b82
672 - sp:varName "uomPore"^^xsd:string .
673 -
674 -_:b55
675 - sp:varName "realPore"^^xsd:string .
676 -
677 -_:b83
678 - sp:varName "diaCsgLast"^^xsd:string .
679 -
680 -_:b84
681 - sp:varName "uomDiaCsgLast"^^xsd:string .
682 -
683 -_:b85
684 - sp:varName "realOd"^^xsd:string .
685 -
686 -_:b86
687 - sp:varName "mdCsgLast"^^xsd:string .
688 -
689 -_:b87
690 - sp:varName "uomMdCsgLast"^^xsd:string .
691 -
692 -_:b42
693 - sp:varName "realMdCsgLast"^^xsd:string .
694 -
695 -_:b88
696 - sp:varName "volMudGained"^^xsd:string .
697 -
698 -_:b89
699 - sp:varName "uomVol"^^xsd:string .
700 -
701 -_:b34
702 - sp:varName "realVol"^^xsd:string .
703 -
704 -_:b90
705 - sp:varName "presShutInCasing"^^xsd:string .
706 -
707 -_:b91
708 - sp:varName "uomShutInCasing"^^xsd:string .
709 -
710 -_:b58
711 - sp:varName "realShutInCasing"^^xsd:string .
712 -
713 -_:b92
714 - sp:varName "presShutInDrill"^^xsd:string .
715 -
716 -_:b93
717 - sp:varName "uomShutInDrill"^^xsd:string .
718 -
719 -_:b61
720 - sp:varName "realShutInDrill"^^xsd:string .
721 -
722 -_:b94
723 - sp:varName "incidentType"^^xsd:string .
724 -
725 -_:b95
726 - sp:varName "killingType"^^xsd:string .
727 -
728 -_:b10
729 - sp:varName "formation"^^xsd:string .
730 -
731 -_:b96
732 - sp:varName "tempBottom"^^xsd:string .
733 -
734 -_:b97
735 - sp:varName "uomTemp"^^xsd:string .
736 -
737 -_:b48
738 - sp:varName "realTemp"^^xsd:string .
739 -
740 -_:b98
741 - sp:varName "presMaxChoke"^^xsd:string .
742 -
743 -_:b99
744 - sp:varName "uomMaxChoke"^^xsd:string .
745 -
746 -_:b27
747 - sp:varName "realMaxChoke"^^xsd:string .
748 -
749 -_:b36
750 - sp:varName "description"^^xsd:string .
751 -
752 -_:b100
753 - sp:varName "localname"^^xsd:string .
754 -
755 -_:b101
756 - sp:varName "normalizedWellBoreName"^^xsd:string .
757 -
758 -_:b1 sp:varName "wellControlIncident"^^xsd:string .
759 -
760 -_:b22
761 - sp:varName "drillingActivityPurposeType"^^xsd:string .
762 -
763 -_:b23
764 - sp:varName "drillingActivityTypeAccordingToEquipmentType"^^xsd:string .
765 -
766 -_:b20
767 - sp:varName "wellControlIncidentType"^^xsd:string .
768 -
769 -_:b32
770 - sp:varName "wellKillingType"^^xsd:string .
771 -
772 -_:b35
773 - sp:varName "volumeScale"^^xsd:string .
774 -
775 -_:b19
776 - sp:varName "timeDurationScale"^^xsd:string .
777 -
778 -_:b13
779 - sp:varName "lengthScaleMdIn"^^xsd:string .
780 -
781 -_:b16
782 - sp:varName "lengthScaleTvdIn"^^xsd:string .
783 -
784 -_:b46
785 - sp:varName "lengthScaleMdBit"^^xsd:string .
786 -
787 -_:b43
788 - sp:varName "lengthScaleMdCsgLast"^^xsd:string .
789 -
790 -_:b53
791 - sp:varName "densityScaleWtMud"^^xsd:string .
792 -
793 -_:b49
794 - sp:varName "temperatureScale"^^xsd:string .
795 -
796 -_:b28
797 - sp:varName "pressureScaleMaxChoke"^^xsd:string .
798 -
799 -_:b59
800 - sp:varName "pressureScaleShutInCasing"^^xsd:string .
801 -
802 -_:b62
803 - sp:varName "pressureScaleShutInDrill"^^xsd:string .
804 -
805 -_:b56
806 - sp:varName "densityScalePore"^^xsd:string .
807 -
808 -_:b30
809 - sp:varName "diaName"^^xsd:string .
810 -
811 -_:b29
812 - sp:varName "wellBoreDrillBitSizeClass"^^xsd:string .
813 -
814 -_:b40
815 - sp:varName "realOdName"^^xsd:string .
816 -
817 -_:b39
818 - sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string .
819 -
820 -_:b8 sp:varName "wellBore"^^xsd:string .
......
1 -# Saved by TopBraid on Fri Oct 28 20:21:49 BST 2011
2 # baseURI: null 1 # baseURI: null
3 2
4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . 3 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
1 -# Saved by TopBraid on Fri Oct 28 10:47:48 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/fluid 1 # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/fluid
2 +# imports: http://spinrdf.org/spin
3 +# imports: http://www.reportinghub.no/ep/schema/1.0/activity
4 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/well
3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 6 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
4 # imports: http://www.witsml.org/schemas/1series 7 # imports: http://www.witsml.org/schemas/1series
5 -# imports: http://www.reportinghub.no/ep/schema/1.0/well
6 -# imports: http://www.reportinghub.no/ep/schema/1.0/activity
7 -# imports: http://spinrdf.org/spin
8 8
9 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/fluid#> . 9 @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/fluid#> .
10 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . 10 @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
21 21
22 <http://www.reportinghub.no/ep/transform/1.1/ddr/fluid> 22 <http://www.reportinghub.no/ep/transform/1.1/ddr/fluid>
23 rdf:type owl:Ontology ; 23 rdf:type owl:Ontology ;
24 - owl:imports <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://spinrdf.org/spin> ; 24 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ;
25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
26 26
27 <http://www.witsml.org/schemas/1series#Obj_drillReport> 27 <http://www.witsml.org/schemas/1series#Obj_drillReport>
...@@ -30,368 +30,438 @@ ...@@ -30,368 +30,438 @@
30 rdfs:comment "STEP 155 Fluid reading activity"^^xsd:string ; 30 rdfs:comment "STEP 155 Fluid reading activity"^^xsd:string ;
31 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#FluidReading> ; 31 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#FluidReading> ;
32 sp:predicate rdf:type ; 32 sp:predicate rdf:type ;
33 - sp:subject _:b1 33 + sp:subject
34 - ] [ sp:object _:b1 ; 34 + [ sp:varName "fluidReading"^^xsd:string
35 + ]
36 + ] [ sp:object
37 + [ sp:varName "fluidReading"^^xsd:string
38 + ] ;
35 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 39 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
36 - sp:subject _:b2 40 + sp:subject
37 - ] [ sp:object _:b3 ; 41 + [ sp:varName "dailyDrillingActivity"^^xsd:string
42 + ]
43 + ] [ sp:object _:b1 ;
38 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 44 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
39 - sp:subject _:b1 45 + sp:subject
46 + [ sp:varName "fluidReading"^^xsd:string
47 + ]
40 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; 48 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ;
41 sp:predicate rdf:type ; 49 sp:predicate rdf:type ;
42 - sp:subject _:b3 50 + sp:subject _:b1
43 - ] [ sp:object _:b4 ; 51 + ] [ sp:object _:b2 ;
44 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 52 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
45 - sp:subject _:b3 53 + sp:subject _:b1
46 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#PositionWithinWellBore> ; 54 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#PositionWithinWellBore> ;
47 sp:predicate rdf:type ; 55 sp:predicate rdf:type ;
48 - sp:subject _:b4 56 + sp:subject _:b2
49 - ] [ sp:object _:b5 ; 57 + ] [ sp:object
58 + [ sp:varName "wellBore"^^xsd:string
59 + ] ;
50 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; 60 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ;
51 - sp:subject _:b4 61 + sp:subject _:b2
52 - ] [ sp:object _:b6 ; 62 + ] [ sp:object _:b3 ;
53 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onFluid> ; 63 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onFluid> ;
54 - sp:subject _:b1 64 + sp:subject
55 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; 65 + [ sp:varName "fluidReading"^^xsd:string
66 + ]
67 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
56 sp:predicate rdf:type ; 68 sp:predicate rdf:type ;
57 - sp:subject _:b6 69 + sp:subject _:b3
58 - ] [ sp:object _:b7 ; 70 + ] [ sp:object _:b4 ;
59 sp:predicate rdf:type ; 71 sp:predicate rdf:type ;
60 - sp:subject _:b6 72 + sp:subject _:b3
61 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#FluidType> ; 73 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#FluidType> ;
62 sp:predicate rdf:type ; 74 sp:predicate rdf:type ;
63 - sp:subject _:b7 75 + sp:subject _:b4
64 - ] [ sp:object _:b8 ; 76 + ] [ sp:object
77 + [ sp:varName "type"^^xsd:string
78 + ] ;
65 sp:predicate rdfs:comment ; 79 sp:predicate rdfs:comment ;
66 - sp:subject _:b7 80 + sp:subject _:b4
67 - ] [ sp:object _:b9 ; 81 + ] [ sp:object
82 + [ sp:varName "mudClass"^^xsd:string
83 + ] ;
68 sp:predicate rdf:type ; 84 sp:predicate rdf:type ;
69 - sp:subject _:b6 85 + sp:subject _:b3
70 - ] [ sp:object _:b4 ; 86 + ] [ sp:object _:b2 ;
71 sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ; 87 sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ;
72 - sp:subject _:b6 88 + sp:subject _:b3
73 - ] [ sp:object _:b10 ; 89 + ] [ sp:object
90 + [ sp:varName "dTim"^^xsd:string
91 + ] ;
74 sp:predicate <http://www.reportinghub.no/ep/schema/activity#nominallyAt> ; 92 sp:predicate <http://www.reportinghub.no/ep/schema/activity#nominallyAt> ;
75 - sp:subject _:b1 93 + sp:subject
76 - ] [ sp:object _:b11 ; 94 + [ sp:varName "fluidReading"^^xsd:string
95 + ]
96 + ] [ sp:object _:b5 ;
77 sp:predicate rdf:type ; 97 sp:predicate rdf:type ;
78 - sp:subject _:b6 98 + sp:subject _:b3
79 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PlasticViscosity> ; 99 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PlasticViscosity> ;
80 sp:predicate rdf:type ; 100 sp:predicate rdf:type ;
81 - sp:subject _:b11 101 + sp:subject _:b5
82 - ] [ sp:object _:b12 ; 102 + ] [ sp:object
83 - sp:predicate _:b13 ; 103 + [ sp:varName "realPv"^^xsd:string
84 - sp:subject _:b11 104 + ] ;
85 - ] [ sp:object _:b14 ; 105 + sp:predicate
106 + [ sp:varName "plasticViscosityScale"^^xsd:string
107 + ] ;
108 + sp:subject _:b5
109 + ] [ sp:object _:b6 ;
86 sp:predicate rdf:type ; 110 sp:predicate rdf:type ;
87 - sp:subject _:b6 111 + sp:subject _:b3
88 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#YieldPoint> ; 112 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#YieldPoint> ;
89 sp:predicate rdf:type ; 113 sp:predicate rdf:type ;
90 - sp:subject _:b14 114 + sp:subject _:b6
91 - ] [ sp:object _:b15 ; 115 + ] [ sp:object
92 - sp:predicate _:b16 ; 116 + [ sp:varName "realYp"^^xsd:string
93 - sp:subject _:b14 117 + ] ;
94 - ] [ sp:object _:b17 ; 118 + sp:predicate
119 + [ sp:varName "yieldPointScale"^^xsd:string
120 + ] ;
121 + sp:subject _:b6
122 + ] [ sp:object _:b7 ;
95 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepth> ; 123 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepth> ;
96 - sp:subject _:b4 124 + sp:subject _:b2
97 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 125 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
98 sp:predicate rdf:type ; 126 sp:predicate rdf:type ;
99 - sp:subject _:b17 127 + sp:subject _:b7
100 - ] [ sp:object _:b18 ; 128 + ] [ sp:object
101 - sp:predicate _:b19 ; 129 + [ sp:varName "realMd"^^xsd:string
102 - sp:subject _:b17 130 + ] ;
103 - ] [ sp:object _:b20 ; 131 + sp:predicate
132 + [ sp:varName "lengthScaleMd"^^xsd:string
133 + ] ;
134 + sp:subject _:b7
135 + ] [ sp:object _:b8 ;
104 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepth> ; 136 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepth> ;
105 - sp:subject _:b4 137 + sp:subject _:b2
106 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 138 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
107 sp:predicate rdf:type ; 139 sp:predicate rdf:type ;
108 - sp:subject _:b20 140 + sp:subject _:b8
109 - ] [ sp:object _:b21 ; 141 + ] [ sp:object
110 - sp:predicate _:b22 ; 142 + [ sp:varName "realTvd"^^xsd:string
111 - sp:subject _:b20 143 + ] ;
112 - ] [ sp:object _:b23 ; 144 + sp:predicate
145 + [ sp:varName "lengthScaleTvd"^^xsd:string
146 + ] ;
147 + sp:subject _:b8
148 + ] [ sp:object _:b9 ;
113 sp:predicate rdf:type ; 149 sp:predicate rdf:type ;
114 - sp:subject _:b6 150 + sp:subject _:b3
115 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; 151 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ;
116 sp:predicate rdf:type ; 152 sp:predicate rdf:type ;
117 - sp:subject _:b23 153 + sp:subject _:b9
118 - ] [ sp:object _:b24 ; 154 + ] [ sp:object
119 - sp:predicate _:b25 ; 155 + [ sp:varName "realDensity"^^xsd:string
120 - sp:subject _:b23 156 + ] ;
157 + sp:predicate
158 + [ sp:varName "densityScale"^^xsd:string
159 + ] ;
160 + sp:subject _:b9
121 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#BlowOutPreventer> ; 161 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#BlowOutPreventer> ;
122 sp:predicate rdf:type ; 162 sp:predicate rdf:type ;
123 - sp:subject _:b26 163 + sp:subject _:b10
124 - ] [ sp:object _:b4 ; 164 + ] [ sp:object _:b2 ;
125 sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ; 165 sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ;
126 - sp:subject _:b26 166 + sp:subject _:b10
127 - ] [ sp:object _:b27 ; 167 + ] [ sp:object _:b11 ;
128 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#maximumPressureForBlowOutPreventer> ; 168 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#maximumPressureForBlowOutPreventer> ;
129 - sp:subject _:b26 169 + sp:subject _:b10
130 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 170 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
131 sp:predicate rdf:type ; 171 sp:predicate rdf:type ;
132 - sp:subject _:b27 172 + sp:subject _:b11
133 - ] [ sp:object _:b28 ; 173 + ] [ sp:object
134 - sp:predicate _:b29 ; 174 + [ sp:varName "realPressure"^^xsd:string
135 - sp:subject _:b27 175 + ] ;
176 + sp:predicate
177 + [ sp:varName "pressureScale"^^xsd:string
178 + ] ;
179 + sp:subject _:b11
136 ]) ; 180 ]) ;
137 - sp:where ([ sp:object _:b30 ; 181 + sp:where ([ sp:object
182 + [ sp:varName "nameWellBore"^^xsd:string
183 + ] ;
138 sp:predicate ep-spin-lib:nameWellbore ; 184 sp:predicate ep-spin-lib:nameWellbore ;
139 sp:subject spin:_this 185 sp:subject spin:_this
140 - ] [ sp:object _:b31 ; 186 + ] [ sp:object
187 + [ sp:varName "dTimStart"^^xsd:string
188 + ] ;
141 sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ; 189 sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ;
142 sp:subject spin:_this 190 sp:subject spin:_this
143 - ] [ sp:object _:b32 ; 191 + ] [ sp:object
192 + [ sp:varName "fluid"^^xsd:string
193 + ] ;
144 sp:predicate <http://www.witsml.org/schemas/1series#fluidRef> ; 194 sp:predicate <http://www.witsml.org/schemas/1series#fluidRef> ;
145 sp:subject spin:_this 195 sp:subject spin:_this
146 - ] [ sp:object _:b10 ; 196 + ] [ sp:object
197 + [ sp:varName "dTim"^^xsd:string
198 + ] ;
147 sp:predicate <http://www.witsml.org/schemas/1series#dTim> ; 199 sp:predicate <http://www.witsml.org/schemas/1series#dTim> ;
148 - sp:subject _:b32 200 + sp:subject
149 - ] [ sp:object _:b8 ; 201 + [ sp:varName "fluid"^^xsd:string
202 + ]
203 + ] [ sp:object
204 + [ sp:varName "type"^^xsd:string
205 + ] ;
150 sp:predicate <http://www.witsml.org/schemas/1series#type> ; 206 sp:predicate <http://www.witsml.org/schemas/1series#type> ;
151 - sp:subject _:b32 207 + sp:subject
152 - ] [ sp:object _:b33 ; 208 + [ sp:varName "fluid"^^xsd:string
209 + ]
210 + ] [ sp:object
211 + [ sp:varName "pv"^^xsd:string
212 + ] ;
153 sp:predicate <http://www.witsml.org/schemas/1series#pvRef> ; 213 sp:predicate <http://www.witsml.org/schemas/1series#pvRef> ;
154 - sp:subject _:b32 214 + sp:subject
155 - ] [ sp:object _:b34 ; 215 + [ sp:varName "fluid"^^xsd:string
216 + ]
217 + ] [ sp:object
218 + [ sp:varName "uomPv"^^xsd:string
219 + ] ;
156 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 220 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
157 - sp:subject _:b33 221 + sp:subject
158 - ] [ sp:object _:b12 ; 222 + [ sp:varName "pv"^^xsd:string
223 + ]
224 + ] [ sp:object
225 + [ sp:varName "realPv"^^xsd:string
226 + ] ;
159 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 227 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
160 - sp:subject _:b33 228 + sp:subject
161 - ] [ sp:object _:b35 ; 229 + [ sp:varName "pv"^^xsd:string
230 + ]
231 + ] [ sp:object
232 + [ sp:varName "md"^^xsd:string
233 + ] ;
162 sp:predicate <http://www.witsml.org/schemas/1series#mdRef> ; 234 sp:predicate <http://www.witsml.org/schemas/1series#mdRef> ;
163 - sp:subject _:b32 235 + sp:subject
164 - ] [ sp:object _:b36 ; 236 + [ sp:varName "fluid"^^xsd:string
237 + ]
238 + ] [ sp:object
239 + [ sp:varName "uomMd"^^xsd:string
240 + ] ;
165 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 241 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
166 - sp:subject _:b35 242 + sp:subject
167 - ] [ sp:object _:b18 ; 243 + [ sp:varName "md"^^xsd:string
244 + ]
245 + ] [ sp:object
246 + [ sp:varName "realMd"^^xsd:string
247 + ] ;
168 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 248 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
169 - sp:subject _:b35 249 + sp:subject
250 + [ sp:varName "md"^^xsd:string
251 + ]
170 ] [ rdf:type sp:Optional ; 252 ] [ rdf:type sp:Optional ;
171 - sp:elements ([ sp:object _:b37 ; 253 + sp:elements ([ sp:object
254 + [ sp:varName "mud"^^xsd:string
255 + ] ;
172 sp:predicate <http://www.witsml.org/schemas/1series#mudClassRef> ; 256 sp:predicate <http://www.witsml.org/schemas/1series#mudClassRef> ;
173 - sp:subject _:b32 257 + sp:subject
258 + [ sp:varName "fluid"^^xsd:string
259 + ]
174 ]) 260 ])
175 ] [ rdf:type sp:Optional ; 261 ] [ rdf:type sp:Optional ;
176 - sp:elements ([ sp:object _:b38 ; 262 + sp:elements ([ sp:object
263 + [ sp:varName "tvd"^^xsd:string
264 + ] ;
177 sp:predicate <http://www.witsml.org/schemas/1series#tvdRef> ; 265 sp:predicate <http://www.witsml.org/schemas/1series#tvdRef> ;
178 - sp:subject _:b32 266 + sp:subject
179 - ] [ sp:object _:b39 ; 267 + [ sp:varName "fluid"^^xsd:string
268 + ]
269 + ] [ sp:object
270 + [ sp:varName "uomTvd"^^xsd:string
271 + ] ;
180 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 272 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
181 - sp:subject _:b38 273 + sp:subject
182 - ] [ sp:object _:b21 ; 274 + [ sp:varName "tvd"^^xsd:string
275 + ]
276 + ] [ sp:object
277 + [ sp:varName "realTvd"^^xsd:string
278 + ] ;
183 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 279 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
184 - sp:subject _:b38 280 + sp:subject
281 + [ sp:varName "tvd"^^xsd:string
282 + ]
185 ]) 283 ])
186 ] [ rdf:type sp:Optional ; 284 ] [ rdf:type sp:Optional ;
187 - sp:elements ([ sp:object _:b40 ; 285 + sp:elements ([ sp:object
286 + [ sp:varName "yp"^^xsd:string
287 + ] ;
188 sp:predicate <http://www.witsml.org/schemas/1series#ypRef> ; 288 sp:predicate <http://www.witsml.org/schemas/1series#ypRef> ;
189 - sp:subject _:b32 289 + sp:subject
190 - ] [ sp:object _:b41 ; 290 + [ sp:varName "fluid"^^xsd:string
291 + ]
292 + ] [ sp:object
293 + [ sp:varName "uomYp"^^xsd:string
294 + ] ;
191 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 295 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
192 - sp:subject _:b40 296 + sp:subject
193 - ] [ sp:object _:b15 ; 297 + [ sp:varName "yp"^^xsd:string
298 + ]
299 + ] [ sp:object
300 + [ sp:varName "realYp"^^xsd:string
301 + ] ;
194 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 302 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
195 - sp:subject _:b40 303 + sp:subject
304 + [ sp:varName "yp"^^xsd:string
305 + ]
196 ]) 306 ])
197 - ] [ sp:object _:b42 ; 307 + ] [ sp:object
308 + [ sp:varName "density"^^xsd:string
309 + ] ;
198 sp:predicate <http://www.witsml.org/schemas/1series#densityRef> ; 310 sp:predicate <http://www.witsml.org/schemas/1series#densityRef> ;
199 - sp:subject _:b32 311 + sp:subject
200 - ] [ sp:object _:b43 ; 312 + [ sp:varName "fluid"^^xsd:string
313 + ]
314 + ] [ sp:object
315 + [ sp:varName "uomDensity"^^xsd:string
316 + ] ;
201 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 317 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
202 - sp:subject _:b42 318 + sp:subject
203 - ] [ sp:object _:b24 ; 319 + [ sp:varName "density"^^xsd:string
320 + ]
321 + ] [ sp:object
322 + [ sp:varName "realDensity"^^xsd:string
323 + ] ;
204 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 324 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
205 - sp:subject _:b42 325 + sp:subject
206 - ] [ sp:object _:b44 ; 326 + [ sp:varName "density"^^xsd:string
327 + ]
328 + ] [ sp:object
329 + [ sp:varName "presBopRating"^^xsd:string
330 + ] ;
207 sp:predicate <http://www.witsml.org/schemas/1series#presBopRatingRef> ; 331 sp:predicate <http://www.witsml.org/schemas/1series#presBopRatingRef> ;
208 - sp:subject _:b32 332 + sp:subject
209 - ] [ sp:object _:b45 ; 333 + [ sp:varName "fluid"^^xsd:string
334 + ]
335 + ] [ sp:object
336 + [ sp:varName "uomPressure"^^xsd:string
337 + ] ;
210 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ; 338 sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
211 - sp:subject _:b44 339 + sp:subject
212 - ] [ sp:object _:b28 ; 340 + [ sp:varName "presBopRating"^^xsd:string
341 + ]
342 + ] [ sp:object
343 + [ sp:varName "realPressure"^^xsd:string
344 + ] ;
213 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 345 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
214 - sp:subject _:b44 346 + sp:subject
347 + [ sp:varName "presBopRating"^^xsd:string
348 + ]
215 ] [ rdf:type sp:Bind ; 349 ] [ rdf:type sp:Bind ;
216 sp:expression 350 sp:expression
217 [ rdf:type ep-spin-lib:normalizeString ; 351 [ rdf:type ep-spin-lib:normalizeString ;
218 - sp:arg1 _:b30 352 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
353 + ]
219 ] ; 354 ] ;
220 - sp:variable _:b46 355 + sp:variable
356 + [ sp:varName "normalizedWellBoreName"^^xsd:string
357 + ]
221 ] [ rdf:type sp:Bind ; 358 ] [ rdf:type sp:Bind ;
222 sp:expression 359 sp:expression
223 [ rdf:type afn:localname ; 360 [ rdf:type afn:localname ;
224 - sp:arg1 _:b32 361 + sp:arg1 [ sp:varName "fluid"^^xsd:string
362 + ]
225 ] ; 363 ] ;
226 - sp:variable _:b47 364 + sp:variable
365 + [ sp:varName "localname"^^xsd:string
366 + ]
227 ] [ rdf:type sp:Bind ; 367 ] [ rdf:type sp:Bind ;
228 sp:expression 368 sp:expression
229 [ rdf:type ep-spin-lib:buildFluidReadingURI ; 369 [ rdf:type ep-spin-lib:buildFluidReadingURI ;
230 - sp:arg1 _:b46 ; 370 + sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string
231 - sp:arg2 _:b31 ; 371 + ] ;
232 - sp:arg3 _:b47 372 + sp:arg2 [ sp:varName "dTimStart"^^xsd:string
373 + ] ;
374 + sp:arg3 [ sp:varName "localname"^^xsd:string
375 + ]
233 ] ; 376 ] ;
234 - sp:variable _:b1 377 + sp:variable
378 + [ sp:varName "fluidReading"^^xsd:string
379 + ]
235 ] [ rdf:type sp:Bind ; 380 ] [ rdf:type sp:Bind ;
236 sp:expression 381 sp:expression
237 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; 382 [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
238 - sp:arg1 _:b46 ; 383 + sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string
239 - sp:arg2 _:b31 384 + ] ;
385 + sp:arg2 [ sp:varName "dTimStart"^^xsd:string
386 + ]
240 ] ; 387 ] ;
241 - sp:variable _:b2 388 + sp:variable
389 + [ sp:varName "dailyDrillingActivity"^^xsd:string
390 + ]
242 ] [ rdf:type sp:Bind ; 391 ] [ rdf:type sp:Bind ;
243 sp:expression 392 sp:expression
244 [ rdf:type ep-spin-lib:selectLengthScale ; 393 [ rdf:type ep-spin-lib:selectLengthScale ;
245 - sp:arg1 _:b36 394 + sp:arg1 [ sp:varName "uomMd"^^xsd:string
395 + ]
246 ] ; 396 ] ;
247 - sp:variable _:b19 397 + sp:variable
398 + [ sp:varName "lengthScaleMd"^^xsd:string
399 + ]
248 ] [ rdf:type sp:Bind ; 400 ] [ rdf:type sp:Bind ;
249 sp:expression 401 sp:expression
250 [ rdf:type ep-spin-lib:selectLengthScale ; 402 [ rdf:type ep-spin-lib:selectLengthScale ;
251 - sp:arg1 _:b39 403 + sp:arg1 [ sp:varName "uomTvd"^^xsd:string
404 + ]
252 ] ; 405 ] ;
253 - sp:variable _:b22 406 + sp:variable
407 + [ sp:varName "lengthScaleTvd"^^xsd:string
408 + ]
254 ] [ rdf:type sp:Bind ; 409 ] [ rdf:type sp:Bind ;
255 sp:expression 410 sp:expression
256 [ rdf:type ep-spin-lib:selectDensityScale ; 411 [ rdf:type ep-spin-lib:selectDensityScale ;
257 - sp:arg1 _:b43 412 + sp:arg1 [ sp:varName "uomDensity"^^xsd:string
413 + ]
258 ] ; 414 ] ;
259 - sp:variable _:b25 415 + sp:variable
416 + [ sp:varName "densityScale"^^xsd:string
417 + ]
260 ] [ rdf:type sp:Bind ; 418 ] [ rdf:type sp:Bind ;
261 sp:expression 419 sp:expression
262 [ rdf:type ep-spin-lib:selectPlasticViscosityScale ; 420 [ rdf:type ep-spin-lib:selectPlasticViscosityScale ;
263 - sp:arg1 _:b34 421 + sp:arg1 [ sp:varName "uomPv"^^xsd:string
422 + ]
264 ] ; 423 ] ;
265 - sp:variable _:b13 424 + sp:variable
425 + [ sp:varName "plasticViscosityScale"^^xsd:string
426 + ]
266 ] [ rdf:type sp:Bind ; 427 ] [ rdf:type sp:Bind ;
267 sp:expression 428 sp:expression
268 [ rdf:type ep-spin-lib:selectYieldPointScale ; 429 [ rdf:type ep-spin-lib:selectYieldPointScale ;
269 - sp:arg1 _:b41 430 + sp:arg1 [ sp:varName "uomYp"^^xsd:string
431 + ]
270 ] ; 432 ] ;
271 - sp:variable _:b16 433 + sp:variable
434 + [ sp:varName "yieldPointScale"^^xsd:string
435 + ]
272 ] [ rdf:type sp:Bind ; 436 ] [ rdf:type sp:Bind ;
273 sp:expression 437 sp:expression
274 [ rdf:type ep-spin-lib:selectPressureScale ; 438 [ rdf:type ep-spin-lib:selectPressureScale ;
275 - sp:arg1 _:b45 439 + sp:arg1 [ sp:varName "uomPressure"^^xsd:string
440 + ]
276 ] ; 441 ] ;
277 - sp:variable _:b29 442 + sp:variable
443 + [ sp:varName "pressureScale"^^xsd:string
444 + ]
278 ] [ rdf:type sp:Bind ; 445 ] [ rdf:type sp:Bind ;
279 sp:expression 446 sp:expression
280 [ rdf:type ep-spin-lib:selectMudClass ; 447 [ rdf:type ep-spin-lib:selectMudClass ;
281 - sp:arg1 _:b37 448 + sp:arg1 [ sp:varName "mud"^^xsd:string
449 + ]
282 ] ; 450 ] ;
283 - sp:variable _:b9 451 + sp:variable
452 + [ sp:varName "mudClass"^^xsd:string
453 + ]
284 ] [ rdf:type sp:Bind ; 454 ] [ rdf:type sp:Bind ;
285 sp:expression 455 sp:expression
286 [ rdf:type rhspin:wellBoreByName ; 456 [ rdf:type rhspin:wellBoreByName ;
287 arg:wellBoreName 457 arg:wellBoreName
288 [ rdf:type xsd:string ; 458 [ rdf:type xsd:string ;
289 - sp:arg1 _:b30 459 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
460 + ]
290 ] 461 ]
291 ] ; 462 ] ;
292 - sp:variable _:b5 463 + sp:variable
464 + [ sp:varName "wellBore"^^xsd:string
465 + ]
293 ]) 466 ])
294 ] . 467 ] .
295 -
296 -_:b30
297 - sp:varName "nameWellBore"^^xsd:string .
298 -
299 -_:b31
300 - sp:varName "dTimStart"^^xsd:string .
301 -
302 -_:b32
303 - sp:varName "fluid"^^xsd:string .
304 -
305 -_:b10
306 - sp:varName "dTim"^^xsd:string .
307 -
308 -_:b8 sp:varName "type"^^xsd:string .
309 -
310 -_:b33
311 - sp:varName "pv"^^xsd:string .
312 -
313 -_:b34
314 - sp:varName "uomPv"^^xsd:string .
315 -
316 -_:b12
317 - sp:varName "realPv"^^xsd:string .
318 -
319 -_:b35
320 - sp:varName "md"^^xsd:string .
321 -
322 -_:b36
323 - sp:varName "uomMd"^^xsd:string .
324 -
325 -_:b18
326 - sp:varName "realMd"^^xsd:string .
327 -
328 -_:b37
329 - sp:varName "mud"^^xsd:string .
330 -
331 -_:b38
332 - sp:varName "tvd"^^xsd:string .
333 -
334 -_:b39
335 - sp:varName "uomTvd"^^xsd:string .
336 -
337 -_:b21
338 - sp:varName "realTvd"^^xsd:string .
339 -
340 -_:b40
341 - sp:varName "yp"^^xsd:string .
342 -
343 -_:b41
344 - sp:varName "uomYp"^^xsd:string .
345 -
346 -_:b15
347 - sp:varName "realYp"^^xsd:string .
348 -
349 -_:b42
350 - sp:varName "density"^^xsd:string .
351 -
352 -_:b43
353 - sp:varName "uomDensity"^^xsd:string .
354 -
355 -_:b24
356 - sp:varName "realDensity"^^xsd:string .
357 -
358 -_:b44
359 - sp:varName "presBopRating"^^xsd:string .
360 -
361 -_:b45
362 - sp:varName "uomPressure"^^xsd:string .
363 -
364 -_:b28
365 - sp:varName "realPressure"^^xsd:string .
366 -
367 -_:b46
368 - sp:varName "normalizedWellBoreName"^^xsd:string .
369 -
370 -_:b47
371 - sp:varName "localname"^^xsd:string .
372 -
373 -_:b1 sp:varName "fluidReading"^^xsd:string .
374 -
375 -_:b2 sp:varName "dailyDrillingActivity"^^xsd:string .
376 -
377 -_:b19
378 - sp:varName "lengthScaleMd"^^xsd:string .
379 -
380 -_:b22
381 - sp:varName "lengthScaleTvd"^^xsd:string .
382 -
383 -_:b25
384 - sp:varName "densityScale"^^xsd:string .
385 -
386 -_:b13
387 - sp:varName "plasticViscosityScale"^^xsd:string .
388 -
389 -_:b16
390 - sp:varName "yieldPointScale"^^xsd:string .
391 -
392 -_:b29
393 - sp:varName "pressureScale"^^xsd:string .
394 -
395 -_:b9 sp:varName "mudClass"^^xsd:string .
396 -
397 -_:b5 sp:varName "wellBore"^^xsd:string .
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
2 # imports: http://spinrdf.org/spin 2 # imports: http://spinrdf.org/spin
3 # imports: http://www.reportinghub.no/ep/schema/1.0/activity 3 # imports: http://www.reportinghub.no/ep/schema/1.0/activity
4 # imports: http://www.reportinghub.no/ep/schema/1.0/core 4 # imports: http://www.reportinghub.no/ep/schema/1.0/core
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
5 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 6 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
6 # imports: http://www.witsml.org/schemas/1series 7 # imports: http://www.witsml.org/schemas/1series
7 8
...@@ -20,7 +21,7 @@ ...@@ -20,7 +21,7 @@
20 21
21 <http://www.reportinghub.no/ep/transform/1.1/ddr/formTestInfo> 22 <http://www.reportinghub.no/ep/transform/1.1/ddr/formTestInfo>
22 rdf:type owl:Ontology ; 23 rdf:type owl:Ontology ;
23 - owl:imports <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.witsml.org/schemas/1series> ; 24 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> ;
24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
25 26
26 <http://www.witsml.org/schemas/1series#Obj_drillReport> 27 <http://www.witsml.org/schemas/1series#Obj_drillReport>
...@@ -131,7 +132,7 @@ ...@@ -131,7 +132,7 @@
131 sp:subject 132 sp:subject
132 [ sp:varName "wirelineFormationTest"^^xsd:string 133 [ sp:varName "wirelineFormationTest"^^xsd:string
133 ] 134 ]
134 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; 135 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
135 sp:predicate rdf:type ; 136 sp:predicate rdf:type ;
136 sp:subject _:b7 137 sp:subject _:b7
137 ] [ sp:object 138 ] [ sp:object
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
2 # imports: http://spinrdf.org/spin 2 # imports: http://spinrdf.org/spin
3 # imports: http://www.reportinghub.no/ep/schema/1.0/activity 3 # imports: http://www.reportinghub.no/ep/schema/1.0/activity
4 # imports: http://www.reportinghub.no/ep/schema/1.0/core 4 # imports: http://www.reportinghub.no/ep/schema/1.0/core
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
5 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 6 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
6 # imports: http://www.witsml.org/schemas/1series 7 # imports: http://www.witsml.org/schemas/1series
7 8
...@@ -20,7 +21,7 @@ ...@@ -20,7 +21,7 @@
20 21
21 <http://www.reportinghub.no/ep/transform/1.1/ddr/gasReadingInfo> 22 <http://www.reportinghub.no/ep/transform/1.1/ddr/gasReadingInfo>
22 rdf:type owl:Ontology ; 23 rdf:type owl:Ontology ;
23 - owl:imports <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://spinrdf.org/spin> ; 24 + owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/schema/1.0/material> ;
24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
25 26
26 <http://www.witsml.org/schemas/1series#Obj_drillReport> 27 <http://www.witsml.org/schemas/1series#Obj_drillReport>
...@@ -127,21 +128,12 @@ ...@@ -127,21 +128,12 @@
127 ] [ sp:object _:b7 ; 128 ] [ sp:object _:b7 ;
128 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ; 129 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ;
129 sp:subject _:b1 130 sp:subject _:b1
130 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; 131 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
131 sp:predicate rdf:type ; 132 sp:predicate rdf:type ;
132 sp:subject _:b7 133 sp:subject _:b7
133 ] [ sp:object _:b8 ; 134 ] [ sp:object _:b8 ;
134 sp:predicate <http://www.reportinghub.no/ep/schema/well#gasConcentrationHigh> ; 135 sp:predicate <http://www.reportinghub.no/ep/schema/well#gasConcentrationHigh> ;
135 sp:subject _:b7 136 sp:subject _:b7
136 - ] [ sp:object _:b9 ;
137 - sp:predicate <http://www.reportinghub.no/ep/schema/well#gasConcentrationLow> ;
138 - sp:subject _:b7
139 - ] [ sp:object _:b10 ;
140 - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
141 - sp:subject _:b7
142 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Gas> ;
143 - sp:predicate rdf:type ;
144 - sp:subject _:b10
145 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ; 137 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
146 sp:predicate rdf:type ; 138 sp:predicate rdf:type ;
147 sp:subject _:b8 139 sp:subject _:b8
...@@ -152,6 +144,9 @@ ...@@ -152,6 +144,9 @@
152 [ sp:varName "concentrationScaleGasHigh"^^xsd:string 144 [ sp:varName "concentrationScaleGasHigh"^^xsd:string
153 ] ; 145 ] ;
154 sp:subject _:b8 146 sp:subject _:b8
147 + ] [ sp:object _:b9 ;
148 + sp:predicate <http://www.reportinghub.no/ep/schema/well#gasConcentrationLow> ;
149 + sp:subject _:b7
155 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ; 150 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
156 sp:predicate rdf:type ; 151 sp:predicate rdf:type ;
157 sp:subject _:b9 152 sp:subject _:b9
...@@ -162,84 +157,162 @@ ...@@ -162,84 +157,162 @@
162 [ sp:varName "concentrationScaleGasLow"^^xsd:string 157 [ sp:varName "concentrationScaleGasLow"^^xsd:string
163 ] ; 158 ] ;
164 sp:subject _:b9 159 sp:subject _:b9
165 - ] [ sp:object _:b11 ; 160 + ] [ sp:object _:b10 ;
166 - sp:predicate <http://www.reportinghub.no/ep/schema/well#methaneConcentration> ; 161 + sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
162 + sp:subject _:b7
163 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Gas> ;
164 + sp:predicate rdf:type ;
167 sp:subject _:b10 165 sp:subject _:b10
168 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ; 166 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
167 + sp:predicate rdf:type ;
168 + sp:subject _:b11
169 + ] [ sp:object _:b12 ;
170 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
171 + sp:subject _:b11
172 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Methane> ;
169 sp:predicate rdf:type ; 173 sp:predicate rdf:type ;
174 + sp:subject _:b12
175 + ] [ sp:object _:b10 ;
176 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
177 + sp:subject _:b11
178 + ] [ sp:object _:b13 ;
179 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
170 sp:subject _:b11 180 sp:subject _:b11
181 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
182 + sp:predicate rdf:type ;
183 + sp:subject _:b13
171 ] [ sp:object 184 ] [ sp:object
172 [ sp:varName "realMeth"^^xsd:string 185 [ sp:varName "realMeth"^^xsd:string
173 ] ; 186 ] ;
174 sp:predicate 187 sp:predicate
175 [ sp:varName "concentrationScaleMeth"^^xsd:string 188 [ sp:varName "concentrationScaleMeth"^^xsd:string
176 ] ; 189 ] ;
177 - sp:subject _:b11 190 + sp:subject _:b13
178 - ] [ sp:object _:b12 ; 191 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
179 - sp:predicate <http://www.reportinghub.no/ep/schema/well#ethaneConcentration> ;
180 - sp:subject _:b10
181 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
182 sp:predicate rdf:type ; 192 sp:predicate rdf:type ;
183 - sp:subject _:b12 193 + sp:subject _:b14
194 + ] [ sp:object _:b15 ;
195 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
196 + sp:subject _:b14
197 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Ethane> ;
198 + sp:predicate rdf:type ;
199 + sp:subject _:b15
200 + ] [ sp:object _:b10 ;
201 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
202 + sp:subject _:b14
203 + ] [ sp:object _:b16 ;
204 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
205 + sp:subject _:b14
206 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
207 + sp:predicate rdf:type ;
208 + sp:subject _:b16
184 ] [ sp:object 209 ] [ sp:object
185 [ sp:varName "realEth"^^xsd:string 210 [ sp:varName "realEth"^^xsd:string
186 ] ; 211 ] ;
187 sp:predicate 212 sp:predicate
188 [ sp:varName "concentrationScaleEth"^^xsd:string 213 [ sp:varName "concentrationScaleEth"^^xsd:string
189 ] ; 214 ] ;
190 - sp:subject _:b12 215 + sp:subject _:b16
191 - ] [ sp:object _:b13 ; 216 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
192 - sp:predicate <http://www.reportinghub.no/ep/schema/well#propaneConcentration> ;
193 - sp:subject _:b10
194 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
195 sp:predicate rdf:type ; 217 sp:predicate rdf:type ;
196 - sp:subject _:b13 218 + sp:subject _:b17
219 + ] [ sp:object _:b18 ;
220 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
221 + sp:subject _:b17
222 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Propane> ;
223 + sp:predicate rdf:type ;
224 + sp:subject _:b18
225 + ] [ sp:object _:b10 ;
226 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
227 + sp:subject _:b17
228 + ] [ sp:object _:b19 ;
229 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
230 + sp:subject _:b17
231 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
232 + sp:predicate rdf:type ;
233 + sp:subject _:b19
197 ] [ sp:object 234 ] [ sp:object
198 [ sp:varName "realProp"^^xsd:string 235 [ sp:varName "realProp"^^xsd:string
199 ] ; 236 ] ;
200 sp:predicate 237 sp:predicate
201 [ sp:varName "concentrationScaleProp"^^xsd:string 238 [ sp:varName "concentrationScaleProp"^^xsd:string
202 ] ; 239 ] ;
203 - sp:subject _:b13 240 + sp:subject _:b19
204 - ] [ sp:object _:b14 ; 241 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
205 - sp:predicate <http://www.reportinghub.no/ep/schema/well#isoButaneConcentration> ;
206 - sp:subject _:b10
207 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
208 sp:predicate rdf:type ; 242 sp:predicate rdf:type ;
209 - sp:subject _:b14 243 + sp:subject _:b20
244 + ] [ sp:object _:b21 ;
245 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
246 + sp:subject _:b20
247 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Isobutane> ;
248 + sp:predicate rdf:type ;
249 + sp:subject _:b21
250 + ] [ sp:object _:b10 ;
251 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
252 + sp:subject _:b20
253 + ] [ sp:object _:b22 ;
254 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
255 + sp:subject _:b20
256 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
257 + sp:predicate rdf:type ;
258 + sp:subject _:b22
210 ] [ sp:object 259 ] [ sp:object
211 [ sp:varName "realIbut"^^xsd:string 260 [ sp:varName "realIbut"^^xsd:string
212 ] ; 261 ] ;
213 sp:predicate 262 sp:predicate
214 [ sp:varName "concentrationScaleIbut"^^xsd:string 263 [ sp:varName "concentrationScaleIbut"^^xsd:string
215 ] ; 264 ] ;
216 - sp:subject _:b14 265 + sp:subject _:b22
217 - ] [ sp:object _:b15 ; 266 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
218 - sp:predicate <http://www.reportinghub.no/ep/schema/well#norButaneConcentration> ;
219 - sp:subject _:b10
220 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
221 sp:predicate rdf:type ; 267 sp:predicate rdf:type ;
222 - sp:subject _:b15 268 + sp:subject _:b23
269 + ] [ sp:object _:b24 ;
270 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
271 + sp:subject _:b23
272 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#NormalButane> ;
273 + sp:predicate rdf:type ;
274 + sp:subject _:b24
275 + ] [ sp:object _:b10 ;
276 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
277 + sp:subject _:b23
278 + ] [ sp:object _:b25 ;
279 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
280 + sp:subject _:b23
281 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
282 + sp:predicate rdf:type ;
283 + sp:subject _:b25
223 ] [ sp:object 284 ] [ sp:object
224 [ sp:varName "realNbut"^^xsd:string 285 [ sp:varName "realNbut"^^xsd:string
225 ] ; 286 ] ;
226 sp:predicate 287 sp:predicate
227 [ sp:varName "concentrationScaleNbut"^^xsd:string 288 [ sp:varName "concentrationScaleNbut"^^xsd:string
228 ] ; 289 ] ;
229 - sp:subject _:b15 290 + sp:subject _:b25
230 - ] [ sp:object _:b16 ; 291 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
231 - sp:predicate <http://www.reportinghub.no/ep/schema/well#isoPentaneConcentration> ;
232 - sp:subject _:b10
233 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
234 sp:predicate rdf:type ; 292 sp:predicate rdf:type ;
235 - sp:subject _:b16 293 + sp:subject _:b26
294 + ] [ sp:object _:b27 ;
295 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
296 + sp:subject _:b26
297 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Isopentane> ;
298 + sp:predicate rdf:type ;
299 + sp:subject _:b27
300 + ] [ sp:object _:b10 ;
301 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
302 + sp:subject _:b26
303 + ] [ sp:object _:b28 ;
304 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
305 + sp:subject _:b26
306 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
307 + sp:predicate rdf:type ;
308 + sp:subject _:b28
236 ] [ sp:object 309 ] [ sp:object
237 [ sp:varName "realIpent"^^xsd:string 310 [ sp:varName "realIpent"^^xsd:string
238 ] ; 311 ] ;
239 sp:predicate 312 sp:predicate
240 [ sp:varName "concentrationScaleIpent"^^xsd:string 313 [ sp:varName "concentrationScaleIpent"^^xsd:string
241 ] ; 314 ] ;
242 - sp:subject _:b16 315 + sp:subject _:b28
243 ]) ; 316 ]) ;
244 sp:where ([ sp:object 317 sp:where ([ sp:object
245 [ sp:varName "nameWellBore"^^xsd:string 318 [ sp:varName "nameWellBore"^^xsd:string
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
2 # imports: http://spinrdf.org/spin 2 # imports: http://spinrdf.org/spin
3 # imports: http://www.reportinghub.no/ep/schema/1.0/activity 3 # imports: http://www.reportinghub.no/ep/schema/1.0/activity
4 # imports: http://www.reportinghub.no/ep/schema/1.0/core 4 # imports: http://www.reportinghub.no/ep/schema/1.0/core
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/material
5 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 6 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
6 # imports: http://www.witsml.org/schemas/1series 7 # imports: http://www.witsml.org/schemas/1series
7 8
...@@ -20,13 +21,254 @@ ...@@ -20,13 +21,254 @@
20 21
21 <http://www.reportinghub.no/ep/transform/1.1/ddr/wellTestInfo> 22 <http://www.reportinghub.no/ep/transform/1.1/ddr/wellTestInfo>
22 rdf:type owl:Ontology ; 23 rdf:type owl:Ontology ;
23 - owl:imports <http://www.witsml.org/schemas/1series> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://spinrdf.org/spin> ; 24 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/activity> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ;
24 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
25 26
26 <http://www.witsml.org/schemas/1series#Obj_drillReport> 27 <http://www.witsml.org/schemas/1series#Obj_drillReport>
27 spin:rule 28 spin:rule
28 [ rdf:type sp:Construct ; 29 [ rdf:type sp:Construct ;
29 - rdfs:comment "STEP 210 Create WellTest activity"^^xsd:string ; 30 + rdfs:comment "STEP 210b Create WellTest activity"^^xsd:string ;
31 + sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
32 + sp:predicate rdf:type ;
33 + sp:subject _:b1
34 + ] [ sp:object
35 + [ sp:varName "gas"^^xsd:string
36 + ] ;
37 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
38 + sp:subject _:b1
39 + ] [ sp:object _:b2 ;
40 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
41 + sp:subject _:b1
42 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Chloride> ;
43 + sp:predicate rdf:type ;
44 + sp:subject _:b2
45 + ] [ sp:object _:b3 ;
46 + sp:predicate <http://www.reportinghub.no/ep/schema/material#massRatio> ;
47 + sp:subject _:b1
48 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
49 + sp:predicate rdf:type ;
50 + sp:subject _:b3
51 + ] [ sp:object
52 + [ sp:varName "realChloride"^^xsd:string
53 + ] ;
54 + sp:predicate
55 + [ sp:varName "chlorideMassConcentrationScale"^^xsd:string
56 + ] ;
57 + sp:subject _:b3
58 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
59 + sp:predicate rdf:type ;
60 + sp:subject _:b4
61 + ] [ sp:object
62 + [ sp:varName "gas"^^xsd:string
63 + ] ;
64 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
65 + sp:subject _:b4
66 + ] [ sp:object _:b5 ;
67 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
68 + sp:subject _:b4
69 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#CarbonDioxide> ;
70 + sp:predicate rdf:type ;
71 + sp:subject _:b5
72 + ] [ sp:object _:b6 ;
73 + sp:predicate <http://www.reportinghub.no/ep/schema/material#massRatio> ;
74 + sp:subject _:b4
75 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
76 + sp:predicate rdf:type ;
77 + sp:subject _:b6
78 + ] [ sp:object
79 + [ sp:varName "realCarbonDioxide"^^xsd:string
80 + ] ;
81 + sp:predicate
82 + [ sp:varName "carbonDioxideMassConcentrationScale"^^xsd:string
83 + ] ;
84 + sp:subject _:b6
85 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
86 + sp:predicate rdf:type ;
87 + sp:subject _:b7
88 + ] [ sp:object
89 + [ sp:varName "gas"^^xsd:string
90 + ] ;
91 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
92 + sp:subject _:b7
93 + ] [ sp:object _:b8 ;
94 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
95 + sp:subject _:b7
96 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#HydrogenSulfide> ;
97 + sp:predicate rdf:type ;
98 + sp:subject _:b8
99 + ] [ sp:object _:b9 ;
100 + sp:predicate <http://www.reportinghub.no/ep/schema/material#massRatio> ;
101 + sp:subject _:b7
102 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
103 + sp:predicate rdf:type ;
104 + sp:subject _:b9
105 + ] [ sp:object
106 + [ sp:varName "realHydrogenSulfide"^^xsd:string
107 + ] ;
108 + sp:predicate
109 + [ sp:varName "hydrogenSulfideMassConcentrationScale"^^xsd:string
110 + ] ;
111 + sp:subject _:b9
112 + ]) ;
113 + sp:where ([ sp:object
114 + [ sp:varName "fluid"^^xsd:string
115 + ] ;
116 + sp:predicate <http://www.reportinghub.no/ep/schema/activity#fluidProducedByWellTest> ;
117 + sp:subject
118 + [ sp:varName "wellTest"^^xsd:string
119 + ]
120 + ] [ sp:object
121 + [ sp:varName "gas"^^xsd:string
122 + ] ;
123 + sp:predicate <http://www.reportinghub.no/ep/schema/material#hasComponent> ;
124 + sp:subject
125 + [ sp:varName "fluid"^^xsd:string
126 + ]
127 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Gas> ;
128 + sp:predicate rdf:type ;
129 + sp:subject
130 + [ sp:varName "gas"^^xsd:string
131 + ]
132 + ] [ sp:object
133 + [ sp:varName "nameWellBore"^^xsd:string
134 + ] ;
135 + sp:predicate ep-spin-lib:nameWellbore ;
136 + sp:subject spin:_this
137 + ] [ sp:object
138 + [ sp:varName "dTimStart"^^xsd:string
139 + ] ;
140 + sp:predicate <http://www.witsml.org/schemas/1series#dTimStart> ;
141 + sp:subject spin:_this
142 + ] [ sp:object
143 + [ sp:varName "wellTestInfo"^^xsd:string
144 + ] ;
145 + sp:predicate <http://www.witsml.org/schemas/1series#wellTestInfoRef> ;
146 + sp:subject spin:_this
147 + ] [ sp:object
148 + [ sp:varName "chlorideRef"^^xsd:string
149 + ] ;
150 + sp:predicate <http://www.witsml.org/schemas/1series#chlorideRef> ;
151 + sp:subject
152 + [ sp:varName "wellTestInfo"^^xsd:string
153 + ]
154 + ] [ sp:object
155 + [ sp:varName "uomChloride"^^xsd:string
156 + ] ;
157 + sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
158 + sp:subject
159 + [ sp:varName "chlorideRef"^^xsd:string
160 + ]
161 + ] [ sp:object
162 + [ sp:varName "realChloride"^^xsd:string
163 + ] ;
164 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
165 + sp:subject
166 + [ sp:varName "chlorideRef"^^xsd:string
167 + ]
168 + ] [ sp:object
169 + [ sp:varName "carbonDioxideRef"^^xsd:string
170 + ] ;
171 + sp:predicate <http://www.witsml.org/schemas/1series#carbonDioxideRef> ;
172 + sp:subject
173 + [ sp:varName "wellTestInfo"^^xsd:string
174 + ]
175 + ] [ sp:object
176 + [ sp:varName "uomCarbonDioxide"^^xsd:string
177 + ] ;
178 + sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
179 + sp:subject
180 + [ sp:varName "carbonDioxideRef"^^xsd:string
181 + ]
182 + ] [ sp:object
183 + [ sp:varName "realCarbonDioxide"^^xsd:string
184 + ] ;
185 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
186 + sp:subject
187 + [ sp:varName "carbonDioxideRef"^^xsd:string
188 + ]
189 + ] [ sp:object
190 + [ sp:varName "hydrogenSulfide"^^xsd:string
191 + ] ;
192 + sp:predicate <http://www.witsml.org/schemas/1series#hydrogenSulfideRef> ;
193 + sp:subject
194 + [ sp:varName "wellTestInfo"^^xsd:string
195 + ]
196 + ] [ sp:object
197 + [ sp:varName "uomHydrogenSulfide"^^xsd:string
198 + ] ;
199 + sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
200 + sp:subject
201 + [ sp:varName "hydrogenSulfide"^^xsd:string
202 + ]
203 + ] [ sp:object
204 + [ sp:varName "realHydrogenSulfide"^^xsd:string
205 + ] ;
206 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
207 + sp:subject
208 + [ sp:varName "hydrogenSulfide"^^xsd:string
209 + ]
210 + ] [ rdf:type sp:Bind ;
211 + sp:expression
212 + [ rdf:type ep-spin-lib:normalizeString ;
213 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
214 + ]
215 + ] ;
216 + sp:variable
217 + [ sp:varName "normalizedWellBoreName"^^xsd:string
218 + ]
219 + ] [ rdf:type sp:Bind ;
220 + sp:expression
221 + [ rdf:type afn:localname ;
222 + sp:arg1 [ sp:varName "wellTestInfo"^^xsd:string
223 + ]
224 + ] ;
225 + sp:variable
226 + [ sp:varName "localname"^^xsd:string
227 + ]
228 + ] [ rdf:type sp:Bind ;
229 + sp:expression
230 + [ rdf:type ep-spin-lib:selectMassPerUnitMassConcentrationScale ;
231 + sp:arg1 [ sp:varName "uomChloride"^^xsd:string
232 + ]
233 + ] ;
234 + sp:variable
235 + [ sp:varName "chlorideMassConcentrationScale"^^xsd:string
236 + ]
237 + ] [ rdf:type sp:Bind ;
238 + sp:expression
239 + [ rdf:type ep-spin-lib:selectMassPerUnitMassConcentrationScale ;
240 + sp:arg1 [ sp:varName "uomCarbonDioxide"^^xsd:string
241 + ]
242 + ] ;
243 + sp:variable
244 + [ sp:varName "carbonDioxideMassConcentrationScale"^^xsd:string
245 + ]
246 + ] [ rdf:type sp:Bind ;
247 + sp:expression
248 + [ rdf:type ep-spin-lib:selectMassPerUnitMassConcentrationScale ;
249 + sp:arg1 [ sp:varName "uomHydrogenSulfide"^^xsd:string
250 + ]
251 + ] ;
252 + sp:variable
253 + [ sp:varName "hydrogenSulfideMassConcentrationScale"^^xsd:string
254 + ]
255 + ] [ rdf:type sp:Bind ;
256 + sp:expression
257 + [ rdf:type rhspin:wellBoreByName ;
258 + arg:wellBoreName
259 + [ rdf:type xsd:string ;
260 + sp:arg1 [ sp:varName "nameWellBore"^^xsd:string
261 + ]
262 + ]
263 + ] ;
264 + sp:variable
265 + [ sp:varName "wellBore"^^xsd:string
266 + ]
267 + ])
268 + ] ;
269 + spin:rule
270 + [ rdf:type sp:Construct ;
271 + rdfs:comment "STEP 210a Create WellTest activity"^^xsd:string ;
30 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellTest> ; 272 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellTest> ;
31 sp:predicate rdf:type ; 273 sp:predicate rdf:type ;
32 sp:subject 274 sp:subject
...@@ -39,25 +281,25 @@ ...@@ -39,25 +281,25 @@
39 sp:subject 281 sp:subject
40 [ sp:varName "dailyDrillingActivity"^^xsd:string 282 [ sp:varName "dailyDrillingActivity"^^xsd:string
41 ] 283 ]
42 - ] [ sp:object _:b1 ; 284 + ] [ sp:object _:b10 ;
43 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; 285 sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
44 sp:subject 286 sp:subject
45 [ sp:varName "wellTest"^^xsd:string 287 [ sp:varName "wellTest"^^xsd:string
46 ] 288 ]
47 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; 289 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ;
48 sp:predicate rdf:type ; 290 sp:predicate rdf:type ;
49 - sp:subject _:b1 291 + sp:subject _:b10
50 - ] [ sp:object _:b2 ; 292 + ] [ sp:object _:b11 ;
51 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 293 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
52 - sp:subject _:b1 294 + sp:subject _:b10
53 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; 295 ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ;
54 sp:predicate rdf:type ; 296 sp:predicate rdf:type ;
55 - sp:subject _:b2 297 + sp:subject _:b11
56 ] [ sp:object 298 ] [ sp:object
57 [ sp:varName "wellBore"^^xsd:string 299 [ sp:varName "wellBore"^^xsd:string
58 ] ; 300 ] ;
59 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; 301 sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ;
60 - sp:subject _:b2 302 + sp:subject _:b11
61 ] [ sp:object 303 ] [ sp:object
62 [ sp:varName "wellTestType"^^xsd:string 304 [ sp:varName "wellTestType"^^xsd:string
63 ] ; 305 ] ;
...@@ -79,353 +321,333 @@ ...@@ -79,353 +321,333 @@
79 sp:subject 321 sp:subject
80 [ sp:varName "wellTest"^^xsd:string 322 [ sp:varName "wellTest"^^xsd:string
81 ] 323 ]
82 - ] [ sp:object _:b3 ; 324 + ] [ sp:object _:b12 ;
83 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; 325 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ;
84 - sp:subject _:b2 326 + sp:subject _:b11
85 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 327 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
86 sp:predicate rdf:type ; 328 sp:predicate rdf:type ;
87 - sp:subject _:b3 329 + sp:subject _:b12
88 ] [ sp:object 330 ] [ sp:object
89 [ sp:varName "realMdTop"^^xsd:string 331 [ sp:varName "realMdTop"^^xsd:string
90 ] ; 332 ] ;
91 sp:predicate 333 sp:predicate
92 [ sp:varName "lengthScaleMdTop"^^xsd:string 334 [ sp:varName "lengthScaleMdTop"^^xsd:string
93 ] ; 335 ] ;
94 - sp:subject _:b3 336 + sp:subject _:b12
95 - ] [ sp:object _:b4 ; 337 + ] [ sp:object _:b13 ;
96 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; 338 sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ;
97 - sp:subject _:b2 339 + sp:subject _:b11
98 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 340 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
99 sp:predicate rdf:type ; 341 sp:predicate rdf:type ;
100 - sp:subject _:b4 342 + sp:subject _:b13
101 ] [ sp:object 343 ] [ sp:object
102 [ sp:varName "realMdBottom"^^xsd:string 344 [ sp:varName "realMdBottom"^^xsd:string
103 ] ; 345 ] ;
104 sp:predicate 346 sp:predicate
105 [ sp:varName "lengthScaleMdBottom"^^xsd:string 347 [ sp:varName "lengthScaleMdBottom"^^xsd:string
106 ] ; 348 ] ;
107 - sp:subject _:b4 349 + sp:subject _:b13
108 - ] [ sp:object _:b5 ; 350 + ] [ sp:object _:b14 ;
109 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheTopOfAPartOfAWellBore> ; 351 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheTopOfAPartOfAWellBore> ;
110 - sp:subject _:b2 352 + sp:subject _:b11
111 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 353 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
112 sp:predicate rdf:type ; 354 sp:predicate rdf:type ;
113 - sp:subject _:b5 355 + sp:subject _:b14
114 ] [ sp:object 356 ] [ sp:object
115 [ sp:varName "realTvdTop"^^xsd:string 357 [ sp:varName "realTvdTop"^^xsd:string
116 ] ; 358 ] ;
117 sp:predicate 359 sp:predicate
118 [ sp:varName "lengthScaleTvdTop"^^xsd:string 360 [ sp:varName "lengthScaleTvdTop"^^xsd:string
119 ] ; 361 ] ;
120 - sp:subject _:b5 362 + sp:subject _:b14
121 - ] [ sp:object _:b6 ; 363 + ] [ sp:object _:b15 ;
122 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheBottomOfAPartOfAWellBore> ; 364 sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheBottomOfAPartOfAWellBore> ;
123 - sp:subject _:b2 365 + sp:subject _:b11
124 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 366 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
125 sp:predicate rdf:type ; 367 sp:predicate rdf:type ;
126 - sp:subject _:b6 368 + sp:subject _:b15
127 ] [ sp:object 369 ] [ sp:object
128 [ sp:varName "realTvdBottom"^^xsd:string 370 [ sp:varName "realTvdBottom"^^xsd:string
129 ] ; 371 ] ;
130 sp:predicate 372 sp:predicate
131 [ sp:varName "lengthScaleTvdBottom"^^xsd:string 373 [ sp:varName "lengthScaleTvdBottom"^^xsd:string
132 ] ; 374 ] ;
133 - sp:subject _:b6 375 + sp:subject _:b15
134 - ] [ sp:object _:b7 ; 376 + ] [ sp:object _:b16 ;
135 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasWellTestChoke> ; 377 sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasWellTestChoke> ;
136 sp:subject 378 sp:subject
137 [ sp:varName "wellTest"^^xsd:string 379 [ sp:varName "wellTest"^^xsd:string
138 ] 380 ]
139 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#WellTestChoke> ; 381 ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#WellTestChoke> ;
140 sp:predicate rdf:type ; 382 sp:predicate rdf:type ;
141 - sp:subject _:b7 383 + sp:subject _:b16
142 - ] [ sp:object _:b8 ; 384 + ] [ sp:object _:b17 ;
143 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#chokeOrificeSize> ; 385 sp:predicate <http://www.reportinghub.no/ep/schema/equipment#chokeOrificeSize> ;
144 - sp:subject _:b7 386 + sp:subject _:b16
145 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; 387 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ;
146 sp:predicate rdf:type ; 388 sp:predicate rdf:type ;
147 - sp:subject _:b8 389 + sp:subject _:b17
148 ] [ sp:object 390 ] [ sp:object
149 [ sp:varName "realOrifice"^^xsd:string 391 [ sp:varName "realOrifice"^^xsd:string
150 ] ; 392 ] ;
151 sp:predicate 393 sp:predicate
152 [ sp:varName "lengthScaleOrifice"^^xsd:string 394 [ sp:varName "lengthScaleOrifice"^^xsd:string
153 ] ; 395 ] ;
154 - sp:subject _:b8 396 + sp:subject _:b17
155 - ] [ sp:object _:b9 ; 397 + ] [ sp:object _:b18 ;
156 sp:predicate <http://www.reportinghub.no/ep/schema/activity#fluidProducedByWellTest> ; 398 sp:predicate <http://www.reportinghub.no/ep/schema/activity#fluidProducedByWellTest> ;
157 sp:subject 399 sp:subject
158 [ sp:varName "wellTest"^^xsd:string 400 [ sp:varName "wellTest"^^xsd:string
159 ] 401 ]
160 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; 402 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
161 sp:predicate rdf:type ; 403 sp:predicate rdf:type ;
162 - sp:subject _:b9 404 + sp:subject _:b18
163 - ] [ sp:object _:b10 ; 405 + ] [ sp:object _:b19 ;
164 - sp:predicate <http://www.reportinghub.no/ep/schema/well#waterOilRatio> ; 406 + sp:predicate <http://www.reportinghub.no/ep/schema/material#hasComponent> ;
165 - sp:subject _:b9 407 + sp:subject _:b18
166 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ; 408 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Water> ;
167 sp:predicate rdf:type ; 409 sp:predicate rdf:type ;
168 - sp:subject _:b10 410 + sp:subject _:b19
411 + ] [ sp:object _:b20 ;
412 + sp:predicate <http://www.reportinghub.no/ep/schema/material#hasComponent> ;
413 + sp:subject _:b18
414 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Oil> ;
415 + sp:predicate rdf:type ;
416 + sp:subject _:b20
417 + ] [ sp:object _:b21 ;
418 + sp:predicate <http://www.reportinghub.no/ep/schema/material#hasComponent> ;
419 + sp:subject _:b18
420 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Gas> ;
421 + sp:predicate rdf:type ;
422 + sp:subject _:b21
423 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPair> ;
424 + sp:predicate rdf:type ;
425 + sp:subject _:b22
426 + ] [ sp:object _:b19 ;
427 + sp:predicate <http://www.reportinghub.no/ep/schema/material#firstMaterialOfPair> ;
428 + sp:subject _:b22
429 + ] [ sp:object _:b20 ;
430 + sp:predicate <http://www.reportinghub.no/ep/schema/material#secondMaterialOfPair> ;
431 + sp:subject _:b22
432 + ] [ sp:object _:b23 ;
433 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
434 + sp:subject _:b22
435 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
436 + sp:predicate rdf:type ;
437 + sp:subject _:b23
169 ] [ sp:object 438 ] [ sp:object
170 [ sp:varName "realWaterOil"^^xsd:string 439 [ sp:varName "realWaterOil"^^xsd:string
171 ] ; 440 ] ;
172 sp:predicate 441 sp:predicate
173 [ sp:varName "specificVolumeScaleWaterOil"^^xsd:string 442 [ sp:varName "specificVolumeScaleWaterOil"^^xsd:string
174 ] ; 443 ] ;
175 - sp:subject _:b10 444 + sp:subject _:b23
176 - ] [ sp:object _:b11 ; 445 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPair> ;
177 - sp:predicate <http://www.reportinghub.no/ep/schema/well#gasOilRatio> ;
178 - sp:subject _:b9
179 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumePerUnitVolumeConcentration> ;
180 sp:predicate rdf:type ; 446 sp:predicate rdf:type ;
181 - sp:subject _:b11 447 + sp:subject _:b24
448 + ] [ sp:object _:b21 ;
449 + sp:predicate <http://www.reportinghub.no/ep/schema/material#firstMaterialOfPair> ;
450 + sp:subject _:b24
451 + ] [ sp:object _:b20 ;
452 + sp:predicate <http://www.reportinghub.no/ep/schema/material#secondMaterialOfPair> ;
453 + sp:subject _:b24
454 + ] [ sp:object _:b25 ;
455 + sp:predicate <http://www.reportinghub.no/ep/schema/material#volumeRatio> ;
456 + sp:subject _:b24
457 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
458 + sp:predicate rdf:type ;
459 + sp:subject _:b25
182 ] [ sp:object 460 ] [ sp:object
183 [ sp:varName "realGasOil"^^xsd:string 461 [ sp:varName "realGasOil"^^xsd:string
184 ] ; 462 ] ;
185 sp:predicate 463 sp:predicate
186 [ sp:varName "specificVolumeScaleGasOil"^^xsd:string 464 [ sp:varName "specificVolumeScaleGasOil"^^xsd:string
187 ] ; 465 ] ;
188 - sp:subject _:b11 466 + sp:subject _:b25
189 - ] [ sp:object _:b12 ; 467 + ] [ sp:object _:b26 ;
190 - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
191 - sp:subject _:b9
192 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Water> ;
193 - sp:predicate rdf:type ;
194 - sp:subject _:b12
195 - ] [ sp:object _:b13 ;
196 sp:predicate rdf:type ; 468 sp:predicate rdf:type ;
197 - sp:subject _:b12 469 + sp:subject _:b19
198 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; 470 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ;
199 sp:predicate rdf:type ; 471 sp:predicate rdf:type ;
200 - sp:subject _:b13 472 + sp:subject _:b26
201 ] [ sp:object 473 ] [ sp:object
202 [ sp:varName "realDensityWater"^^xsd:string 474 [ sp:varName "realDensityWater"^^xsd:string
203 ] ; 475 ] ;
204 sp:predicate 476 sp:predicate
205 [ sp:varName "densityScaleWater"^^xsd:string 477 [ sp:varName "densityScaleWater"^^xsd:string
206 ] ; 478 ] ;
207 - sp:subject _:b13 479 + sp:subject _:b26
208 - ] [ sp:object _:b14 ; 480 + ] [ sp:object _:b27 ;
209 sp:predicate rdf:type ; 481 sp:predicate rdf:type ;
210 - sp:subject _:b12 482 + sp:subject _:b19
211 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumetricFlowRate> ; 483 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumetricFlowRate> ;
212 sp:predicate rdf:type ; 484 sp:predicate rdf:type ;
213 - sp:subject _:b14 485 + sp:subject _:b27
214 ] [ sp:object 486 ] [ sp:object
215 [ sp:varName "realFlowRateWater"^^xsd:string 487 [ sp:varName "realFlowRateWater"^^xsd:string
216 ] ; 488 ] ;
217 sp:predicate 489 sp:predicate
218 [ sp:varName "volumetricFlowRateScaleWater"^^xsd:string 490 [ sp:varName "volumetricFlowRateScaleWater"^^xsd:string
219 ] ; 491 ] ;
220 - sp:subject _:b14 492 + sp:subject _:b27
221 - ] [ sp:object _:b15 ; 493 + ] [ sp:object _:b28 ;
222 sp:predicate rdf:type ; 494 sp:predicate rdf:type ;
223 - sp:subject _:b12 495 + sp:subject _:b19
224 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; 496 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ;
225 sp:predicate rdf:type ; 497 sp:predicate rdf:type ;
226 - sp:subject _:b15 498 + sp:subject _:b28
227 ] [ sp:object 499 ] [ sp:object
228 [ sp:varName "realVolumeWater"^^xsd:string 500 [ sp:varName "realVolumeWater"^^xsd:string
229 ] ; 501 ] ;
230 sp:predicate 502 sp:predicate
231 [ sp:varName "volumeScaleWater"^^xsd:string 503 [ sp:varName "volumeScaleWater"^^xsd:string
232 ] ; 504 ] ;
233 - sp:subject _:b15 505 + sp:subject _:b28
234 - ] [ sp:object _:b16 ; 506 + ] [ sp:object _:b29 ;
235 - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
236 - sp:subject _:b9
237 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Oil> ;
238 - sp:predicate rdf:type ;
239 - sp:subject _:b16
240 - ] [ sp:object _:b17 ;
241 sp:predicate rdf:type ; 507 sp:predicate rdf:type ;
242 - sp:subject _:b16 508 + sp:subject _:b20
243 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; 509 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ;
244 sp:predicate rdf:type ; 510 sp:predicate rdf:type ;
245 - sp:subject _:b17 511 + sp:subject _:b29
246 ] [ sp:object 512 ] [ sp:object
247 [ sp:varName "realDensityOil"^^xsd:string 513 [ sp:varName "realDensityOil"^^xsd:string
248 ] ; 514 ] ;
249 sp:predicate 515 sp:predicate
250 [ sp:varName "densityScaleOil"^^xsd:string 516 [ sp:varName "densityScaleOil"^^xsd:string
251 ] ; 517 ] ;
252 - sp:subject _:b17 518 + sp:subject _:b29
253 - ] [ sp:object _:b18 ; 519 + ] [ sp:object _:b30 ;
254 sp:predicate rdf:type ; 520 sp:predicate rdf:type ;
255 - sp:subject _:b16 521 + sp:subject _:b20
256 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumetricFlowRate> ; 522 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumetricFlowRate> ;
257 sp:predicate rdf:type ; 523 sp:predicate rdf:type ;
258 - sp:subject _:b18 524 + sp:subject _:b30
259 ] [ sp:object 525 ] [ sp:object
260 [ sp:varName "realFlowRateOil"^^xsd:string 526 [ sp:varName "realFlowRateOil"^^xsd:string
261 ] ; 527 ] ;
262 sp:predicate 528 sp:predicate
263 [ sp:varName "volumetricFlowRateScaleOil"^^xsd:string 529 [ sp:varName "volumetricFlowRateScaleOil"^^xsd:string
264 ] ; 530 ] ;
265 - sp:subject _:b18 531 + sp:subject _:b30
266 - ] [ sp:object _:b19 ; 532 + ] [ sp:object _:b31 ;
267 sp:predicate rdf:type ; 533 sp:predicate rdf:type ;
268 - sp:subject _:b16 534 + sp:subject
535 + []
269 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; 536 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ;
270 sp:predicate rdf:type ; 537 sp:predicate rdf:type ;
271 - sp:subject _:b19 538 + sp:subject _:b31
272 ] [ sp:object 539 ] [ sp:object
273 [ sp:varName "realVolumeOil"^^xsd:string 540 [ sp:varName "realVolumeOil"^^xsd:string
274 ] ; 541 ] ;
275 sp:predicate 542 sp:predicate
276 [ sp:varName "volumeScaleOil"^^xsd:string 543 [ sp:varName "volumeScaleOil"^^xsd:string
277 ] ; 544 ] ;
278 - sp:subject _:b19 545 + sp:subject _:b31
279 - ] [ sp:object _:b20 ; 546 + ] [ sp:object _:b32 ;
280 - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
281 - sp:subject _:b9
282 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Gas> ;
283 - sp:predicate rdf:type ;
284 - sp:subject _:b20
285 - ] [ sp:object _:b21 ;
286 sp:predicate rdf:type ; 547 sp:predicate rdf:type ;
287 - sp:subject _:b20 548 + sp:subject _:b21
288 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; 549 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ;
289 sp:predicate rdf:type ; 550 sp:predicate rdf:type ;
290 - sp:subject _:b21 551 + sp:subject _:b32
291 ] [ sp:object 552 ] [ sp:object
292 [ sp:varName "realDensityGas"^^xsd:string 553 [ sp:varName "realDensityGas"^^xsd:string
293 ] ; 554 ] ;
294 sp:predicate 555 sp:predicate
295 [ sp:varName "densityScaleGas"^^xsd:string 556 [ sp:varName "densityScaleGas"^^xsd:string
296 ] ; 557 ] ;
297 - sp:subject _:b21 558 + sp:subject _:b32
298 - ] [ sp:object _:b22 ; 559 + ] [ sp:object _:b33 ;
299 sp:predicate rdf:type ; 560 sp:predicate rdf:type ;
300 - sp:subject _:b20 561 + sp:subject _:b21
301 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumetricFlowRate> ; 562 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#VolumetricFlowRate> ;
302 sp:predicate rdf:type ; 563 sp:predicate rdf:type ;
303 - sp:subject _:b22 564 + sp:subject _:b33
304 ] [ sp:object 565 ] [ sp:object
305 [ sp:varName "realFlowRateGas"^^xsd:string 566 [ sp:varName "realFlowRateGas"^^xsd:string
306 ] ; 567 ] ;
307 sp:predicate 568 sp:predicate
308 [ sp:varName "volumetricFlowRateScaleGas"^^xsd:string 569 [ sp:varName "volumetricFlowRateScaleGas"^^xsd:string
309 ] ; 570 ] ;
310 - sp:subject _:b22 571 + sp:subject _:b33
311 - ] [ sp:object _:b23 ; 572 + ] [ sp:object _:b34 ;
312 sp:predicate rdf:type ; 573 sp:predicate rdf:type ;
313 - sp:subject _:b20 574 + sp:subject _:b21
314 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; 575 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ;
315 sp:predicate rdf:type ; 576 sp:predicate rdf:type ;
316 - sp:subject _:b23 577 + sp:subject _:b34
317 ] [ sp:object 578 ] [ sp:object
318 [ sp:varName "realVolumeGas"^^xsd:string 579 [ sp:varName "realVolumeGas"^^xsd:string
319 ] ; 580 ] ;
320 sp:predicate 581 sp:predicate
321 [ sp:varName "volumeScaleGas"^^xsd:string 582 [ sp:varName "volumeScaleGas"^^xsd:string
322 ] ; 583 ] ;
323 - sp:subject _:b23 584 + sp:subject _:b34
324 - ] [ sp:object _:b24 ; 585 + ] [ sp:object _:b35 ;
325 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestShutInPressure> ; 586 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestShutInPressure> ;
326 sp:subject 587 sp:subject
327 [ sp:varName "wellTest"^^xsd:string 588 [ sp:varName "wellTest"^^xsd:string
328 ] 589 ]
329 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 590 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
330 sp:predicate rdf:type ; 591 sp:predicate rdf:type ;
331 - sp:subject _:b24 592 + sp:subject _:b35
332 ] [ sp:object 593 ] [ sp:object
333 [ sp:varName "realShutIn"^^xsd:string 594 [ sp:varName "realShutIn"^^xsd:string
334 ] ; 595 ] ;
335 sp:predicate 596 sp:predicate
336 [ sp:varName "pressureScaleShutIn"^^xsd:string 597 [ sp:varName "pressureScaleShutIn"^^xsd:string
337 ] ; 598 ] ;
338 - sp:subject _:b24 599 + sp:subject _:b35
339 - ] [ sp:object _:b25 ; 600 + ] [ sp:object _:b36 ;
340 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestFlowingPressure> ; 601 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestFlowingPressure> ;
341 sp:subject 602 sp:subject
342 [ sp:varName "wellTest"^^xsd:string 603 [ sp:varName "wellTest"^^xsd:string
343 ] 604 ]
344 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 605 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
345 sp:predicate rdf:type ; 606 sp:predicate rdf:type ;
346 - sp:subject _:b25 607 + sp:subject _:b36
347 ] [ sp:object 608 ] [ sp:object
348 [ sp:varName "realFlowing"^^xsd:string 609 [ sp:varName "realFlowing"^^xsd:string
349 ] ; 610 ] ;
350 sp:predicate 611 sp:predicate
351 [ sp:varName "pressureScaleFlowing"^^xsd:string 612 [ sp:varName "pressureScaleFlowing"^^xsd:string
352 ] ; 613 ] ;
353 - sp:subject _:b25 614 + sp:subject _:b36
354 - ] [ sp:object _:b26 ; 615 + ] [ sp:object _:b37 ;
355 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestBottomHolePressure> ; 616 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestBottomHolePressure> ;
356 sp:subject 617 sp:subject
357 [ sp:varName "wellTest"^^xsd:string 618 [ sp:varName "wellTest"^^xsd:string
358 ] 619 ]
359 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; 620 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ;
360 sp:predicate rdf:type ; 621 sp:predicate rdf:type ;
361 - sp:subject _:b26 622 + sp:subject _:b37
362 ] [ sp:object 623 ] [ sp:object
363 [ sp:varName "realBottom"^^xsd:string 624 [ sp:varName "realBottom"^^xsd:string
364 ] ; 625 ] ;
365 sp:predicate 626 sp:predicate
366 [ sp:varName "pressureScaleBottom"^^xsd:string 627 [ sp:varName "pressureScaleBottom"^^xsd:string
367 ] ; 628 ] ;
368 - sp:subject _:b26 629 + sp:subject _:b37
369 - ] [ sp:object _:b27 ; 630 + ] [ sp:object _:b38 ;
370 - sp:predicate <http://www.reportinghub.no/ep/schema/well#chlorideConcentration> ;
371 - sp:subject _:b20
372 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#MassPerUnitMassConcentration> ;
373 - sp:predicate rdf:type ;
374 - sp:subject _:b27
375 - ] [ sp:object
376 - [ sp:varName "realChloride"^^xsd:string
377 - ] ;
378 - sp:predicate
379 - [ sp:varName "specificMassScaleChloride"^^xsd:string
380 - ] ;
381 - sp:subject _:b27
382 - ] [ sp:object _:b28 ;
383 - sp:predicate <http://www.reportinghub.no/ep/schema/well#carbonDioxideConcentration> ;
384 - sp:subject _:b20
385 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#MassPerUnitMassConcentration> ;
386 - sp:predicate rdf:type ;
387 - sp:subject _:b28
388 - ] [ sp:object
389 - [ sp:varName "realCarbonDioxide"^^xsd:string
390 - ] ;
391 - sp:predicate
392 - [ sp:varName "specificMassScaleCarbonDioxide"^^xsd:string
393 - ] ;
394 - sp:subject _:b28
395 - ] [ sp:object _:b29 ;
396 - sp:predicate <http://www.reportinghub.no/ep/schema/well#hydrogenSulfideConcentration> ;
397 - sp:subject _:b20
398 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#MassPerUnitMassConcentration> ;
399 - sp:predicate rdf:type ;
400 - sp:subject _:b29
401 - ] [ sp:object
402 - [ sp:varName "realHydrogenSulfide"^^xsd:string
403 - ] ;
404 - sp:predicate
405 - [ sp:varName "specificMassScaleHydrogenSulfide"^^xsd:string
406 - ] ;
407 - sp:subject _:b29
408 - ] [ sp:object _:b30 ;
409 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestStoredOil> ; 631 sp:predicate <http://www.reportinghub.no/ep/schema/activity#wellTestStoredOil> ;
410 sp:subject 632 sp:subject
411 [ sp:varName "wellTest"^^xsd:string 633 [ sp:varName "wellTest"^^xsd:string
412 ] 634 ]
413 - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Oil> ; 635 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#Oil> ;
414 sp:predicate rdf:type ; 636 sp:predicate rdf:type ;
415 - sp:subject _:b30 637 + sp:subject _:b38
416 - ] [ sp:object _:b31 ; 638 + ] [ sp:object _:b39 ;
417 sp:predicate rdf:type ; 639 sp:predicate rdf:type ;
418 - sp:subject _:b30 640 + sp:subject _:b38
419 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; 641 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ;
420 sp:predicate rdf:type ; 642 sp:predicate rdf:type ;
421 - sp:subject _:b31 643 + sp:subject _:b39
422 ] [ sp:object 644 ] [ sp:object
423 [ sp:varName "realStored"^^xsd:string 645 [ sp:varName "realStored"^^xsd:string
424 ] ; 646 ] ;
425 sp:predicate 647 sp:predicate
426 [ sp:varName "volumeScaleStored"^^xsd:string 648 [ sp:varName "volumeScaleStored"^^xsd:string
427 ] ; 649 ] ;
428 - sp:subject _:b31 650 + sp:subject _:b39
429 ]) ; 651 ]) ;
430 sp:where ([ sp:object 652 sp:where ([ sp:object
431 [ sp:varName "nameWellBore"^^xsd:string 653 [ sp:varName "nameWellBore"^^xsd:string
...@@ -804,69 +1026,6 @@ ...@@ -804,69 +1026,6 @@
804 [ sp:varName "waterOilRatio"^^xsd:string 1026 [ sp:varName "waterOilRatio"^^xsd:string
805 ] 1027 ]
806 ] [ sp:object 1028 ] [ sp:object
807 - [ sp:varName "chloride"^^xsd:string
808 - ] ;
809 - sp:predicate <http://www.witsml.org/schemas/1series#chlorideRef> ;
810 - sp:subject
811 - [ sp:varName "wellTestInfo"^^xsd:string
812 - ]
813 - ] [ sp:object
814 - [ sp:varName "uomChloride"^^xsd:string
815 - ] ;
816 - sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
817 - sp:subject
818 - [ sp:varName "chloride"^^xsd:string
819 - ]
820 - ] [ sp:object
821 - [ sp:varName "realChloride"^^xsd:string
822 - ] ;
823 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
824 - sp:subject
825 - [ sp:varName "chloride"^^xsd:string
826 - ]
827 - ] [ sp:object
828 - [ sp:varName "carbonDioxide"^^xsd:string
829 - ] ;
830 - sp:predicate <http://www.witsml.org/schemas/1series#carbonDioxideRef> ;
831 - sp:subject
832 - [ sp:varName "wellTestInfo"^^xsd:string
833 - ]
834 - ] [ sp:object
835 - [ sp:varName "uomCarbonDioxide"^^xsd:string
836 - ] ;
837 - sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
838 - sp:subject
839 - [ sp:varName "carbonDioxide"^^xsd:string
840 - ]
841 - ] [ sp:object
842 - [ sp:varName "realCarbonDioxide"^^xsd:string
843 - ] ;
844 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
845 - sp:subject
846 - [ sp:varName "carbonDioxide"^^xsd:string
847 - ]
848 - ] [ sp:object
849 - [ sp:varName "hydrogenSulfide"^^xsd:string
850 - ] ;
851 - sp:predicate <http://www.witsml.org/schemas/1series#hydrogenSulfideRef> ;
852 - sp:subject
853 - [ sp:varName "wellTestInfo"^^xsd:string
854 - ]
855 - ] [ sp:object
856 - [ sp:varName "uomHydrogenSulfide"^^xsd:string
857 - ] ;
858 - sp:predicate <http://www.witsml.org/schemas/1series#uomRef> ;
859 - sp:subject
860 - [ sp:varName "hydrogenSulfide"^^xsd:string
861 - ]
862 - ] [ sp:object
863 - [ sp:varName "realHydrogenSulfide"^^xsd:string
864 - ] ;
865 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
866 - sp:subject
867 - [ sp:varName "hydrogenSulfide"^^xsd:string
868 - ]
869 - ] [ sp:object
870 [ sp:varName "volOilTotal"^^xsd:string 1029 [ sp:varName "volOilTotal"^^xsd:string
871 ] ; 1030 ] ;
872 sp:predicate <http://www.witsml.org/schemas/1series#volOilTotalRef> ; 1031 sp:predicate <http://www.witsml.org/schemas/1series#volOilTotalRef> ;
...@@ -1183,33 +1342,6 @@ ...@@ -1183,33 +1342,6 @@
1183 ] 1342 ]
1184 ] [ rdf:type sp:Bind ; 1343 ] [ rdf:type sp:Bind ;
1185 sp:expression 1344 sp:expression
1186 - [ rdf:type ep-spin-lib:selectMassPerUnitMassConcentrationScale ;
1187 - sp:arg1 [ sp:varName "uomChloride"^^xsd:string
1188 - ]
1189 - ] ;
1190 - sp:variable
1191 - [ sp:varName "specificMassScaleChloride"^^xsd:string
1192 - ]
1193 - ] [ rdf:type sp:Bind ;
1194 - sp:expression
1195 - [ rdf:type ep-spin-lib:selectMassPerUnitMassConcentrationScale ;
1196 - sp:arg1 [ sp:varName "uomCarbonDioxide"^^xsd:string
1197 - ]
1198 - ] ;
1199 - sp:variable
1200 - [ sp:varName "specificMassScaleCarbonDioxide"^^xsd:string
1201 - ]
1202 - ] [ rdf:type sp:Bind ;
1203 - sp:expression
1204 - [ rdf:type ep-spin-lib:selectMassPerUnitMassConcentrationScale ;
1205 - sp:arg1 [ sp:varName "uomHydrogenSulfide"^^xsd:string
1206 - ]
1207 - ] ;
1208 - sp:variable
1209 - [ sp:varName "specificMassScaleHydrogenSulfide"^^xsd:string
1210 - ]
1211 - ] [ rdf:type sp:Bind ;
1212 - sp:expression
1213 [ rdf:type rhspin:wellBoreByName ; 1345 [ rdf:type rhspin:wellBoreByName ;
1214 arg:wellBoreName 1346 arg:wellBoreName
1215 [ rdf:type xsd:string ; 1347 [ rdf:type xsd:string ;
......