Updated to transforms and reports to align better with PCA RD patterns
Showing
11 changed files
with
3618 additions
and
3693 deletions
This diff could not be displayed because it is too large.
| 1 | -# Saved by TopBraid on Fri Oct 28 22:27:29 BST 2011 | 1 | +# baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment |
| 2 | -# baseURI: http://www.reportinghub.no/ep/schema/1.0/equipment | 2 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core |
| 3 | -# imports: http://www.reportinghub.no/ep/schema/1.0/organization | 3 | +# imports: http://www.reportinghub.no/ep/schema/1.0/organization |
| 4 | -# imports: http://www.reportinghub.no/ep/schema/1.0/core | 4 | +# imports: http://www.reportinghub.no/ep/schema/1.0/well |
| 5 | -# imports: http://www.reportinghub.no/ep/schema/1.0/well | 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-eqt: <http://www.reportinghub.no/ep/schema/equipment#> . |
| 8 | -@prefix ep-eqt: <http://www.reportinghub.no/ep/schema/equipment#> . | 8 | +@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . |
| 9 | -@prefix ep-fac: <http://www.reportinghub.no/ep/schema/facility#> . | 9 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 10 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 10 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 11 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 11 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 12 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 12 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 13 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 13 | + |
| 14 | - | 14 | +<http://www.reportinghub.no/ep/schema/1.0/equipment> |
| 15 | -<http://www.reportinghub.no/ep/schema/1.0/equipment> | 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/organization> , <http://www.reportinghub.no/ep/schema/1.0/well> ; |
| 17 | - owl:imports <http://www.reportinghub.no/ep/schema/1.0/organization> , <http://www.reportinghub.no/ep/schema/1.0/well> , <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 | +ep-core:PhysicalThing |
| 20 | -ep-core:PhysicalThing | 20 | + rdfs:comment "Equivalent to ISO 15926-2 Possible Individual - DL"^^xsd:string . |
| 21 | - rdfs:comment "Equivalent to ISO 15926-2 Possible Individual - DL"^^xsd:string . | 21 | + |
| 22 | - | 22 | +ep-eqt:BlowOutPreventer |
| 23 | -ep-eqt:API_5CT_class | 23 | + rdf:type owl:Class ; |
| 24 | - rdf:type rdfs:Class ; | 24 | + rdfs:label "blow out preventer"^^xsd:string ; |
| 25 | - rdfs:label "API 5CT class"^^xsd:string ; | 25 | + rdfs:subClassOf ep-eqt:Equipment . |
| 26 | - rdfs:subClassOf owl:Class . | 26 | + |
| 27 | - | 27 | +ep-eqt:Casing |
| 28 | -ep-eqt:BlowOutPreventer | 28 | + rdf:type ep-eqt:CasingLinerTubingType , owl:Class ; |
| 29 | - rdf:type owl:Class ; | 29 | + rdfs:label "Casing"^^xsd:string ; |
| 30 | - rdfs:label "blow out preventer"^^xsd:string ; | 30 | + rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
| 31 | - rdfs:subClassOf ep-eqt:Equipment . | 31 | + owl:disjointWith ep-eqt:Liner , ep-eqt:Tubing . |
| 32 | - | 32 | + |
| 33 | -ep-eqt:Casing | 33 | +ep-eqt:CasingLinerTubing |
| 34 | - rdf:type owl:Class , ep-eqt:CasingLinerTubingType ; | 34 | + rdf:type owl:Class ; |
| 35 | - rdfs:label "Casing"^^xsd:string ; | 35 | + rdfs:label "casing/liner/tubing"^^xsd:string ; |
| 36 | - rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 36 | + rdfs:subClassOf ep-eqt:Equipment ; |
| 37 | - owl:disjointWith ep-eqt:Tubing , ep-eqt:Liner . | 37 | + owl:equivalentClass |
| 38 | - | 38 | + [ rdf:type owl:Class ; |
| 39 | -ep-eqt:CasingLinerTubing | 39 | + owl:unionOf (ep-eqt:Casing ep-eqt:Liner ep-eqt:Tubing) |
| 40 | - rdf:type owl:Class ; | 40 | + ] . |
| 41 | - rdfs:label "casing/liner/tubing"^^xsd:string ; | 41 | + |
| 42 | - rdfs:subClassOf ep-eqt:Equipment ; | 42 | +ep-eqt:CasingLinerTubingType |
| 43 | - owl:equivalentClass | 43 | + rdf:type rdfs:Class ; |
| 44 | - [ rdf:type owl:Class ; | 44 | + rdfs:label "casing/liner/tubing type"^^xsd:string ; |
| 45 | - owl:unionOf (ep-eqt:Casing ep-eqt:Liner ep-eqt:Tubing) | 45 | + rdfs:subClassOf owl:Class . |
| 46 | - ] . | 46 | + |
| 47 | - | 47 | +ep-eqt:CasingRoleType |
| 48 | -ep-eqt:CasingLinerTubingType | 48 | + rdf:type rdfs:Class ; |
| 49 | - rdf:type rdfs:Class ; | 49 | + rdfs:label "casing role type"^^xsd:string ; |
| 50 | - rdfs:label "casing/liner/tubing type"^^xsd:string ; | 50 | + rdfs:subClassOf owl:Class . |
| 51 | - rdfs:subClassOf owl:Class . | 51 | + |
| 52 | - | 52 | +ep-eqt:CasingString |
| 53 | -ep-eqt:CasingRoleType | 53 | + rdf:type owl:Class ; |
| 54 | - rdf:type rdfs:Class ; | 54 | + rdfs:label "casing string"^^xsd:string ; |
| 55 | - rdfs:label "casing role type"^^xsd:string ; | 55 | + rdfs:subClassOf ep-eqt:Casing , <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> . |
| 56 | - rdfs:subClassOf owl:Class . | 56 | + |
| 57 | - | 57 | +ep-eqt:ChokeValve |
| 58 | -ep-eqt:CasingString | 58 | + rdf:type owl:Class ; |
| 59 | - rdf:type owl:Class ; | 59 | + rdfs:label "choke valve"^^xsd:string ; |
| 60 | - rdfs:label "casing string"^^xsd:string ; | 60 | + rdfs:subClassOf ep-eqt:Equipment . |
| 61 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> , ep-eqt:Casing . | 61 | + |
| 62 | - | 62 | +ep-eqt:ClassOfDrillBitBySize |
| 63 | -ep-eqt:ChokeValve | 63 | + rdf:type rdfs:Class ; |
| 64 | - rdf:type owl:Class ; | 64 | + rdfs:label "class of drill bit by size"^^xsd:string ; |
| 65 | - rdfs:label "choke valve"^^xsd:string ; | 65 | + rdfs:subClassOf owl:Class . |
| 66 | - rdfs:subClassOf ep-eqt:Equipment . | 66 | + |
| 67 | - | 67 | +ep-eqt:ClassOfSupplyDefinedByAManufacturer |
| 68 | -ep-eqt:ClassOfDrillBitBySize | 68 | + rdf:type rdfs:Class ; |
| 69 | - rdf:type rdfs:Class ; | 69 | + rdfs:label "manufacturer model"^^xsd:string ; |
| 70 | - rdfs:label "class of drill bit by size"^^xsd:string ; | 70 | + rdfs:subClassOf owl:Class . |
| 71 | - rdfs:subClassOf owl:Class . | 71 | + |
| 72 | - | 72 | +ep-eqt:Compressor |
| 73 | -ep-eqt:ClassOfSupplyDefinedByAManufacturer | 73 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 74 | - rdf:type rdfs:Class ; | 74 | + rdfs:label "compressor"^^xsd:string ; |
| 75 | - rdfs:label "manufacturer model"^^xsd:string ; | 75 | + rdfs:subClassOf ep-eqt:Equipment . |
| 76 | - rdfs:subClassOf owl:Class . | 76 | + |
| 77 | - | 77 | +ep-eqt:Controller-lift |
| 78 | -ep-eqt:Compressor | 78 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 79 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 79 | + rdfs:label "controller - lift"^^xsd:string ; |
| 80 | - rdfs:label "compressor"^^xsd:string ; | 80 | + rdfs:subClassOf ep-eqt:Equipment . |
| 81 | - rdfs:subClassOf ep-eqt:Equipment . | 81 | + |
| 82 | - | 82 | +ep-eqt:DrillBit |
| 83 | -ep-eqt:Controller-lift | 83 | + rdf:type owl:Class ; |
| 84 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 84 | + rdfs:label "drill bit"^^xsd:string ; |
| 85 | - rdfs:label "controller - lift"^^xsd:string ; | 85 | + rdfs:subClassOf ep-eqt:Equipment . |
| 86 | - rdfs:subClassOf ep-eqt:Equipment . | 86 | + |
| 87 | - | 87 | +ep-eqt:DrillBitForWellBore |
| 88 | -ep-eqt:DrillBit | 88 | + rdf:type owl:Class ; |
| 89 | - rdf:type owl:Class ; | 89 | + rdfs:label "drill bit for wellbore"^^xsd:string ; |
| 90 | - rdfs:label "drill bit"^^xsd:string ; | 90 | + rdfs:subClassOf ep-eqt:DrillBit . |
| 91 | - rdfs:subClassOf ep-eqt:Equipment . | 91 | + |
| 92 | - | 92 | +ep-eqt:DullGrade |
| 93 | -ep-eqt:DrillBitForWellBore | 93 | + rdf:type rdfs:Class ; |
| 94 | - rdf:type owl:Class ; | 94 | + rdfs:label "dull grade"^^xsd:string ; |
| 95 | - rdfs:label "drill bit for wellbore"^^xsd:string ; | 95 | + rdfs:subClassOf owl:Class . |
| 96 | - rdfs:subClassOf ep-eqt:DrillBit . | 96 | + |
| 97 | - | 97 | +ep-eqt:Equipment |
| 98 | -ep-eqt:DullGrade | 98 | + rdf:type owl:Class ; |
| 99 | - rdf:type rdfs:Class ; | 99 | + rdfs:label "Equipment"^^xsd:string ; |
| 100 | - rdfs:label "dull grade"^^xsd:string ; | 100 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 101 | - rdfs:subClassOf owl:Class . | 101 | + |
| 102 | - | 102 | +ep-eqt:InnerBarrel |
| 103 | -ep-eqt:Equipment | 103 | + rdf:type owl:Class ; |
| 104 | - rdf:type owl:Class ; | 104 | + rdfs:label "inner barrel"^^xsd:string ; |
| 105 | - rdfs:label "Equipment"^^xsd:string ; | 105 | + rdfs:subClassOf ep-eqt:Equipment . |
| 106 | - rdfs:subClassOf ep-core:PhysicalObject . | 106 | + |
| 107 | - | 107 | +ep-eqt:InnerBarrel-aluminum |
| 108 | -ep-eqt:InnerBarrel | 108 | + rdf:type owl:Class ; |
| 109 | - rdf:type owl:Class ; | 109 | + rdfs:label "inner barrel - aluminum"^^xsd:string ; |
| 110 | - rdfs:label "inner barrel"^^xsd:string ; | 110 | + rdfs:subClassOf ep-eqt:InnerBarrel ; |
| 111 | - rdfs:subClassOf ep-eqt:Equipment . | 111 | + owl:disjointWith ep-eqt:InnerBarrel-fiberglass , ep-eqt:InnerBarrel-gel . |
| 112 | - | 112 | + |
| 113 | -ep-eqt:InnerBarrel-aluminum | 113 | +ep-eqt:InnerBarrel-fiberglass |
| 114 | - rdf:type owl:Class ; | 114 | + rdf:type owl:Class ; |
| 115 | - rdfs:label "inner barrel - aluminum"^^xsd:string ; | 115 | + rdfs:label "inner barrel - fiberglass"^^xsd:string ; |
| 116 | - rdfs:subClassOf ep-eqt:InnerBarrel ; | 116 | + rdfs:subClassOf ep-eqt:InnerBarrel ; |
| 117 | - owl:disjointWith ep-eqt:InnerBarrel-fiberglass , ep-eqt:InnerBarrel-gel . | 117 | + owl:disjointWith ep-eqt:InnerBarrel-aluminum , ep-eqt:InnerBarrel-gel . |
| 118 | - | 118 | + |
| 119 | -ep-eqt:InnerBarrel-fiberglass | 119 | +ep-eqt:InnerBarrel-gel |
| 120 | - rdf:type owl:Class ; | 120 | + rdf:type owl:Class ; |
| 121 | - rdfs:label "inner barrel - fiberglass"^^xsd:string ; | 121 | + rdfs:label "inner barrel - gel"^^xsd:string ; |
| 122 | - rdfs:subClassOf ep-eqt:InnerBarrel ; | 122 | + rdfs:subClassOf ep-eqt:InnerBarrel ; |
| 123 | - owl:disjointWith ep-eqt:InnerBarrel-gel , ep-eqt:InnerBarrel-aluminum . | 123 | + owl:disjointWith ep-eqt:InnerBarrel-aluminum , ep-eqt:InnerBarrel-fiberglass . |
| 124 | - | 124 | + |
| 125 | -ep-eqt:InnerBarrel-gel | 125 | +ep-eqt:IntermediateCasing |
| 126 | - rdf:type owl:Class ; | 126 | + rdf:type ep-eqt:CasingRoleType , owl:Class ; |
| 127 | - rdfs:label "inner barrel - gel"^^xsd:string ; | 127 | + rdfs:label "intermediate casing"^^xsd:string ; |
| 128 | - rdfs:subClassOf ep-eqt:InnerBarrel ; | 128 | + rdfs:subClassOf ep-eqt:Casing ; |
| 129 | - owl:disjointWith ep-eqt:InnerBarrel-fiberglass , ep-eqt:InnerBarrel-aluminum . | 129 | + owl:disjointWith ep-eqt:ProductionCasing , ep-eqt:TopCasing . |
| 130 | - | 130 | + |
| 131 | -ep-eqt:IntermediateCasing | 131 | +ep-eqt:KellyBushing |
| 132 | - rdf:type ep-eqt:CasingRoleType , owl:Class ; | 132 | + rdf:type owl:Class ; |
| 133 | - rdfs:label "intermediate casing"^^xsd:string ; | 133 | + rdfs:label "kelly bushing"^^xsd:string ; |
| 134 | - rdfs:subClassOf ep-eqt:Casing ; | 134 | + rdfs:subClassOf ep-eqt:Equipment . |
| 135 | - owl:disjointWith ep-eqt:ProductionCasing , ep-eqt:TopCasing . | 135 | + |
| 136 | - | 136 | +ep-eqt:LastCasingOfAWellBore |
| 137 | -ep-eqt:KellyBushing | 137 | + rdf:type owl:Class ; |
| 138 | - rdf:type owl:Class ; | 138 | + rdfs:label "last casing of a wellbore"^^xsd:string ; |
| 139 | - rdfs:label "kelly bushing"^^xsd:string ; | 139 | + rdfs:subClassOf ep-eqt:Casing , <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> . |
| 140 | - rdfs:subClassOf ep-eqt:Equipment . | 140 | + |
| 141 | - | 141 | +ep-eqt:Liner |
| 142 | -ep-eqt:LastCasingOfAWellBore | 142 | + rdf:type ep-eqt:CasingLinerTubingType , owl:Class ; |
| 143 | - rdf:type owl:Class ; | 143 | + rdfs:label "Liner"^^xsd:string ; |
| 144 | - rdfs:label "last casing of a wellbore"^^xsd:string ; | 144 | + rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
| 145 | - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> , ep-eqt:Casing . | 145 | + owl:disjointWith ep-eqt:Casing , ep-eqt:Tubing . |
| 146 | - | 146 | + |
| 147 | -ep-eqt:Liner | 147 | +ep-eqt:Manifold-injection |
| 148 | - rdf:type owl:Class , ep-eqt:CasingLinerTubingType ; | 148 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 149 | - rdfs:label "Liner"^^xsd:string ; | 149 | + rdfs:label "manifold - injection"^^xsd:string ; |
| 150 | - rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 150 | + rdfs:subClassOf ep-eqt:Equipment . |
| 151 | - owl:disjointWith ep-eqt:Tubing , ep-eqt:Casing . | 151 | + |
| 152 | - | 152 | +ep-eqt:Manifold-production |
| 153 | -ep-eqt:Manifold-injection | 153 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 154 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 154 | + rdfs:label "manifold - production"^^xsd:string ; |
| 155 | - rdfs:label "manifold - injection"^^xsd:string ; | 155 | + rdfs:subClassOf ep-eqt:Equipment . |
| 156 | - rdfs:subClassOf ep-eqt:Equipment . | 156 | + |
| 157 | - | 157 | +ep-eqt:PipeOutsideDiameterAPI_5CTClass |
| 158 | -ep-eqt:Manifold-production | 158 | + rdf:type rdfs:Class ; |
| 159 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 159 | + rdfs:label "pipe outside diameter API 5CT class"^^xsd:string ; |
| 160 | - rdfs:label "manifold - production"^^xsd:string ; | 160 | + rdfs:subClassOf owl:Class . |
| 161 | - rdfs:subClassOf ep-eqt:Equipment . | 161 | + |
| 162 | - | 162 | +ep-eqt:PipeWeightAPI_5CTClass |
| 163 | -ep-eqt:ProductionCasing | 163 | + rdf:type rdfs:Class ; |
| 164 | - rdf:type ep-eqt:CasingRoleType , owl:Class ; | 164 | + rdfs:label "Pipe weight API 5CT class"^^xsd:string ; |
| 165 | - rdfs:label "production casing"^^xsd:string ; | 165 | + rdfs:subClassOf owl:Class . |
| 166 | - rdfs:subClassOf ep-eqt:Casing ; | 166 | + |
| 167 | - owl:disjointWith ep-eqt:TopCasing , ep-eqt:IntermediateCasing . | 167 | +ep-eqt:ProductionCasing |
| 168 | - | 168 | + rdf:type ep-eqt:CasingRoleType , owl:Class ; |
| 169 | -ep-eqt:Separator | 169 | + rdfs:label "production casing"^^xsd:string ; |
| 170 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 170 | + rdfs:subClassOf ep-eqt:Casing ; |
| 171 | - rdfs:label "separator"^^xsd:string ; | 171 | + owl:disjointWith ep-eqt:IntermediateCasing , ep-eqt:TopCasing . |
| 172 | - rdfs:subClassOf ep-eqt:Equipment . | 172 | + |
| 173 | - | 173 | +ep-eqt:Separator |
| 174 | -ep-eqt:Tank | 174 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 175 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 175 | + rdfs:label "separator"^^xsd:string ; |
| 176 | - rdfs:label "tank"^^xsd:string ; | 176 | + rdfs:subClassOf ep-eqt:Equipment . |
| 177 | - rdfs:subClassOf ep-eqt:Equipment . | 177 | + |
| 178 | - | 178 | +ep-eqt:SteelGradeAPI_5CTClass |
| 179 | -ep-eqt:TopCasing | 179 | + rdf:type rdfs:Class ; |
| 180 | - rdf:type ep-eqt:CasingRoleType , owl:Class ; | 180 | + rdfs:label "Steel grade API 5CT class"^^xsd:string ; |
| 181 | - rdfs:label "top casing"^^xsd:string ; | 181 | + rdfs:subClassOf owl:Class . |
| 182 | - rdfs:subClassOf ep-eqt:Casing ; | 182 | + |
| 183 | - owl:disjointWith ep-eqt:ProductionCasing , ep-eqt:IntermediateCasing . | 183 | +ep-eqt:Tank |
| 184 | - | 184 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 185 | -ep-eqt:Tubing | 185 | + rdfs:label "tank"^^xsd:string ; |
| 186 | - rdf:type owl:Class , ep-eqt:CasingLinerTubingType ; | 186 | + rdfs:subClassOf ep-eqt:Equipment . |
| 187 | - rdfs:label "Tubing"^^xsd:string ; | 187 | + |
| 188 | - rdfs:subClassOf ep-eqt:CasingLinerTubing ; | 188 | +ep-eqt:TopCasing |
| 189 | - owl:disjointWith ep-eqt:Liner , ep-eqt:Casing . | 189 | + rdf:type ep-eqt:CasingRoleType , owl:Class ; |
| 190 | - | 190 | + rdfs:label "top casing"^^xsd:string ; |
| 191 | -ep-eqt:TubularConnectionClass | 191 | + rdfs:subClassOf ep-eqt:Casing ; |
| 192 | - rdf:type rdfs:Class ; | 192 | + owl:disjointWith ep-eqt:IntermediateCasing , ep-eqt:ProductionCasing . |
| 193 | - rdfs:label "tubular connection class"^^xsd:string ; | 193 | + |
| 194 | - rdfs:subClassOf owl:Class . | 194 | +ep-eqt:Tubing |
| 195 | - | 195 | + rdf:type ep-eqt:CasingLinerTubingType , owl:Class ; |
| 196 | -ep-eqt:WellBoreLoggingTool | 196 | + rdfs:label "Tubing"^^xsd:string ; |
| 197 | - rdf:type owl:Class ; | 197 | + rdfs:subClassOf ep-eqt:CasingLinerTubing ; |
| 198 | - rdfs:label "well bore logging tool"^^xsd:string ; | 198 | + owl:disjointWith ep-eqt:Casing , ep-eqt:Liner . |
| 199 | - rdfs:subClassOf ep-eqt:Equipment . | 199 | + |
| 200 | - | 200 | +ep-eqt:TubularConnectionClass |
| 201 | -ep-eqt:WellTestChoke | 201 | + rdf:type rdfs:Class ; |
| 202 | - rdf:type owl:Class ; | 202 | + rdfs:label "tubular connection class"^^xsd:string ; |
| 203 | - rdfs:label "well test choke"^^xsd:string ; | 203 | + rdfs:subClassOf owl:Class . |
| 204 | - rdfs:subClassOf ep-eqt:Equipment . | 204 | + |
| 205 | - | 205 | +ep-eqt:WellBoreLoggingTool |
| 206 | -ep-eqt:chokeOrificeSize | 206 | + rdf:type owl:Class ; |
| 207 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 207 | + rdfs:label "well bore logging tool"^^xsd:string ; |
| 208 | - rdfs:domain ep-eqt:WellTestChoke ; | 208 | + rdfs:subClassOf ep-eqt:Equipment . |
| 209 | - rdfs:label "choke orifice size"^^xsd:string ; | 209 | + |
| 210 | - rdfs:range ep-core:Length . | 210 | +ep-eqt:WellTestChoke |
| 211 | - | 211 | + rdf:type owl:Class ; |
| 212 | -ep-eqt:codeAssignedByAManufacturer | 212 | + rdfs:label "well test choke"^^xsd:string ; |
| 213 | - rdf:type owl:DatatypeProperty ; | 213 | + rdfs:subClassOf ep-eqt:Equipment . |
| 214 | - rdfs:domain ep-eqt:ClassOfSupplyDefinedByAManufacturer ; | 214 | + |
| 215 | - rdfs:label "code assigned by manufacturer"^^xsd:string . | 215 | +ep-eqt:chokeOrificeSize |
| 216 | - | 216 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 217 | -ep-eqt:diameterOfACasing | 217 | + rdfs:domain ep-eqt:WellTestChoke ; |
| 218 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 218 | + rdfs:label "choke orifice size"^^xsd:string ; |
| 219 | - rdfs:domain ep-eqt:Casing ; | 219 | + rdfs:range ep-core:Length . |
| 220 | - rdfs:label "diameter of a casing"^^xsd:string ; | 220 | + |
| 221 | - rdfs:range ep-core:Length . | 221 | +ep-eqt:codeAssignedByAManufacturer |
| 222 | - | 222 | + rdf:type owl:DatatypeProperty ; |
| 223 | -ep-eqt:diameterOfDrillBit | 223 | + rdfs:domain ep-eqt:ClassOfSupplyDefinedByAManufacturer ; |
| 224 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 224 | + rdfs:label "code assigned by manufacturer"^^xsd:string . |
| 225 | - rdfs:domain ep-eqt:DrillBit ; | 225 | + |
| 226 | - rdfs:label "diameter of drill bit"^^xsd:string ; | 226 | +ep-eqt:diameterOfACasing |
| 227 | - rdfs:range ep-core:Length . | 227 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 228 | - | 228 | + rdfs:domain ep-eqt:Casing ; |
| 229 | -ep-eqt:elevationOfKellyBushing | 229 | + rdfs:label "diameter of a casing"^^xsd:string ; |
| 230 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 230 | + rdfs:range ep-core:Length . |
| 231 | - rdfs:domain ep-eqt:KellyBushing ; | 231 | + |
| 232 | - rdfs:label "elevation of kelly bushing"^^xsd:string ; | 232 | +ep-eqt:diameterOfDrillBit |
| 233 | - rdfs:range ep-core:Length . | 233 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 234 | - | 234 | + rdfs:domain ep-eqt:DrillBit ; |
| 235 | -ep-eqt:hasTubularConnectionClass | 235 | + rdfs:label "diameter of drill bit"^^xsd:string ; |
| 236 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | 236 | + rdfs:range ep-core:Length . |
| 237 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 237 | + |
| 238 | - rdfs:label "has tubular connection class"^^xsd:string ; | 238 | +ep-eqt:elevationOfKellyBushing |
| 239 | - rdfs:range ep-eqt:TubularConnectionClass . | 239 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 240 | - | 240 | + rdfs:domain ep-eqt:KellyBushing ; |
| 241 | -ep-eqt:insideDiameterOfATubular | 241 | + rdfs:label "elevation of kelly bushing"^^xsd:string ; |
| 242 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 242 | + rdfs:range ep-core:Length . |
| 243 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 243 | + |
| 244 | - rdfs:label "inside diameter of a tubular"^^xsd:string ; | 244 | +ep-eqt:hasTubularConnectionClass |
| 245 | - rdfs:range ep-core:Length . | 245 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 246 | - | 246 | + rdfs:domain ep-eqt:CasingLinerTubing ; |
| 247 | -ep-eqt:lengthOfInnerBarrel | 247 | + rdfs:label "has tubular connection class"^^xsd:string ; |
| 248 | - rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; | 248 | + rdfs:range ep-eqt:TubularConnectionClass . |
| 249 | - rdfs:domain ep-eqt:InnerBarrel ; | 249 | + |
| 250 | - rdfs:label "length of inner barrel"^^xsd:string ; | 250 | +ep-eqt:insideDiameterOfATubular |
| 251 | - rdfs:range ep-core:Length . | 251 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 252 | - | 252 | + rdfs:domain ep-eqt:CasingLinerTubing ; |
| 253 | -ep-eqt:manufacturedBy | 253 | + rdfs:label "inside diameter of a tubular"^^xsd:string ; |
| 254 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; | 254 | + rdfs:range ep-core:Length . |
| 255 | - rdfs:domain ep-eqt:Equipment ; | 255 | + |
| 256 | - rdfs:label "manaufactured by"^^xsd:string ; | 256 | +ep-eqt:lengthOfInnerBarrel |
| 257 | - rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . | 257 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 258 | - | 258 | + rdfs:domain ep-eqt:InnerBarrel ; |
| 259 | -ep-eqt:maximumPressureForBlowOutPreventer | 259 | + rdfs:label "length of inner barrel"^^xsd:string ; |
| 260 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 260 | + rdfs:range ep-core:Length . |
| 261 | - rdfs:domain ep-eqt:BlowOutPreventer ; | 261 | + |
| 262 | - rdfs:label "maximum pressure for blow out preventer"^^xsd:string ; | 262 | +ep-eqt:manufacturedBy |
| 263 | - rdfs:range ep-core:Pressure . | 263 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 264 | - | 264 | + rdfs:domain ep-eqt:Equipment ; |
| 265 | -ep-eqt:maximumPressureForChokeValve | 265 | + rdfs:label "manaufactured by"^^xsd:string ; |
| 266 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 266 | + rdfs:range <http://www.reportinghub.no/ep/schema/organization#Organization> . |
| 267 | - rdfs:domain ep-eqt:ChokeValve ; | 267 | + |
| 268 | - rdfs:label "maximum pressure for choke valve"^^xsd:string ; | 268 | +ep-eqt:maximumPressureForBlowOutPreventer |
| 269 | - rdfs:range ep-core:Pressure . | 269 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 270 | - | 270 | + rdfs:domain ep-eqt:BlowOutPreventer ; |
| 271 | -ep-eqt:outsideDiameterOfATubular | 271 | + rdfs:label "maximum pressure for blow out preventer"^^xsd:string ; |
| 272 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 272 | + rdfs:range ep-core:Pressure . |
| 273 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 273 | + |
| 274 | - rdfs:label "outside diameter of a tubular"^^xsd:string ; | 274 | +ep-eqt:maximumPressureForChokeValve |
| 275 | - rdfs:range ep-core:Length . | 275 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 276 | - | 276 | + rdfs:domain ep-eqt:ChokeValve ; |
| 277 | -ep-eqt:stringLengthOfATubular | 277 | + rdfs:label "maximum pressure for choke valve"^^xsd:string ; |
| 278 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 278 | + rdfs:range ep-core:Pressure . |
| 279 | - rdfs:domain ep-eqt:CasingLinerTubing ; | 279 | + |
| 280 | - rdfs:label "string length of a tubular"^^xsd:string ; | 280 | +ep-eqt:outsideDiameterOfATubular |
| 281 | - rdfs:range ep-core:Length . | 281 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 282 | + rdfs:domain ep-eqt:CasingLinerTubing ; | ||
| 283 | + rdfs:label "outside diameter of a tubular"^^xsd:string ; | ||
| 284 | + rdfs:range ep-core:Length . | ||
| 285 | + | ||
| 286 | +ep-eqt:stringLengthOfATubular | ||
| 287 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | ||
| 288 | + rdfs:domain ep-eqt:CasingLinerTubing ; | ||
| 289 | + rdfs:label "string length of a tubular"^^xsd:string ; | ||
| 290 | + rdfs:range ep-core:Length . | ... | ... |
| 1 | -# Saved by TopBraid on Thu Oct 27 14:29:39 BST 2011 | 1 | +# baseURI: http://www.reportinghub.no/ep/schema/1.0/well |
| 2 | -# baseURI: http://www.reportinghub.no/ep/schema/1.0/well | 2 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core |
| 3 | -# imports: http://www.reportinghub.no/ep/schema/1.0/core | 3 | +# imports: http://www.reportinghub.no/ep/schema/1.0/equipment |
| 4 | -# imports: http://www.reportinghub.no/ep/schema/1.0/equipment | 4 | +# imports: http://www.reportinghub.no/ep/schema/1.0/facility |
| 5 | -# imports: http://www.reportinghub.no/ep/schema/1.0/facility | 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#> . | 8 | +@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> . |
| 9 | -@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> . | 9 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 10 | -@prefix owl: <http://www.w3.org/2002/07/owl#> . | 10 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 11 | -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 11 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 12 | -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 12 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 13 | -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | 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/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 | - | 22 | +ep-well:CementingFluid |
| 23 | -ep-well:CementingFluid | 23 | + rdf:type owl:Class ; |
| 24 | - rdf:type owl:Class ; | 24 | + rdfs:label "cementing fluid"^^xsd:string ; |
| 25 | - rdfs:label "cementing fluid"^^xsd:string ; | 25 | + rdfs:subClassOf ep-well:Fluid . |
| 26 | - rdfs:subClassOf ep-well:Fluid . | 26 | + |
| 27 | - | 27 | +ep-well:CementingFluidType |
| 28 | -ep-well:CementingFluidType | 28 | + rdf:type owl:Class ; |
| 29 | - rdf:type owl:Class ; | 29 | + rdfs:label "cementing fluid type"^^xsd:string ; |
| 30 | - rdfs:label "cementing fluid type"^^xsd:string ; | 30 | + rdfs:subClassOf ep-well:FluidType . |
| 31 | - rdfs:subClassOf ep-well:FluidType . | 31 | + |
| 32 | - | 32 | +ep-well:ClassOfWellBoreSectionBySize |
| 33 | -ep-well:Cluster | 33 | + rdf:type rdfs:Class ; |
| 34 | - rdf:type owl:Class , ep-fac:ProductionFacilityType ; | 34 | + rdfs:label "class of wellbore section by size"^^xsd:string ; |
| 35 | - rdfs:label "cluster"^^xsd:string ; | 35 | + rdfs:subClassOf owl:Class . |
| 36 | - rdfs:subClassOf ep-core:PhysicalObject . | 36 | + |
| 37 | - | 37 | +ep-well:Cluster |
| 38 | -ep-well:Condensate | 38 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 39 | - rdf:type owl:Class , ep-well:FluidComponentType ; | 39 | + rdfs:label "cluster"^^xsd:string ; |
| 40 | - rdfs:label "condensate"^^xsd:string ; | 40 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 41 | - rdfs:subClassOf ep-well:Fluid . | 41 | + |
| 42 | - | 42 | +ep-well:Condensate |
| 43 | -ep-well:Filtrate | 43 | + rdf:type ep-well:FluidComponentType , owl:Class ; |
| 44 | - rdf:type ep-well:FluidComponentType , owl:Class ; | 44 | + rdfs:label "condensate"^^xsd:string ; |
| 45 | - rdfs:label "filtrate"^^xsd:string ; | 45 | + rdfs:subClassOf ep-well:Fluid . |
| 46 | - rdfs:subClassOf ep-well:Fluid . | 46 | + |
| 47 | - | 47 | +ep-well:Filtrate |
| 48 | -ep-well:Fluid | 48 | + rdf:type ep-well:FluidComponentType , owl:Class ; |
| 49 | - rdf:type owl:Class ; | 49 | + rdfs:label "filtrate"^^xsd:string ; |
| 50 | - rdfs:label "fluid component"^^xsd:string ; | 50 | + rdfs:subClassOf ep-well:Fluid . |
| 51 | - rdfs:subClassOf ep-core:PhysicalObject . | 51 | + |
| 52 | - | 52 | +ep-well:Fluid |
| 53 | -ep-well:FluidComponentType | 53 | + rdf:type owl:Class ; |
| 54 | - rdf:type rdfs:Class ; | 54 | + rdfs:label "fluid component"^^xsd:string ; |
| 55 | - rdfs:label "fluid component type"^^xsd:string ; | 55 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 56 | - rdfs:subClassOf owl:Class . | 56 | + |
| 57 | - | 57 | +ep-well:FluidComponentType |
| 58 | -ep-well:FluidType | 58 | + rdf:type rdfs:Class ; |
| 59 | - rdf:type owl:Class ; | 59 | + rdfs:label "fluid component type"^^xsd:string ; |
| 60 | - rdfs:label "fluid type"^^xsd:string ; | 60 | + rdfs:subClassOf owl:Class . |
| 61 | - rdfs:subClassOf owl:Class . | 61 | + |
| 62 | - | 62 | +ep-well:FluidType |
| 63 | -ep-well:Gas | 63 | + rdf:type owl:Class ; |
| 64 | - rdf:type owl:Class , ep-well:FluidComponentType ; | 64 | + rdfs:label "fluid type"^^xsd:string ; |
| 65 | - rdfs:label "gas"^^xsd:string ; | 65 | + rdfs:subClassOf owl:Class . |
| 66 | - rdfs:subClassOf ep-well:Fluid . | 66 | + |
| 67 | - | 67 | +ep-well:Gas |
| 68 | -ep-well:HphtWellBore | 68 | + rdf:type ep-well:FluidComponentType , owl:Class ; |
| 69 | - rdf:type ep-well:WellBoreHphtType , owl:Class ; | 69 | + rdfs:label "gas"^^xsd:string ; |
| 70 | - rdfs:label "high pressure high temperature well bore"^^xsd:string ; | 70 | + rdfs:subClassOf ep-well:Fluid . |
| 71 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 71 | + |
| 72 | - owl:disjointWith ep-well:NotHphtWellBore . | 72 | +ep-well:HphtWellBore |
| 73 | - | 73 | + rdf:type ep-well:WellBoreHphtType , owl:Class ; |
| 74 | -ep-well:LeakyWellBore | 74 | + rdfs:label "high pressure high temperature well bore"^^xsd:string ; |
| 75 | - rdf:type owl:Class , ep-well:WellBoreTightnessType ; | 75 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 76 | - rdfs:label "leaky well bore"^^xsd:string ; | 76 | + owl:disjointWith ep-well:NotHphtWellBore . |
| 77 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 77 | + |
| 78 | - owl:disjointWith ep-well:TightWellBore . | 78 | +ep-well:LeakyWellBore |
| 79 | - | 79 | + rdf:type ep-well:WellBoreTightnessType , owl:Class ; |
| 80 | -ep-well:LowerPartOfAWellBore | 80 | + rdfs:label "leaky well bore"^^xsd:string ; |
| 81 | - rdf:type owl:Class ; | 81 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 82 | - rdfs:label "lower part of a well bore"^^xsd:string ; | 82 | + owl:disjointWith ep-well:TightWellBore . |
| 83 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 83 | + |
| 84 | - | 84 | +ep-well:LowerPartOfAWellBore |
| 85 | -ep-well:Mud | 85 | + rdf:type owl:Class ; |
| 86 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 86 | + rdfs:label "lower part of a well bore"^^xsd:string ; |
| 87 | - rdfs:label "mud"^^xsd:string ; | 87 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 88 | - rdfs:subClassOf ep-well:CementingFluid ; | 88 | + |
| 89 | - owl:disjointWith ep-well:Slurry , ep-well:Wash , ep-well:Spacer . | 89 | +ep-well:Mud |
| 90 | - | 90 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 91 | -ep-well:Mud-oilBased | 91 | + rdfs:label "mud"^^xsd:string ; |
| 92 | - rdf:type owl:Class , ep-well:MudClass ; | 92 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 93 | - rdfs:label "mud - oil based"^^xsd:string ; | 93 | + owl:disjointWith ep-well:Slurry , ep-well:Spacer , ep-well:Wash . |
| 94 | - rdfs:subClassOf ep-well:Mud ; | 94 | + |
| 95 | - owl:disjointWith ep-well:Mud-waterBased , ep-well:Mud-other . | 95 | +ep-well:Mud-oilBased |
| 96 | - | 96 | + rdf:type ep-well:MudClass , owl:Class ; |
| 97 | -ep-well:Mud-other | 97 | + rdfs:label "mud - oil based"^^xsd:string ; |
| 98 | - rdf:type owl:Class , ep-well:MudClass ; | 98 | + rdfs:subClassOf ep-well:Mud ; |
| 99 | - rdfs:label "mud - other"^^xsd:string ; | 99 | + owl:disjointWith ep-well:Mud-other , ep-well:Mud-waterBased . |
| 100 | - rdfs:subClassOf ep-well:Mud ; | 100 | + |
| 101 | - owl:disjointWith ep-well:Mud-waterBased , ep-well:Mud-oilBased . | 101 | +ep-well:Mud-other |
| 102 | - | 102 | + rdf:type ep-well:MudClass , owl:Class ; |
| 103 | -ep-well:Mud-waterBased | 103 | + rdfs:label "mud - other"^^xsd:string ; |
| 104 | - rdf:type owl:Class , ep-well:MudClass ; | 104 | + rdfs:subClassOf ep-well:Mud ; |
| 105 | - rdfs:label "mud - water based"^^xsd:string ; | 105 | + owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-waterBased . |
| 106 | - rdfs:subClassOf ep-well:Mud ; | 106 | + |
| 107 | - owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-other . | 107 | +ep-well:Mud-waterBased |
| 108 | - | 108 | + rdf:type ep-well:MudClass , owl:Class ; |
| 109 | -ep-well:MudClass | 109 | + rdfs:label "mud - water based"^^xsd:string ; |
| 110 | - rdf:type owl:Class ; | 110 | + rdfs:subClassOf ep-well:Mud ; |
| 111 | - rdfs:label "mud class"^^xsd:string ; | 111 | + owl:disjointWith ep-well:Mud-oilBased , ep-well:Mud-other . |
| 112 | - rdfs:subClassOf ep-well:FluidType . | 112 | + |
| 113 | - | 113 | +ep-well:MudClass |
| 114 | -ep-well:NotHphtWellBore | 114 | + rdf:type owl:Class ; |
| 115 | - rdf:type ep-well:WellBoreHphtType , owl:Class ; | 115 | + rdfs:label "mud class"^^xsd:string ; |
| 116 | - rdfs:label "not high pressure high temperature well bore"^^xsd:string ; | 116 | + rdfs:subClassOf ep-well:FluidType . |
| 117 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 117 | + |
| 118 | - owl:disjointWith ep-well:HphtWellBore . | 118 | +ep-well:NotHphtWellBore |
| 119 | - | 119 | + rdf:type ep-well:WellBoreHphtType , owl:Class ; |
| 120 | -ep-well:Oil | 120 | + rdfs:label "not high pressure high temperature well bore"^^xsd:string ; |
| 121 | - rdf:type ep-well:FluidComponentType , owl:Class ; | 121 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 122 | - rdfs:label "oil"^^xsd:string ; | 122 | + owl:disjointWith ep-well:HphtWellBore . |
| 123 | - rdfs:subClassOf ep-well:Fluid . | 123 | + |
| 124 | - | 124 | +ep-well:Oil |
| 125 | -ep-well:PositionWithinWellBore | 125 | + rdf:type ep-well:FluidComponentType , owl:Class ; |
| 126 | - rdf:type owl:Class ; | 126 | + rdfs:label "oil"^^xsd:string ; |
| 127 | - rdfs:label "position within wellbore"^^xsd:string ; | 127 | + rdfs:subClassOf ep-well:Fluid . |
| 128 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 128 | + |
| 129 | - | 129 | +ep-well:PositionWithinWellBore |
| 130 | -ep-well:RecoveredCore | 130 | + rdf:type owl:Class ; |
| 131 | - rdf:type owl:Class ; | 131 | + rdfs:label "position within wellbore"^^xsd:string ; |
| 132 | - rdfs:label "recovered core"^^xsd:string ; | 132 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 133 | - rdfs:subClassOf ep-core:PhysicalObject . | 133 | + |
| 134 | - | 134 | +ep-well:RecoveredCore |
| 135 | -ep-well:Slurry | 135 | + rdf:type owl:Class ; |
| 136 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 136 | + rdfs:label "recovered core"^^xsd:string ; |
| 137 | - rdfs:label "slurry"^^xsd:string ; | 137 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 138 | - rdfs:subClassOf ep-well:CementingFluid ; | 138 | + |
| 139 | - owl:disjointWith ep-well:Wash , ep-well:Spacer , ep-well:Mud . | 139 | +ep-well:Slurry |
| 140 | - | 140 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 141 | -ep-well:Spacer | 141 | + rdfs:label "slurry"^^xsd:string ; |
| 142 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 142 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 143 | - rdfs:label "spacer"^^xsd:string ; | 143 | + owl:disjointWith ep-well:Mud , ep-well:Spacer , ep-well:Wash . |
| 144 | - rdfs:subClassOf ep-well:CementingFluid ; | 144 | + |
| 145 | - owl:disjointWith ep-well:Slurry , ep-well:Wash , ep-well:Mud . | 145 | +ep-well:Spacer |
| 146 | - | 146 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 147 | -ep-well:SpatialPartOfAWell | 147 | + rdfs:label "spacer"^^xsd:string ; |
| 148 | - rdf:type owl:Class ; | 148 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 149 | - rdfs:label "spatial part of a well "^^xsd:string ; | 149 | + owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Wash . |
| 150 | - rdfs:subClassOf ep-core:PhysicalObject . | 150 | + |
| 151 | - | 151 | +ep-well:SpatialPartOfAWell |
| 152 | -ep-well:SpatialPartOfAWellBore | 152 | + rdf:type owl:Class ; |
| 153 | - rdf:type owl:Class ; | 153 | + rdfs:label "spatial part of a well "^^xsd:string ; |
| 154 | - rdfs:label "spatial part of a well bore"^^xsd:string ; | 154 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 155 | - rdfs:subClassOf ep-core:PhysicalObject . | 155 | + |
| 156 | - | 156 | +ep-well:SpatialPartOfAWellBore |
| 157 | -ep-well:SurroundingRockFormation | 157 | + rdf:type owl:Class ; |
| 158 | - rdf:type owl:Class ; | 158 | + rdfs:label "spatial part of a well bore"^^xsd:string ; |
| 159 | - rdfs:label "surrounding rock formation"^^xsd:string ; | 159 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 160 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 160 | + |
| 161 | - | 161 | +ep-well:SurroundingRockFormation |
| 162 | -ep-well:TemporalPartOfAWell | 162 | + rdf:type owl:Class ; |
| 163 | - rdf:type owl:Class ; | 163 | + rdfs:label "surrounding rock formation"^^xsd:string ; |
| 164 | - rdfs:label "(temporal part of a) well"^^xsd:string ; | 164 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 165 | - rdfs:subClassOf ep-core:PhysicalObject . | 165 | + |
| 166 | - | 166 | +ep-well:TemporalPartOfAWell |
| 167 | -ep-well:TemporalPartOfAWellBore | 167 | + rdf:type owl:Class ; |
| 168 | - rdf:type owl:Class ; | 168 | + rdfs:label "(temporal part of a) well"^^xsd:string ; |
| 169 | - rdfs:label "(temporal part of a) wellbore"^^xsd:string ; | 169 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 170 | - rdfs:subClassOf ep-core:PhysicalObject . | 170 | + |
| 171 | - | 171 | +ep-well:TemporalPartOfAWellBore |
| 172 | -ep-well:TightWellBore | 172 | + rdf:type owl:Class ; |
| 173 | - rdf:type owl:Class , ep-well:WellBoreTightnessType ; | 173 | + rdfs:label "(temporal part of a) wellbore"^^xsd:string ; |
| 174 | - rdfs:label "tight well bore"^^xsd:string ; | 174 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 175 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 175 | + |
| 176 | - owl:disjointWith ep-well:LeakyWellBore . | 176 | +ep-well:TightWellBore |
| 177 | - | 177 | + rdf:type ep-well:WellBoreTightnessType , owl:Class ; |
| 178 | -ep-well:UserDescribedCementingFluidType | 178 | + rdfs:label "tight well bore"^^xsd:string ; |
| 179 | - rdf:type owl:Class ; | 179 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 180 | - rdfs:label "user described cementing fluid type"^^xsd:string ; | 180 | + owl:disjointWith ep-well:LeakyWellBore . |
| 181 | - rdfs:subClassOf ep-well:FluidType . | 181 | + |
| 182 | - | 182 | +ep-well:UserDescribedCementingFluidType |
| 183 | -ep-well:Wash | 183 | + rdf:type owl:Class ; |
| 184 | - rdf:type ep-well:CementingFluidType , owl:Class ; | 184 | + rdfs:label "user described cementing fluid type"^^xsd:string ; |
| 185 | - rdfs:label "wash"^^xsd:string ; | 185 | + rdfs:subClassOf ep-well:FluidType . |
| 186 | - rdfs:subClassOf ep-well:CementingFluid ; | 186 | + |
| 187 | - owl:disjointWith ep-well:Slurry , ep-well:Spacer , ep-well:Mud . | 187 | +ep-well:Wash |
| 188 | - | 188 | + rdf:type ep-well:CementingFluidType , owl:Class ; |
| 189 | -ep-well:Water | 189 | + rdfs:label "wash"^^xsd:string ; |
| 190 | - rdf:type owl:Class , ep-well:FluidComponentType ; | 190 | + rdfs:subClassOf ep-well:CementingFluid ; |
| 191 | - rdfs:label "water"^^xsd:string ; | 191 | + owl:disjointWith ep-well:Mud , ep-well:Slurry , ep-well:Spacer . |
| 192 | - rdfs:subClassOf ep-well:Fluid . | 192 | + |
| 193 | - | 193 | +ep-well:Water |
| 194 | -ep-well:Well | 194 | + rdf:type ep-well:FluidComponentType , owl:Class ; |
| 195 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 195 | + rdfs:label "water"^^xsd:string ; |
| 196 | - rdfs:label "well (whole life)"^^xsd:string ; | 196 | + rdfs:subClassOf ep-well:Fluid . |
| 197 | - rdfs:subClassOf ep-well:TemporalPartOfAWell . | 197 | + |
| 198 | - | 198 | +ep-well:Well |
| 199 | -ep-well:WellBore | 199 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 200 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 200 | + rdfs:label "well (whole life)"^^xsd:string ; |
| 201 | - rdfs:label "wellbore (whole life)"^^xsd:string ; | 201 | + rdfs:subClassOf ep-well:TemporalPartOfAWell . |
| 202 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 202 | + |
| 203 | - rdfs:subClassOf | 203 | +ep-well:WellBore |
| 204 | - [ rdf:type owl:Restriction ; | 204 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 205 | - owl:cardinality "1"^^xsd:nonNegativeInteger ; | 205 | + rdfs:label "wellbore (whole life)"^^xsd:string ; |
| 206 | - owl:onProperty ep-core:name | 206 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 207 | - ] . | 207 | + rdfs:subClassOf |
| 208 | - | 208 | + [ rdf:type owl:Restriction ; |
| 209 | -ep-well:WellBoreBottom | 209 | + owl:cardinality "1"^^xsd:nonNegativeInteger ; |
| 210 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 210 | + owl:onProperty ep-core:name |
| 211 | - rdfs:label "wellbore bottom"^^xsd:string ; | 211 | + ] . |
| 212 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 212 | + |
| 213 | - | 213 | +ep-well:WellBoreBottom |
| 214 | -ep-well:WellBoreHphtType | 214 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 215 | - rdf:type rdfs:Class ; | 215 | + rdfs:label "wellbore bottom"^^xsd:string ; |
| 216 | - rdfs:label "well bore high pressure high temperature type"^^xsd:string ; | 216 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 217 | - rdfs:subClassOf owl:Class . | 217 | + |
| 218 | - | 218 | +ep-well:WellBoreHphtType |
| 219 | -ep-well:WellBoreKickOff | 219 | + rdf:type rdfs:Class ; |
| 220 | - rdf:type owl:Class ; | 220 | + rdfs:label "well bore high pressure high temperature type"^^xsd:string ; |
| 221 | - rdfs:label "wellbore kickoff"^^xsd:string ; | 221 | + rdfs:subClassOf owl:Class . |
| 222 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 222 | + |
| 223 | - | 223 | +ep-well:WellBoreKickOff |
| 224 | -ep-well:WellBorePilotHole | 224 | + rdf:type owl:Class ; |
| 225 | - rdf:type owl:Class ; | 225 | + rdfs:label "wellbore kickoff"^^xsd:string ; |
| 226 | - rdfs:label "wellbore pilot hole"^^xsd:string ; | 226 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 227 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 227 | + |
| 228 | - | 228 | +ep-well:WellBorePilotHole |
| 229 | -ep-well:WellBoreSection | 229 | + rdf:type owl:Class ; |
| 230 | - rdf:type owl:Class ; | 230 | + rdfs:label "wellbore pilot hole"^^xsd:string ; |
| 231 | - rdfs:label "wellbore section"^^xsd:string ; | 231 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 232 | - rdfs:subClassOf ep-well:SpatialPartOfAWellBore . | 232 | + |
| 233 | - | 233 | +ep-well:WellBoreSection |
| 234 | -ep-well:WellBoreTightnessType | 234 | + rdf:type owl:Class ; |
| 235 | - rdf:type rdfs:Class ; | 235 | + rdfs:label "wellbore section"^^xsd:string ; |
| 236 | - rdfs:label "well bore tightness type"^^xsd:string ; | 236 | + rdfs:subClassOf ep-well:SpatialPartOfAWellBore . |
| 237 | - rdfs:subClassOf owl:Class . | 237 | + |
| 238 | - | 238 | +ep-well:WellBoreTightnessType |
| 239 | -ep-well:WellBoreWithCirculation | 239 | + rdf:type rdfs:Class ; |
| 240 | - rdf:type owl:Class ; | 240 | + rdfs:label "well bore tightness type"^^xsd:string ; |
| 241 | - rdfs:label "well bore with circulation"^^xsd:string ; | 241 | + rdfs:subClassOf owl:Class . |
| 242 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 242 | + |
| 243 | - owl:disjointWith ep-well:WellBoreWithoutCirculation . | 243 | +ep-well:WellBoreWithCirculation |
| 244 | - | 244 | + rdf:type owl:Class ; |
| 245 | -ep-well:WellBoreWithoutCirculation | 245 | + rdfs:label "well bore with circulation"^^xsd:string ; |
| 246 | - rdf:type owl:Class ; | 246 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 247 | - rdfs:label "well bore without circulation"^^xsd:string ; | 247 | + owl:disjointWith ep-well:WellBoreWithoutCirculation . |
| 248 | - rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; | 248 | + |
| 249 | - owl:disjointWith ep-well:WellBoreWithCirculation . | 249 | +ep-well:WellBoreWithoutCirculation |
| 250 | - | 250 | + rdf:type owl:Class ; |
| 251 | -ep-well:WellGroup | 251 | + rdfs:label "well bore without circulation"^^xsd:string ; |
| 252 | - rdf:type owl:Class , ep-fac:ProductionFacilityType ; | 252 | + rdfs:subClassOf ep-well:TemporalPartOfAWellBore ; |
| 253 | - rdfs:label "well group"^^xsd:string ; | 253 | + owl:disjointWith ep-well:WellBoreWithCirculation . |
| 254 | - rdfs:subClassOf ep-core:PhysicalObject . | 254 | + |
| 255 | - | 255 | +ep-well:WellGroup |
| 256 | -ep-well:WellHead | 256 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 257 | - rdf:type ep-fac:ProductionFacilityType , owl:Class ; | 257 | + rdfs:label "well group"^^xsd:string ; |
| 258 | - rdfs:label "well head"^^xsd:string ; | 258 | + rdfs:subClassOf ep-core:PhysicalObject . |
| 259 | - rdfs:subClassOf ep-well:SpatialPartOfAWell . | 259 | + |
| 260 | - | 260 | +ep-well:WellHead |
| 261 | -ep-well:averageBottomHolePressure | 261 | + rdf:type ep-fac:ProductionFacilityType , owl:Class ; |
| 262 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 262 | + rdfs:label "well head"^^xsd:string ; |
| 263 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 263 | + rdfs:subClassOf ep-well:SpatialPartOfAWell . |
| 264 | - rdfs:label "average bottom hole pressure"^^xsd:string ; | 264 | + |
| 265 | - rdfs:range ep-core:Pressure . | 265 | +ep-well:averageBottomHolePressure |
| 266 | - | 266 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 267 | -ep-well:averageBottomHoleTemperature | 267 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 268 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 268 | + rdfs:label "average bottom hole pressure"^^xsd:string ; |
| 269 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 269 | + rdfs:range ep-core:Pressure . |
| 270 | - rdfs:label "average bottom hole temperature"^^xsd:string ; | 270 | + |
| 271 | - rdfs:range ep-core:Temperature . | 271 | +ep-well:averageBottomHoleTemperature |
| 272 | - | 272 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 273 | -ep-well:azimuth | 273 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 274 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 274 | + rdfs:label "average bottom hole temperature"^^xsd:string ; |
| 275 | - rdfs:domain ep-well:PositionWithinWellBore ; | 275 | + rdfs:range ep-core:Temperature . |
| 276 | - rdfs:label "azimuth"^^xsd:string ; | 276 | + |
| 277 | - rdfs:range ep-core:PlaneAngle . | 277 | +ep-well:azimuth |
| 278 | - | 278 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 279 | -ep-well:bottomHoleMeasuredDepth | 279 | + rdfs:domain ep-well:PositionWithinWellBore ; |
| 280 | - rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; | 280 | + rdfs:label "azimuth"^^xsd:string ; |
| 281 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 281 | + rdfs:range ep-core:PlaneAngle . |
| 282 | - rdfs:label "bottom hole measured depth"^^xsd:string ; | 282 | + |
| 283 | - rdfs:range ep-core:Length . | 283 | +ep-well:bottomHoleMeasuredDepth |
| 284 | - | 284 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 285 | -ep-well:bottomHoleTemperature | 285 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 286 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 286 | + rdfs:label "bottom hole measured depth"^^xsd:string ; |
| 287 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 287 | + rdfs:range ep-core:Length . |
| 288 | - rdfs:label "bottom hole temperature"^^xsd:string ; | 288 | + |
| 289 | - rdfs:range ep-core:Temperature . | 289 | +ep-well:bottomHoleTemperature |
| 290 | - | 290 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 291 | -ep-well:bottomHoleTrueVerticalDepth | 291 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 292 | - rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; | 292 | + rdfs:label "bottom hole temperature"^^xsd:string ; |
| 293 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 293 | + rdfs:range ep-core:Temperature . |
| 294 | - rdfs:label "bottom hole true vertical depth"^^xsd:string ; | 294 | + |
| 295 | - rdfs:range ep-core:Length . | 295 | +ep-well:bottomHoleTrueVerticalDepth |
| 296 | - | 296 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 297 | -ep-well:carbonDioxideConcentration | 297 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 298 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 298 | + rdfs:label "bottom hole true vertical depth"^^xsd:string ; |
| 299 | - rdfs:domain ep-well:Gas ; | 299 | + rdfs:range ep-core:Length . |
| 300 | - rdfs:label "carbon dioxide concentration"^^xsd:string ; | 300 | + |
| 301 | - rdfs:range ep-core:SpecificMass . | 301 | +ep-well:carbonDioxideConcentration |
| 302 | - | 302 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 303 | -ep-well:cementingFluidPerCentFreeWater | 303 | + rdfs:domain ep-well:Gas ; |
| 304 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 304 | + rdfs:label "carbon dioxide concentration"^^xsd:string ; |
| 305 | - rdfs:domain ep-well:CementingFluid ; | 305 | + rdfs:range ep-core:SpecificMass . |
| 306 | - rdfs:label "cementing fluid per cent free water"^^xsd:string ; | 306 | + |
| 307 | - rdfs:range ep-core:SpecificVolume . | 307 | +ep-well:cementingFluidPerCentFreeWater |
| 308 | - | 308 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 309 | -ep-well:cementingFluidThickeningTime | 309 | + rdfs:domain ep-well:CementingFluid ; |
| 310 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 310 | + rdfs:label "cementing fluid per cent free water"^^xsd:string ; |
| 311 | - rdfs:domain ep-well:CementingFluid ; | 311 | + rdfs:range ep-core:SpecificVolume . |
| 312 | - rdfs:label "cementing fluid thickening time"^^xsd:string ; | 312 | + |
| 313 | - rdfs:range ep-core:TimeDuration . | 313 | +ep-well:cementingFluidThickeningTime |
| 314 | - | 314 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 315 | -ep-well:chlorideConcentration | 315 | + rdfs:domain ep-well:CementingFluid ; |
| 316 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 316 | + rdfs:label "cementing fluid thickening time"^^xsd:string ; |
| 317 | - rdfs:domain ep-well:Gas ; | 317 | + rdfs:range ep-core:TimeDuration . |
| 318 | - rdfs:label "chloride concentration"^^xsd:string ; | 318 | + |
| 319 | - rdfs:range ep-core:SpecificMass . | 319 | +ep-well:chlorideConcentration |
| 320 | - | 320 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 321 | -ep-well:coreLength | 321 | + rdfs:domain ep-well:Gas ; |
| 322 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 322 | + rdfs:label "chloride concentration"^^xsd:string ; |
| 323 | - rdfs:domain ep-well:RecoveredCore ; | 323 | + rdfs:range ep-core:SpecificMass . |
| 324 | - rdfs:label "core length"^^xsd:string ; | 324 | + |
| 325 | - rdfs:range ep-core:Length . | 325 | +ep-well:coreLength |
| 326 | - | 326 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 327 | -ep-well:diameterOfAWellBorePilotHole | 327 | + rdfs:domain ep-well:RecoveredCore ; |
| 328 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 328 | + rdfs:label "core length"^^xsd:string ; |
| 329 | - rdfs:domain ep-well:WellBorePilotHole ; | 329 | + rdfs:range ep-core:Length . |
| 330 | - rdfs:label "diameter of a wellbore pilot hole"^^xsd:string ; | 330 | + |
| 331 | - rdfs:range ep-core:Length . | 331 | +ep-well:diameterOfAWellBorePilotHole |
| 332 | - | 332 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 333 | -ep-well:dominantComponent | 333 | + rdfs:domain ep-well:WellBorePilotHole ; |
| 334 | - rdf:type owl:ObjectProperty ; | 334 | + rdfs:label "diameter of a wellbore pilot hole"^^xsd:string ; |
| 335 | - rdfs:domain ep-well:Fluid ; | 335 | + rdfs:range ep-core:Length . |
| 336 | - rdfs:label "dominant component"^^xsd:string ; | 336 | + |
| 337 | - rdfs:range ep-well:FluidComponentType . | 337 | +ep-well:dominantComponent |
| 338 | - | 338 | + rdf:type owl:ObjectProperty ; |
| 339 | -ep-well:ethaneConcentration | 339 | + rdfs:domain ep-well:Fluid ; |
| 340 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 340 | + rdfs:label "dominant component"^^xsd:string ; |
| 341 | - rdfs:domain ep-well:Gas ; | 341 | + rdfs:range ep-well:FluidComponentType . |
| 342 | - rdfs:label "ethane concentration"^^xsd:string ; | 342 | + |
| 343 | - rdfs:range ep-core:SpecificVolume . | 343 | +ep-well:ethaneConcentration |
| 344 | - | 344 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 345 | -ep-well:finalBottomHoleMeasuredDepth | 345 | + rdfs:domain ep-well:Gas ; |
| 346 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 346 | + rdfs:label "ethane concentration"^^xsd:string ; |
| 347 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 347 | + rdfs:range ep-core:SpecificVolume . |
| 348 | - rdfs:label "final bottom hole measured depth"^^xsd:string ; | 348 | + |
| 349 | - rdfs:range ep-core:Length . | 349 | +ep-well:finalBottomHoleMeasuredDepth |
| 350 | - | 350 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 351 | -ep-well:finalBottomHoleTrueVerticalDepth | 351 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 352 | - rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; | 352 | + rdfs:label "final bottom hole measured depth"^^xsd:string ; |
| 353 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 353 | + rdfs:range ep-core:Length . |
| 354 | - rdfs:label "final bottom hole true vertical depth"^^xsd:string ; | 354 | + |
| 355 | - rdfs:range ep-core:Length . | 355 | +ep-well:finalBottomHoleTrueVerticalDepth |
| 356 | - | 356 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 357 | -ep-well:gasConcentrationHigh | 357 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 358 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 358 | + rdfs:label "final bottom hole true vertical depth"^^xsd:string ; |
| 359 | - rdfs:domain ep-well:Fluid ; | 359 | + rdfs:range ep-core:Length . |
| 360 | - rdfs:label "gas concentration - high"^^xsd:string ; | 360 | + |
| 361 | - rdfs:range ep-core:SpecificVolume . | 361 | +ep-well:gasConcentrationHigh |
| 362 | - | 362 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 363 | -ep-well:gasConcentrationLow | 363 | + rdfs:domain ep-well:Fluid ; |
| 364 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 364 | + rdfs:label "gas concentration - high"^^xsd:string ; |
| 365 | - rdfs:domain ep-well:Fluid ; | 365 | + rdfs:range ep-core:SpecificVolume . |
| 366 | - rdfs:label "gas concentration - low"^^xsd:string ; | 366 | + |
| 367 | - rdfs:range ep-core:SpecificVolume . | 367 | +ep-well:gasConcentrationLow |
| 368 | - | 368 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 369 | -ep-well:gasOilRatio | 369 | + rdfs:domain ep-well:Fluid ; |
| 370 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 370 | + rdfs:label "gas concentration - low"^^xsd:string ; |
| 371 | - rdfs:domain ep-well:Fluid ; | 371 | + rdfs:range ep-core:SpecificVolume . |
| 372 | - rdfs:label "gas oil ratio"^^xsd:string ; | 372 | + |
| 373 | - rdfs:range ep-core:SpecificVolume . | 373 | +ep-well:gasOilRatio |
| 374 | - | 374 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 375 | -ep-well:hasBarrel | 375 | + rdfs:domain ep-well:Fluid ; |
| 376 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | 376 | + rdfs:label "gas oil ratio"^^xsd:string ; |
| 377 | - rdfs:domain ep-well:RecoveredCore ; | 377 | + rdfs:range ep-core:SpecificVolume . |
| 378 | - rdfs:label "has barrel"^^xsd:string ; | 378 | + |
| 379 | - rdfs:range <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> . | 379 | +ep-well:hasBarrel |
| 380 | - | 380 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; |
| 381 | -ep-well:hydrogenSulfideConcentration | 381 | + rdfs:domain ep-well:RecoveredCore ; |
| 382 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 382 | + rdfs:label "has barrel"^^xsd:string ; |
| 383 | - rdfs:domain ep-well:Gas ; | 383 | + rdfs:range <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> . |
| 384 | - rdfs:label "hydrogen sulfide concentration"^^xsd:string ; | 384 | + |
| 385 | - rdfs:range ep-core:SpecificMass . | 385 | +ep-well:hydrogenSulfideConcentration |
| 386 | - | 386 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 387 | -ep-well:inclination | 387 | + rdfs:domain ep-well:Gas ; |
| 388 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 388 | + rdfs:label "hydrogen sulfide concentration"^^xsd:string ; |
| 389 | - rdfs:domain ep-well:PositionWithinWellBore ; | 389 | + rdfs:range ep-core:SpecificMass . |
| 390 | - rdfs:label "inclination"^^xsd:string ; | 390 | + |
| 391 | - rdfs:range ep-core:PlaneAngle . | 391 | +ep-well:inclination |
| 392 | - | 392 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 393 | -ep-well:initialBottomHoleMeasuredDepth | 393 | + rdfs:domain ep-well:PositionWithinWellBore ; |
| 394 | - rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; | 394 | + rdfs:label "inclination"^^xsd:string ; |
| 395 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 395 | + rdfs:range ep-core:PlaneAngle . |
| 396 | - rdfs:label "initial bottom hole measured depth"^^xsd:string ; | 396 | + |
| 397 | - rdfs:range ep-core:Length . | 397 | +ep-well:initialBottomHoleMeasuredDepth |
| 398 | - | 398 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 399 | -ep-well:isoButaneConcentration | 399 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 400 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 400 | + rdfs:label "initial bottom hole measured depth"^^xsd:string ; |
| 401 | - rdfs:domain ep-well:Gas ; | 401 | + rdfs:range ep-core:Length . |
| 402 | - rdfs:label "iso-Butane concentration"^^xsd:string ; | 402 | + |
| 403 | - rdfs:range ep-core:SpecificVolume . | 403 | +ep-well:isoButaneConcentration |
| 404 | - | 404 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 405 | -ep-well:isoPentaneConcentration | 405 | + rdfs:domain ep-well:Gas ; |
| 406 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 406 | + rdfs:label "iso-Butane concentration"^^xsd:string ; |
| 407 | - rdfs:domain ep-well:Gas ; | 407 | + rdfs:range ep-core:SpecificVolume . |
| 408 | - rdfs:label "iso-Pentane concentration"^^xsd:string ; | 408 | + |
| 409 | - rdfs:range ep-core:SpecificVolume . | 409 | +ep-well:isoPentaneConcentration |
| 410 | - | 410 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 411 | -ep-well:lithologyDescription | 411 | + rdfs:domain ep-well:Gas ; |
| 412 | - rdf:type owl:DatatypeProperty ; | 412 | + rdfs:label "iso-Pentane concentration"^^xsd:string ; |
| 413 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 413 | + rdfs:range ep-core:SpecificVolume . |
| 414 | - rdfs:label "lithology description"^^xsd:string . | 414 | + |
| 415 | - | 415 | +ep-well:lithologyDescription |
| 416 | -ep-well:measuredDepth | 416 | + rdf:type owl:DatatypeProperty ; |
| 417 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 417 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 418 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 418 | + rdfs:label "lithology description"^^xsd:string . |
| 419 | - rdfs:label "measured depth"^^xsd:string ; | 419 | + |
| 420 | - rdfs:range ep-core:Length . | 420 | +ep-well:measuredDepth |
| 421 | - | 421 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 422 | -ep-well:measuredDepthOfPlugTop | 422 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 423 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 423 | + rdfs:label "measured depth"^^xsd:string ; |
| 424 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 424 | + rdfs:range ep-core:Length . |
| 425 | - rdfs:label "measured depth of plug top"^^xsd:string ; | 425 | + |
| 426 | - rdfs:range ep-core:Length . | 426 | +ep-well:measuredDepthOfPlugTop |
| 427 | - | 427 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 428 | -ep-well:measuredDepthToTheBottomOfAPartOfAWellBore | 428 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 429 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 429 | + rdfs:label "measured depth of plug top"^^xsd:string ; |
| 430 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 430 | + rdfs:range ep-core:Length . |
| 431 | - rdfs:label "measured depth to the bottom of a part of a wellbore"^^xsd:string ; | 431 | + |
| 432 | - rdfs:range ep-core:Length . | 432 | +ep-well:measuredDepthToTheBottomOfAPartOfAWellBore |
| 433 | - | 433 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 434 | -ep-well:measuredDepthToTheTopOfAPartOfAWellBore | 434 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 435 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 435 | + rdfs:label "measured depth to the bottom of a part of a wellbore"^^xsd:string ; |
| 436 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 436 | + rdfs:range ep-core:Length . |
| 437 | - rdfs:label "measured depth to the top of a part of a wellbore"^^xsd:string ; | 437 | + |
| 438 | - rdfs:range ep-core:Length . | 438 | +ep-well:measuredDepthToTheTopOfAPartOfAWellBore |
| 439 | - | 439 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 440 | -ep-well:methaneConcentration | 440 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 441 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 441 | + rdfs:label "measured depth to the top of a part of a wellbore"^^xsd:string ; |
| 442 | - rdfs:domain ep-well:Gas ; | 442 | + rdfs:range ep-core:Length . |
| 443 | - rdfs:label "methane concentration"^^xsd:string ; | 443 | + |
| 444 | - rdfs:range ep-core:SpecificVolume . | 444 | +ep-well:methaneConcentration |
| 445 | - | 445 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 446 | -ep-well:nominalInsideDiameterOfBoreHole | 446 | + rdfs:domain ep-well:Gas ; |
| 447 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 447 | + rdfs:label "methane concentration"^^xsd:string ; |
| 448 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 448 | + rdfs:range ep-core:SpecificVolume . |
| 449 | - rdfs:label "nominal inside diameter of borehole"^^xsd:string ; | 449 | + |
| 450 | - rdfs:range ep-core:Length . | 450 | +ep-well:nominalInsideDiameterOfBoreHole |
| 451 | - | 451 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 452 | -ep-well:norButaneConcentration | 452 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 453 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 453 | + rdfs:label "nominal inside diameter of borehole"^^xsd:string ; |
| 454 | - rdfs:domain ep-well:Gas ; | 454 | + rdfs:range ep-core:Length . |
| 455 | - rdfs:label "nor-Butane concentration"^^xsd:string ; | 455 | + |
| 456 | - rdfs:range ep-core:SpecificVolume . | 456 | +ep-well:norButaneConcentration |
| 457 | - | 457 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 458 | -ep-well:plannedBottomHoleMeasuredDepth | 458 | + rdfs:domain ep-well:Gas ; |
| 459 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 459 | + rdfs:label "nor-Butane concentration"^^xsd:string ; |
| 460 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 460 | + rdfs:range ep-core:SpecificVolume . |
| 461 | - rdfs:label "planned bottom hole measured depth"^^xsd:string ; | 461 | + |
| 462 | - rdfs:range ep-core:Length . | 462 | +ep-well:plannedBottomHoleMeasuredDepth |
| 463 | - | 463 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 464 | -ep-well:plannedPilotBottomHoleMeasuredDepth | 464 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 465 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 465 | + rdfs:label "planned bottom hole measured depth"^^xsd:string ; |
| 466 | - rdfs:domain ep-well:WellBorePilotHole ; | 466 | + rdfs:range ep-core:Length . |
| 467 | - rdfs:label "planned pilot bottom hole measured depth"^^xsd:string ; | 467 | + |
| 468 | - rdfs:range ep-core:Length . | 468 | +ep-well:plannedPilotBottomHoleMeasuredDepth |
| 469 | - | 469 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 470 | -ep-well:plannedPilotBottomHoleTrueVerticalDepth | 470 | + rdfs:domain ep-well:WellBorePilotHole ; |
| 471 | - rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; | 471 | + rdfs:label "planned pilot bottom hole measured depth"^^xsd:string ; |
| 472 | - rdfs:domain ep-well:WellBorePilotHole ; | 472 | + rdfs:range ep-core:Length . |
| 473 | - rdfs:label "planned pilot bottom hole true vertical depth"^^xsd:string ; | 473 | + |
| 474 | - rdfs:range ep-core:Length . | 474 | +ep-well:plannedPilotBottomHoleTrueVerticalDepth |
| 475 | - | 475 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 476 | -ep-well:porePressure | 476 | + rdfs:domain ep-well:WellBorePilotHole ; |
| 477 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 477 | + rdfs:label "planned pilot bottom hole true vertical depth"^^xsd:string ; |
| 478 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 478 | + rdfs:range ep-core:Length . |
| 479 | - rdfs:label "pore pressure"^^xsd:string ; | 479 | + |
| 480 | - rdfs:range ep-core:Pressure . | 480 | +ep-well:porePressure |
| 481 | - | 481 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 482 | -ep-well:porePressureEquivalentMudDensity | 482 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 483 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 483 | + rdfs:label "pore pressure"^^xsd:string ; |
| 484 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 484 | + rdfs:range ep-core:Pressure . |
| 485 | - rdfs:label "pore pressure - equivalent mud density"^^xsd:string ; | 485 | + |
| 486 | - rdfs:range ep-core:Density . | 486 | +ep-well:porePressureEquivalentMudDensity |
| 487 | - | 487 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 488 | -ep-well:propaneConcentration | 488 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 489 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 489 | + rdfs:label "pore pressure - equivalent mud density"^^xsd:string ; |
| 490 | - rdfs:domain ep-well:Gas ; | 490 | + rdfs:range ep-core:Density . |
| 491 | - rdfs:label "propane concentration"^^xsd:string ; | 491 | + |
| 492 | - rdfs:range ep-core:SpecificVolume . | 492 | +ep-well:propaneConcentration |
| 493 | - | 493 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 494 | -ep-well:ratioOfCementMixToWater | 494 | + rdfs:domain ep-well:Gas ; |
| 495 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 495 | + rdfs:label "propane concentration"^^xsd:string ; |
| 496 | - rdfs:domain ep-well:CementingFluid ; | 496 | + rdfs:range ep-core:SpecificVolume . |
| 497 | - rdfs:label "ratio of cement mix to water"^^xsd:string ; | 497 | + |
| 498 | - rdfs:range ep-core:SpecificVolume . | 498 | +ep-well:ratioOfCementMixToWater |
| 499 | - | 499 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 500 | -ep-well:relativeAmountOfCoreRecovered | 500 | + rdfs:domain ep-well:CementingFluid ; |
| 501 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 501 | + rdfs:label "ratio of cement mix to water"^^xsd:string ; |
| 502 | - rdfs:domain ep-well:RecoveredCore ; | 502 | + rdfs:range ep-core:SpecificVolume . |
| 503 | - rdfs:label "relative amount of core recovered"^^xsd:string ; | 503 | + |
| 504 | - rdfs:range ep-core:SpecificVolume . | 504 | +ep-well:relativeAmountOfCoreRecovered |
| 505 | - | 505 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 506 | -ep-well:showDescription | 506 | + rdfs:domain ep-well:RecoveredCore ; |
| 507 | - rdf:type owl:DatatypeProperty ; | 507 | + rdfs:label "relative amount of core recovered"^^xsd:string ; |
| 508 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 508 | + rdfs:range ep-core:SpecificVolume . |
| 509 | - rdfs:label "show description"^^xsd:string . | 509 | + |
| 510 | - | 510 | +ep-well:showDescription |
| 511 | -ep-well:shutInCasingPressure | 511 | + rdf:type owl:DatatypeProperty ; |
| 512 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 512 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 513 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 513 | + rdfs:label "show description"^^xsd:string . |
| 514 | - rdfs:label "shut in casing pressure"^^xsd:string ; | 514 | + |
| 515 | - rdfs:range ep-core:Pressure . | 515 | +ep-well:shutInCasingPressure |
| 516 | - | 516 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 517 | -ep-well:shutInDrillPipePressure | 517 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 518 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 518 | + rdfs:label "shut in casing pressure"^^xsd:string ; |
| 519 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 519 | + rdfs:range ep-core:Pressure . |
| 520 | - rdfs:label "shut in drill pipe pressure"^^xsd:string ; | 520 | + |
| 521 | - rdfs:range ep-core:Pressure . | 521 | +ep-well:shutInDrillPipePressure |
| 522 | - | 522 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 523 | -ep-well:stratigraphyDescription | 523 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 524 | - rdf:type owl:DatatypeProperty ; | 524 | + rdfs:label "shut in drill pipe pressure"^^xsd:string ; |
| 525 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 525 | + rdfs:range ep-core:Pressure . |
| 526 | - rdfs:label "stratigraphy description"^^xsd:string . | 526 | + |
| 527 | - | 527 | +ep-well:stratigraphyDescription |
| 528 | -ep-well:strengthOfRockFormation | 528 | + rdf:type owl:DatatypeProperty ; |
| 529 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 529 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 530 | - rdfs:domain ep-well:SurroundingRockFormation ; | 530 | + rdfs:label "stratigraphy description"^^xsd:string . |
| 531 | - rdfs:label "strength of rock formation"^^xsd:string ; | 531 | + |
| 532 | - rdfs:range ep-core:StrengthOfRockFormation . | 532 | +ep-well:strengthOfRockFormation |
| 533 | - | 533 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 534 | -ep-well:trueVerticalDepth | 534 | + rdfs:domain ep-well:SurroundingRockFormation ; |
| 535 | - rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; | 535 | + rdfs:label "strength of rock formation"^^xsd:string ; |
| 536 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 536 | + rdfs:range ep-core:StrengthOfRockFormation . |
| 537 | - rdfs:label "true vertical depth"^^xsd:string ; | 537 | + |
| 538 | - rdfs:range ep-core:Length . | 538 | +ep-well:trueVerticalDepth |
| 539 | - | 539 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 540 | -ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore | 540 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 541 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 541 | + rdfs:label "true vertical depth"^^xsd:string ; |
| 542 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 542 | + rdfs:range ep-core:Length . |
| 543 | - rdfs:label "true vertical depth to the bottom of a part of a wellbore"^^xsd:string ; | 543 | + |
| 544 | - rdfs:range ep-core:Length . | 544 | +ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore |
| 545 | - | 545 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 546 | -ep-well:trueVerticalDepthToTheTopOfAPartOfAWellBore | 546 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 547 | - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; | 547 | + rdfs:label "true vertical depth to the bottom of a part of a wellbore"^^xsd:string ; |
| 548 | - rdfs:domain ep-well:SpatialPartOfAWellBore ; | 548 | + rdfs:range ep-core:Length . |
| 549 | - rdfs:label "true vertical depth to the top of a part of a wellbore"^^xsd:string ; | 549 | + |
| 550 | - rdfs:range ep-core:Length . | 550 | +ep-well:trueVerticalDepthToTheTopOfAPartOfAWellBore |
| 551 | - | 551 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 552 | -ep-well:waterOilRatio | 552 | + rdfs:domain ep-well:SpatialPartOfAWellBore ; |
| 553 | - rdf:type owl:FunctionalProperty , owl:ObjectProperty , ep-core:Class_of_indirect_property ; | 553 | + rdfs:label "true vertical depth to the top of a part of a wellbore"^^xsd:string ; |
| 554 | - rdfs:domain ep-well:Fluid ; | 554 | + rdfs:range ep-core:Length . |
| 555 | - rdfs:label "water oil ratio"^^xsd:string ; | 555 | + |
| 556 | - rdfs:range ep-core:SpecificVolume . | 556 | +ep-well:waterOilRatio |
| 557 | - | 557 | + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ; |
| 558 | -ep-well:wellBoreCompletedAt | 558 | + rdfs:domain ep-well:Fluid ; |
| 559 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; | 559 | + rdfs:label "water oil ratio"^^xsd:string ; |
| 560 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 560 | + rdfs:range ep-core:SpecificVolume . |
| 561 | - rdfs:label "wellbore completed at"^^xsd:string . | 561 | + |
| 562 | - | 562 | +ep-well:wellBoreCompletedAt |
| 563 | -ep-well:wellBorePreSpudAt | 563 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 564 | - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; | 564 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 565 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 565 | + rdfs:label "wellbore completed at"^^xsd:string . |
| 566 | - rdfs:label "wellbore pre-spud at"^^xsd:string . | 566 | + |
| 567 | - | 567 | +ep-well:wellBorePreSpudAt |
| 568 | -ep-well:wellBoreSpudAt | 568 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; |
| 569 | - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | 569 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; |
| 570 | - rdfs:domain ep-well:TemporalPartOfAWellBore ; | 570 | + rdfs:label "wellbore pre-spud at"^^xsd:string . |
| 571 | - rdfs:label "wellbore spud at"^^xsd:string . | 571 | + |
| 572 | +ep-well:wellBoreSpudAt | ||
| 573 | + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; | ||
| 574 | + rdfs:domain ep-well:TemporalPartOfAWellBore ; | ||
| 575 | + rdfs:label "wellbore spud at"^^xsd:string . | ... | ... |
| ... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
| 21 | <http://www.reportinghub.no/ep/spin/ddr-tables> | 21 | <http://www.reportinghub.no/ep/spin/ddr-tables> |
| 22 | rdf:type owl:Ontology ; | 22 | rdf:type owl:Ontology ; |
| 23 | rdfs:comment "A collection of SELECT templates that can be used to assemble tables in DD reports."^^xsd:string ; | 23 | rdfs:comment "A collection of SELECT templates that can be used to assemble tables in DD reports."^^xsd:string ; |
| 24 | - owl:imports <http://www.reportinghub.no/spin/rh> , <http://www.reportinghub.no/ep/schema/1.0/ddr> , <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> , <http://spinrdf.org/spin> ; | 24 | + owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/activity-purpose> , <http://www.reportinghub.no/ep/schema/1.0/ddr> , <http://www.reportinghub.no/spin/rh> ; |
| 25 | owl:versionInfo "0.1.0"^^xsd:string . | 25 | owl:versionInfo "0.1.0"^^xsd:string . |
| 26 | 26 | ||
| 27 | ddr-tables:BitRecord | 27 | ddr-tables:BitRecord |
| ... | @@ -414,7 +414,7 @@ ddr-tables:CasingLinerTubingInformation | ... | @@ -414,7 +414,7 @@ ddr-tables:CasingLinerTubingInformation |
| 414 | sp:subject | 414 | sp:subject |
| 415 | [ sp:varName "dailyDrillingActivity"^^xsd:string | 415 | [ sp:varName "dailyDrillingActivity"^^xsd:string |
| 416 | ] | 416 | ] |
| 417 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellStimulation> ; | 417 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCompletion> ; |
| 418 | sp:predicate rdf:type ; | 418 | sp:predicate rdf:type ; |
| 419 | sp:subject | 419 | sp:subject |
| 420 | [ sp:varName "wellStim"^^xsd:string | 420 | [ sp:varName "wellStim"^^xsd:string |
| ... | @@ -567,44 +567,44 @@ ddr-tables:CasingLinerTubingInformation | ... | @@ -567,44 +567,44 @@ ddr-tables:CasingLinerTubingInformation |
| 567 | ]) | 567 | ]) |
| 568 | ] [ rdf:type sp:Optional ; | 568 | ] [ rdf:type sp:Optional ; |
| 569 | sp:elements ([ sp:object | 569 | sp:elements ([ sp:object |
| 570 | - [ sp:varName "casingLinerTubingType"^^xsd:string | 570 | + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string |
| 571 | ] ; | 571 | ] ; |
| 572 | sp:predicate rdf:type ; | 572 | sp:predicate rdf:type ; |
| 573 | sp:subject | 573 | sp:subject |
| 574 | [ sp:varName "casingLinerTubing"^^xsd:string | 574 | [ sp:varName "casingLinerTubing"^^xsd:string |
| 575 | ] | 575 | ] |
| 576 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#API_5CT_class> ; | 576 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#SteelGradeAPI_5CTClass> ; |
| 577 | sp:predicate rdf:type ; | 577 | sp:predicate rdf:type ; |
| 578 | sp:subject | 578 | sp:subject |
| 579 | - [ sp:varName "casingLinerTubingType"^^xsd:string | 579 | + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string |
| 580 | ] | 580 | ] |
| 581 | ] [ sp:object | 581 | ] [ sp:object |
| 582 | [ sp:varName "nominalGrade"^^xsd:string | 582 | [ sp:varName "nominalGrade"^^xsd:string |
| 583 | ] ; | 583 | ] ; |
| 584 | sp:predicate rdfs:label ; | 584 | sp:predicate rdfs:label ; |
| 585 | sp:subject | 585 | sp:subject |
| 586 | - [ sp:varName "casingLinerTubingType"^^xsd:string | 586 | + [ sp:varName "steelGradeAPI_5CTClass"^^xsd:string |
| 587 | ] | 587 | ] |
| 588 | ]) | 588 | ]) |
| 589 | ] [ rdf:type sp:Optional ; | 589 | ] [ rdf:type sp:Optional ; |
| 590 | sp:elements ([ sp:object | 590 | sp:elements ([ sp:object |
| 591 | - [ sp:varName "casingLinerTubingMPUL"^^xsd:string | 591 | + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string |
| 592 | ] ; | 592 | ] ; |
| 593 | sp:predicate rdf:type ; | 593 | sp:predicate rdf:type ; |
| 594 | sp:subject | 594 | sp:subject |
| 595 | [ sp:varName "casingLinerTubing"^^xsd:string | 595 | [ sp:varName "casingLinerTubing"^^xsd:string |
| 596 | ] | 596 | ] |
| 597 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#MassPerUnitLength> ; | 597 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeWeightAPI_5CTClass> ; |
| 598 | sp:predicate rdf:type ; | 598 | sp:predicate rdf:type ; |
| 599 | sp:subject | 599 | sp:subject |
| 600 | - [ sp:varName "casingLinerTubingMPUL"^^xsd:string | 600 | + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string |
| 601 | ] | 601 | ] |
| 602 | ] [ sp:object | 602 | ] [ sp:object |
| 603 | [ sp:varName "nominalWeight"^^xsd:string | 603 | [ sp:varName "nominalWeight"^^xsd:string |
| 604 | ] ; | 604 | ] ; |
| 605 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#pound_foot-1> ; | 605 | + sp:predicate rdfs:label ; |
| 606 | sp:subject | 606 | sp:subject |
| 607 | - [ sp:varName "casingLinerTubingMPUL"^^xsd:string | 607 | + [ sp:varName "pipeWeightAPI_5CTClass"^^xsd:string |
| 608 | ] | 608 | ] |
| 609 | ]) | 609 | ]) |
| 610 | ] [ rdf:type sp:Optional ; | 610 | ] [ rdf:type sp:Optional ; |
| ... | @@ -625,18 +625,23 @@ ddr-tables:CasingLinerTubingInformation | ... | @@ -625,18 +625,23 @@ ddr-tables:CasingLinerTubingInformation |
| 625 | ]) | 625 | ]) |
| 626 | ] [ rdf:type sp:Optional ; | 626 | ] [ rdf:type sp:Optional ; |
| 627 | sp:elements ([ sp:object | 627 | sp:elements ([ sp:object |
| 628 | - [ sp:varName "outDiam"^^xsd:string | 628 | + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string |
| 629 | ] ; | 629 | ] ; |
| 630 | - sp:predicate <http://www.reportinghub.no/ep/schema/equipment#outsideDiameterOfATubular> ; | 630 | + sp:predicate rdf:type ; |
| 631 | sp:subject | 631 | sp:subject |
| 632 | [ sp:varName "casingLinerTubing"^^xsd:string | 632 | [ sp:varName "casingLinerTubing"^^xsd:string |
| 633 | ] | 633 | ] |
| 634 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; | ||
| 635 | + sp:predicate rdf:type ; | ||
| 636 | + sp:subject | ||
| 637 | + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string | ||
| 638 | + ] | ||
| 634 | ] [ sp:object | 639 | ] [ sp:object |
| 635 | [ sp:varName "nominalOutsideDiameter"^^xsd:string | 640 | [ sp:varName "nominalOutsideDiameter"^^xsd:string |
| 636 | ] ; | 641 | ] ; |
| 637 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#inch> ; | 642 | + sp:predicate rdfs:label ; |
| 638 | sp:subject | 643 | sp:subject |
| 639 | - [ sp:varName "outDiam"^^xsd:string | 644 | + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string |
| 640 | ] | 645 | ] |
| 641 | ]) | 646 | ]) |
| 642 | ] [ rdf:type sp:Optional ; | 647 | ] [ rdf:type sp:Optional ; |
| ... | @@ -1190,18 +1195,23 @@ ddr-tables:CementInformation | ... | @@ -1190,18 +1195,23 @@ ddr-tables:CementInformation |
| 1190 | [ sp:varName "casing"^^xsd:string | 1195 | [ sp:varName "casing"^^xsd:string |
| 1191 | ] | 1196 | ] |
| 1192 | ] [ sp:object | 1197 | ] [ sp:object |
| 1193 | - [ sp:varName "odtub"^^xsd:string | 1198 | + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string |
| 1194 | ] ; | 1199 | ] ; |
| 1195 | - sp:predicate <http://www.reportinghub.no/ep/schema/equipment#outsideDiameterOfATubular> ; | 1200 | + sp:predicate rdf:type ; |
| 1196 | sp:subject | 1201 | sp:subject |
| 1197 | [ sp:varName "casing"^^xsd:string | 1202 | [ sp:varName "casing"^^xsd:string |
| 1198 | ] | 1203 | ] |
| 1204 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; | ||
| 1205 | + sp:predicate rdf:type ; | ||
| 1206 | + sp:subject | ||
| 1207 | + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string | ||
| 1208 | + ] | ||
| 1199 | ] [ sp:object | 1209 | ] [ sp:object |
| 1200 | [ sp:varName "casingStringDiameter"^^xsd:string | 1210 | [ sp:varName "casingStringDiameter"^^xsd:string |
| 1201 | ] ; | 1211 | ] ; |
| 1202 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#inch> ; | 1212 | + sp:predicate rdfs:label ; |
| 1203 | sp:subject | 1213 | sp:subject |
| 1204 | - [ sp:varName "odtub"^^xsd:string | 1214 | + [ sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string |
| 1205 | ] | 1215 | ] |
| 1206 | ]) | 1216 | ]) |
| 1207 | ] [ rdf:type sp:Optional ; | 1217 | ] [ rdf:type sp:Optional ; |
| ... | @@ -1446,87 +1456,179 @@ ddr-tables:CoreInformation | ... | @@ -1446,87 +1456,179 @@ ddr-tables:CoreInformation |
| 1446 | rdfs:subClassOf rhspin:DDRTableTemplates ; | 1456 | rdfs:subClassOf rhspin:DDRTableTemplates ; |
| 1447 | spin:body | 1457 | spin:body |
| 1448 | [ rdf:type sp:Select ; | 1458 | [ rdf:type sp:Select ; |
| 1449 | - sp:orderBy (_:b1) ; | 1459 | + sp:orderBy ([ sp:varName "coreNo"^^xsd:string |
| 1450 | - sp:resultVariables (_:b1 _:b2 _:b3 _:b4 _:b5 _:b6 _:b7 _:b8) ; | 1460 | + ]) ; |
| 1451 | - sp:where ([ sp:object _:b9 ; | 1461 | + sp:resultVariables ([ sp:varName "coreNo"^^xsd:string |
| 1462 | + ] [ sp:varName "depthTopmMD"^^xsd:string | ||
| 1463 | + ] [ sp:varName "depthBottommMDCore"^^xsd:string | ||
| 1464 | + ] [ sp:varName "length"^^xsd:string | ||
| 1465 | + ] [ sp:varName "recoveryCore"^^xsd:string | ||
| 1466 | + ] [ sp:varName "coreBarrelLength"^^xsd:string | ||
| 1467 | + ] [ sp:varName "innerBarrelType"^^xsd:string | ||
| 1468 | + ] [ sp:varName "description"^^xsd:string | ||
| 1469 | + ]) ; | ||
| 1470 | + sp:where ([ sp:object | ||
| 1471 | + [ sp:varName "reportOn"^^xsd:string | ||
| 1472 | + ] ; | ||
| 1452 | sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ; | 1473 | sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ; |
| 1453 | sp:subject | 1474 | sp:subject |
| 1454 | [ sp:varName "report"^^xsd:string | 1475 | [ sp:varName "report"^^xsd:string |
| 1455 | ] | 1476 | ] |
| 1456 | - ] [ sp:object _:b10 ; | 1477 | + ] [ sp:object |
| 1478 | + [ sp:varName "extractWellCore"^^xsd:string | ||
| 1479 | + ] ; | ||
| 1457 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 1480 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 1458 | - sp:subject _:b9 | 1481 | + sp:subject |
| 1482 | + [ sp:varName "reportOn"^^xsd:string | ||
| 1483 | + ] | ||
| 1459 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#ExtractAWellCore> ; | 1484 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#ExtractAWellCore> ; |
| 1460 | sp:predicate rdf:type ; | 1485 | sp:predicate rdf:type ; |
| 1461 | - sp:subject _:b10 | 1486 | + sp:subject |
| 1462 | - ] [ sp:object _:b1 ; | 1487 | + [ sp:varName "extractWellCore"^^xsd:string |
| 1488 | + ] | ||
| 1489 | + ] [ sp:object | ||
| 1490 | + [ sp:varName "coreNo"^^xsd:string | ||
| 1491 | + ] ; | ||
| 1463 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#identificationNumberOfCore> ; | 1492 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#identificationNumberOfCore> ; |
| 1464 | - sp:subject _:b10 | 1493 | + sp:subject |
| 1494 | + [ sp:varName "extractWellCore"^^xsd:string | ||
| 1495 | + ] | ||
| 1465 | ] [ rdf:type sp:Optional ; | 1496 | ] [ rdf:type sp:Optional ; |
| 1466 | - sp:elements ([ sp:object _:b11 ; | 1497 | + sp:elements ([ sp:object |
| 1498 | + [ sp:varName "wbState"^^xsd:string | ||
| 1499 | + ] ; | ||
| 1467 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 1500 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 1468 | - sp:subject _:b10 | 1501 | + sp:subject |
| 1502 | + [ sp:varName "extractWellCore"^^xsd:string | ||
| 1503 | + ] | ||
| 1504 | + ] [ sp:object | ||
| 1505 | + [ sp:varName "wb"^^xsd:string | ||
| 1506 | + ] ; | ||
| 1507 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | ||
| 1508 | + sp:subject | ||
| 1509 | + [ sp:varName "wbState"^^xsd:string | ||
| 1510 | + ] | ||
| 1469 | ] [ rdf:type sp:Optional ; | 1511 | ] [ rdf:type sp:Optional ; |
| 1470 | - sp:elements ([ sp:object _:b12 ; | 1512 | + sp:elements ([ sp:object |
| 1513 | + [ sp:varName "mdTop"^^xsd:string | ||
| 1514 | + ] ; | ||
| 1471 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; | 1515 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; |
| 1472 | - sp:subject _:b11 | 1516 | + sp:subject |
| 1473 | - ] [ sp:object _:b2 ; | 1517 | + [ sp:varName "wb"^^xsd:string |
| 1518 | + ] | ||
| 1519 | + ] [ sp:object | ||
| 1520 | + [ sp:varName "depthTopmMD"^^xsd:string | ||
| 1521 | + ] ; | ||
| 1474 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 1522 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 1475 | - sp:subject _:b12 | 1523 | + sp:subject |
| 1524 | + [ sp:varName "mdTop"^^xsd:string | ||
| 1525 | + ] | ||
| 1476 | ]) | 1526 | ]) |
| 1477 | ] [ rdf:type sp:Optional ; | 1527 | ] [ rdf:type sp:Optional ; |
| 1478 | - sp:elements ([ sp:object _:b13 ; | 1528 | + sp:elements ([ sp:object |
| 1529 | + [ sp:varName "mdBott"^^xsd:string | ||
| 1530 | + ] ; | ||
| 1479 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; | 1531 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; |
| 1480 | - sp:subject _:b11 | 1532 | + sp:subject |
| 1481 | - ] [ sp:object _:b3 ; | 1533 | + [ sp:varName "wb"^^xsd:string |
| 1534 | + ] | ||
| 1535 | + ] [ sp:object | ||
| 1536 | + [ sp:varName "depthBottommMDCore"^^xsd:string | ||
| 1537 | + ] ; | ||
| 1482 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 1538 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 1483 | - sp:subject _:b13 | 1539 | + sp:subject |
| 1540 | + [ sp:varName "mdBott"^^xsd:string | ||
| 1541 | + ] | ||
| 1484 | ]) | 1542 | ]) |
| 1485 | ]) | 1543 | ]) |
| 1486 | ] [ rdf:type sp:Optional ; | 1544 | ] [ rdf:type sp:Optional ; |
| 1487 | - sp:elements ([ sp:object _:b14 ; | 1545 | + sp:elements ([ sp:object |
| 1546 | + [ sp:varName "recCore"^^xsd:string | ||
| 1547 | + ] ; | ||
| 1488 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#recoveredCore> ; | 1548 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#recoveredCore> ; |
| 1489 | - sp:subject _:b10 | 1549 | + sp:subject |
| 1550 | + [ sp:varName "extractWellCore"^^xsd:string | ||
| 1551 | + ] | ||
| 1490 | ] [ rdf:type sp:Optional ; | 1552 | ] [ rdf:type sp:Optional ; |
| 1491 | - sp:elements ([ sp:object _:b8 ; | 1553 | + sp:elements ([ sp:object |
| 1554 | + [ sp:varName "description"^^xsd:string | ||
| 1555 | + ] ; | ||
| 1492 | sp:predicate rdfs:comment ; | 1556 | sp:predicate rdfs:comment ; |
| 1493 | - sp:subject _:b14 | 1557 | + sp:subject |
| 1558 | + [ sp:varName "recCore"^^xsd:string | ||
| 1559 | + ] | ||
| 1494 | ]) | 1560 | ]) |
| 1495 | ] [ rdf:type sp:Optional ; | 1561 | ] [ rdf:type sp:Optional ; |
| 1496 | - sp:elements ([ sp:object _:b15 ; | 1562 | + sp:elements ([ sp:object |
| 1563 | + [ sp:varName "coreRecPer"^^xsd:string | ||
| 1564 | + ] ; | ||
| 1497 | sp:predicate <http://www.reportinghub.no/ep/schema/well#relativeAmountOfCoreRecovered> ; | 1565 | sp:predicate <http://www.reportinghub.no/ep/schema/well#relativeAmountOfCoreRecovered> ; |
| 1498 | - sp:subject _:b14 | 1566 | + sp:subject |
| 1499 | - ] [ sp:object _:b5 ; | 1567 | + [ sp:varName "recCore"^^xsd:string |
| 1568 | + ] | ||
| 1569 | + ] [ sp:object | ||
| 1570 | + [ sp:varName "recoveryCore"^^xsd:string | ||
| 1571 | + ] ; | ||
| 1500 | sp:predicate <http://www.reportinghub.no/ep/schema/core#perCentByVolume> ; | 1572 | sp:predicate <http://www.reportinghub.no/ep/schema/core#perCentByVolume> ; |
| 1501 | - sp:subject _:b15 | 1573 | + sp:subject |
| 1574 | + [ sp:varName "coreRecPer"^^xsd:string | ||
| 1575 | + ] | ||
| 1502 | ]) | 1576 | ]) |
| 1503 | ] [ rdf:type sp:Optional ; | 1577 | ] [ rdf:type sp:Optional ; |
| 1504 | - sp:elements ([ sp:object _:b16 ; | 1578 | + sp:elements ([ sp:object |
| 1579 | + [ sp:varName "coreLength"^^xsd:string | ||
| 1580 | + ] ; | ||
| 1505 | sp:predicate <http://www.reportinghub.no/ep/schema/well#coreLength> ; | 1581 | sp:predicate <http://www.reportinghub.no/ep/schema/well#coreLength> ; |
| 1506 | - sp:subject _:b14 | 1582 | + sp:subject |
| 1507 | - ] [ sp:object _:b4 ; | 1583 | + [ sp:varName "recCore"^^xsd:string |
| 1584 | + ] | ||
| 1585 | + ] [ sp:object | ||
| 1586 | + [ sp:varName "length"^^xsd:string | ||
| 1587 | + ] ; | ||
| 1508 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 1588 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 1509 | - sp:subject _:b16 | 1589 | + sp:subject |
| 1590 | + [ sp:varName "coreLength"^^xsd:string | ||
| 1591 | + ] | ||
| 1510 | ]) | 1592 | ]) |
| 1511 | ] [ rdf:type sp:Optional ; | 1593 | ] [ rdf:type sp:Optional ; |
| 1512 | - sp:elements ([ sp:object _:b17 ; | 1594 | + sp:elements ([ sp:object |
| 1595 | + [ sp:varName "barrel"^^xsd:string | ||
| 1596 | + ] ; | ||
| 1513 | sp:predicate <http://www.reportinghub.no/ep/schema/well#hasBarrel> ; | 1597 | sp:predicate <http://www.reportinghub.no/ep/schema/well#hasBarrel> ; |
| 1514 | - sp:subject _:b14 | 1598 | + sp:subject |
| 1599 | + [ sp:varName "recCore"^^xsd:string | ||
| 1600 | + ] | ||
| 1515 | ] [ rdf:type sp:Optional ; | 1601 | ] [ rdf:type sp:Optional ; |
| 1516 | - sp:elements ([ sp:object _:b18 ; | 1602 | + sp:elements ([ sp:object |
| 1603 | + [ sp:varName "barLen"^^xsd:string | ||
| 1604 | + ] ; | ||
| 1517 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#lengthOfInnerBarrel> ; | 1605 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#lengthOfInnerBarrel> ; |
| 1518 | - sp:subject _:b17 | 1606 | + sp:subject |
| 1519 | - ] [ sp:object _:b6 ; | 1607 | + [ sp:varName "barrel"^^xsd:string |
| 1608 | + ] | ||
| 1609 | + ] [ sp:object | ||
| 1610 | + [ sp:varName "coreBarrelLength"^^xsd:string | ||
| 1611 | + ] ; | ||
| 1520 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 1612 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 1521 | - sp:subject _:b18 | 1613 | + sp:subject |
| 1614 | + [ sp:varName "barLen"^^xsd:string | ||
| 1615 | + ] | ||
| 1522 | ]) | 1616 | ]) |
| 1523 | ] [ rdf:type sp:Optional ; | 1617 | ] [ rdf:type sp:Optional ; |
| 1524 | - sp:elements ([ sp:object _:b19 ; | 1618 | + sp:elements ([ sp:object |
| 1619 | + [ sp:varName "barType"^^xsd:string | ||
| 1620 | + ] ; | ||
| 1525 | sp:predicate rdf:type ; | 1621 | sp:predicate rdf:type ; |
| 1526 | - sp:subject _:b17 | 1622 | + sp:subject |
| 1527 | - ] [ sp:object _:b7 ; | 1623 | + [ sp:varName "barrel"^^xsd:string |
| 1624 | + ] | ||
| 1625 | + ] [ sp:object | ||
| 1626 | + [ sp:varName "innerBarrelType"^^xsd:string | ||
| 1627 | + ] ; | ||
| 1528 | sp:predicate rdfs:label ; | 1628 | sp:predicate rdfs:label ; |
| 1529 | - sp:subject _:b19 | 1629 | + sp:subject |
| 1630 | + [ sp:varName "barType"^^xsd:string | ||
| 1631 | + ] | ||
| 1530 | ]) | 1632 | ]) |
| 1531 | ]) | 1633 | ]) |
| 1532 | ]) | 1634 | ]) |
| ... | @@ -1725,94 +1827,94 @@ ddr-tables:EquipmentFailure | ... | @@ -1725,94 +1827,94 @@ ddr-tables:EquipmentFailure |
| 1725 | rdfs:subClassOf rhspin:DDRTableTemplates ; | 1827 | rdfs:subClassOf rhspin:DDRTableTemplates ; |
| 1726 | spin:body | 1828 | spin:body |
| 1727 | [ rdf:type sp:Select ; | 1829 | [ rdf:type sp:Select ; |
| 1728 | - sp:orderBy (_:b20) ; | 1830 | + sp:orderBy (_:b1) ; |
| 1729 | - sp:resultVariables (_:b20 _:b21 _:b22 _:b23 _:b24 _:b25 _:b26) ; | 1831 | + sp:resultVariables (_:b1 _:b2 _:b3 _:b4 _:b5 _:b6 _:b7) ; |
| 1730 | - sp:where ([ sp:object _:b27 ; | 1832 | + sp:where ([ sp:object _:b8 ; |
| 1731 | sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ; | 1833 | sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ; |
| 1732 | sp:subject | 1834 | sp:subject |
| 1733 | [ sp:varName "report"^^xsd:string | 1835 | [ sp:varName "report"^^xsd:string |
| 1734 | ] | 1836 | ] |
| 1735 | - ] [ sp:object _:b28 ; | 1837 | + ] [ sp:object _:b9 ; |
| 1736 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 1838 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 1737 | - sp:subject _:b27 | 1839 | + sp:subject _:b8 |
| 1738 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#EquipmentFailureAndRepair> ; | 1840 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#EquipmentFailureAndRepair> ; |
| 1739 | sp:predicate rdf:type ; | 1841 | sp:predicate rdf:type ; |
| 1740 | - sp:subject _:b28 | 1842 | + sp:subject _:b9 |
| 1741 | ] [ rdf:type sp:Optional ; | 1843 | ] [ rdf:type sp:Optional ; |
| 1742 | - sp:elements ([ sp:object _:b29 ; | 1844 | + sp:elements ([ sp:object _:b10 ; |
| 1743 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#missedProductionTime> ; | 1845 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#missedProductionTime> ; |
| 1744 | - sp:subject _:b28 | 1846 | + sp:subject _:b9 |
| 1745 | - ] [ sp:object _:b24 ; | 1847 | + ] [ sp:object _:b5 ; |
| 1746 | sp:predicate <http://www.reportinghub.no/ep/schema/core#minute> ; | 1848 | sp:predicate <http://www.reportinghub.no/ep/schema/core#minute> ; |
| 1747 | - sp:subject _:b29 | 1849 | + sp:subject _:b10 |
| 1748 | ]) | 1850 | ]) |
| 1749 | ] [ rdf:type sp:Optional ; | 1851 | ] [ rdf:type sp:Optional ; |
| 1750 | - sp:elements ([ sp:object _:b30 ; | 1852 | + sp:elements ([ sp:object _:b11 ; |
| 1751 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#failedEquipment> ; | 1853 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#failedEquipment> ; |
| 1752 | - sp:subject _:b28 | 1854 | + sp:subject _:b9 |
| 1753 | - ] [ sp:object _:b31 ; | 1855 | + ] [ sp:object _:b12 ; |
| 1754 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | 1856 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; |
| 1755 | - sp:subject _:b30 | 1857 | + sp:subject _:b11 |
| 1756 | - ] [ sp:object _:b32 ; | 1858 | + ] [ sp:object _:b13 ; |
| 1757 | sp:predicate rdf:type ; | 1859 | sp:predicate rdf:type ; |
| 1758 | - sp:subject _:b31 | 1860 | + sp:subject _:b12 |
| 1759 | ] [ sp:object <http://www.reportinghub.no/ep/schema/drilling-equipment-type#DrillingEquipmentType> ; | 1861 | ] [ sp:object <http://www.reportinghub.no/ep/schema/drilling-equipment-type#DrillingEquipmentType> ; |
| 1760 | sp:predicate rdf:type ; | 1862 | sp:predicate rdf:type ; |
| 1761 | - sp:subject _:b32 | 1863 | + sp:subject _:b13 |
| 1762 | - ] [ sp:object _:b23 ; | 1864 | + ] [ sp:object _:b4 ; |
| 1763 | sp:predicate rdfs:label ; | 1865 | sp:predicate rdfs:label ; |
| 1764 | - sp:subject _:b32 | 1866 | + sp:subject _:b13 |
| 1765 | ]) | 1867 | ]) |
| 1766 | ] [ rdf:type sp:Optional ; | 1868 | ] [ rdf:type sp:Optional ; |
| 1767 | - sp:elements ([ sp:object _:b33 ; | 1869 | + sp:elements ([ sp:object _:b14 ; |
| 1768 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#timeOfFailure> ; | 1870 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#timeOfFailure> ; |
| 1769 | - sp:subject _:b28 | 1871 | + sp:subject _:b9 |
| 1770 | ] [ rdf:type sp:Bind ; | 1872 | ] [ rdf:type sp:Bind ; |
| 1771 | sp:expression | 1873 | sp:expression |
| 1772 | [ rdf:type spif:dateFormat ; | 1874 | [ rdf:type spif:dateFormat ; |
| 1773 | - arg:date _:b33 ; | 1875 | + arg:date _:b14 ; |
| 1774 | arg:pattern "yyyy-MM-dd HH:mm" | 1876 | arg:pattern "yyyy-MM-dd HH:mm" |
| 1775 | ] ; | 1877 | ] ; |
| 1776 | - sp:variable _:b20 | 1878 | + sp:variable _:b1 |
| 1777 | ]) | 1879 | ]) |
| 1778 | ] [ rdf:type sp:Optional ; | 1880 | ] [ rdf:type sp:Optional ; |
| 1779 | - sp:elements ([ sp:object _:b34 ; | 1881 | + sp:elements ([ sp:object _:b15 ; |
| 1780 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#timeOfRepair> ; | 1882 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#timeOfRepair> ; |
| 1781 | - sp:subject _:b28 | 1883 | + sp:subject _:b9 |
| 1782 | ] [ rdf:type sp:Bind ; | 1884 | ] [ rdf:type sp:Bind ; |
| 1783 | sp:expression | 1885 | sp:expression |
| 1784 | [ rdf:type spif:dateFormat ; | 1886 | [ rdf:type spif:dateFormat ; |
| 1785 | - arg:date _:b34 ; | 1887 | + arg:date _:b15 ; |
| 1786 | arg:pattern "yyyy-MM-dd HH:mm" | 1888 | arg:pattern "yyyy-MM-dd HH:mm" |
| 1787 | ] ; | 1889 | ] ; |
| 1788 | - sp:variable _:b25 | 1890 | + sp:variable _:b6 |
| 1789 | ]) | 1891 | ]) |
| 1790 | ] [ rdf:type sp:Optional ; | 1892 | ] [ rdf:type sp:Optional ; |
| 1791 | - sp:elements ([ sp:object _:b35 ; | 1893 | + sp:elements ([ sp:object _:b16 ; |
| 1792 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 1894 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 1793 | - sp:subject _:b28 | 1895 | + sp:subject _:b9 |
| 1794 | - ] [ sp:object _:b36 ; | 1896 | + ] [ sp:object _:b17 ; |
| 1795 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth> ; | 1897 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth> ; |
| 1796 | - sp:subject _:b35 | 1898 | + sp:subject _:b16 |
| 1797 | - ] [ sp:object _:b21 ; | 1899 | + ] [ sp:object _:b2 ; |
| 1798 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 1900 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 1799 | - sp:subject _:b36 | 1901 | + sp:subject _:b17 |
| 1800 | ]) | 1902 | ]) |
| 1801 | ] [ rdf:type sp:Optional ; | 1903 | ] [ rdf:type sp:Optional ; |
| 1802 | - sp:elements ([ sp:object _:b35 ; | 1904 | + sp:elements ([ sp:object _:b16 ; |
| 1803 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 1905 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 1804 | - sp:subject _:b28 | 1906 | + sp:subject _:b9 |
| 1805 | - ] [ sp:object _:b37 ; | 1907 | + ] [ sp:object _:b18 ; |
| 1806 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleTrueVerticalDepth> ; | 1908 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleTrueVerticalDepth> ; |
| 1807 | - sp:subject _:b35 | 1909 | + sp:subject _:b16 |
| 1808 | - ] [ sp:object _:b22 ; | 1910 | + ] [ sp:object _:b3 ; |
| 1809 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 1911 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 1810 | - sp:subject _:b37 | 1912 | + sp:subject _:b18 |
| 1811 | ]) | 1913 | ]) |
| 1812 | ] [ rdf:type sp:Optional ; | 1914 | ] [ rdf:type sp:Optional ; |
| 1813 | - sp:elements ([ sp:object _:b26 ; | 1915 | + sp:elements ([ sp:object _:b7 ; |
| 1814 | sp:predicate rdfs:comment ; | 1916 | sp:predicate rdfs:comment ; |
| 1815 | - sp:subject _:b28 | 1917 | + sp:subject _:b9 |
| 1816 | ]) | 1918 | ]) |
| 1817 | ]) | 1919 | ]) |
| 1818 | ] ; | 1920 | ] ; |
| ... | @@ -2775,96 +2877,96 @@ ddr-tables:Operations | ... | @@ -2775,96 +2877,96 @@ ddr-tables:Operations |
| 2775 | rdfs:subClassOf rhspin:DDRTableTemplates ; | 2877 | rdfs:subClassOf rhspin:DDRTableTemplates ; |
| 2776 | spin:body | 2878 | spin:body |
| 2777 | [ rdf:type sp:Select ; | 2879 | [ rdf:type sp:Select ; |
| 2778 | - sp:orderBy (_:b38) ; | 2880 | + sp:orderBy (_:b19) ; |
| 2779 | - sp:resultVariables (_:b38 _:b39 _:b40 _:b41 _:b42 _:b43 _:b44 _:b45) ; | 2881 | + sp:resultVariables (_:b19 _:b20 _:b21 _:b22 _:b23 _:b24 _:b25 _:b26) ; |
| 2780 | - sp:where ([ sp:object _:b46 ; | 2882 | + sp:where ([ sp:object _:b27 ; |
| 2781 | sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ; | 2883 | sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ; |
| 2782 | sp:subject | 2884 | sp:subject |
| 2783 | [ sp:varName "report"^^xsd:string | 2885 | [ sp:varName "report"^^xsd:string |
| 2784 | ] | 2886 | ] |
| 2785 | - ] [ sp:object _:b47 ; | 2887 | + ] [ sp:object _:b28 ; |
| 2786 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 2888 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 2787 | - sp:subject _:b46 | 2889 | + sp:subject _:b27 |
| 2788 | - ] [ sp:object _:b48 ; | 2890 | + ] [ sp:object _:b29 ; |
| 2789 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; | 2891 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; |
| 2790 | - sp:subject _:b47 | 2892 | + sp:subject _:b28 |
| 2791 | ] [ rdf:type sp:Bind ; | 2893 | ] [ rdf:type sp:Bind ; |
| 2792 | sp:expression | 2894 | sp:expression |
| 2793 | [ rdf:type spif:dateFormat ; | 2895 | [ rdf:type spif:dateFormat ; |
| 2794 | - arg:date _:b48 ; | 2896 | + arg:date _:b29 ; |
| 2795 | arg:pattern "HH:mm" | 2897 | arg:pattern "HH:mm" |
| 2796 | ] ; | 2898 | ] ; |
| 2797 | - sp:variable _:b38 | 2899 | + sp:variable _:b19 |
| 2798 | - ] [ sp:object _:b49 ; | 2900 | + ] [ sp:object _:b30 ; |
| 2799 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; | 2901 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; |
| 2800 | - sp:subject _:b47 | 2902 | + sp:subject _:b28 |
| 2801 | ] [ rdf:type sp:Bind ; | 2903 | ] [ rdf:type sp:Bind ; |
| 2802 | sp:expression | 2904 | sp:expression |
| 2803 | [ rdf:type spif:dateFormat ; | 2905 | [ rdf:type spif:dateFormat ; |
| 2804 | - arg:date _:b49 ; | 2906 | + arg:date _:b30 ; |
| 2805 | arg:pattern "HH:mm" | 2907 | arg:pattern "HH:mm" |
| 2806 | ] ; | 2908 | ] ; |
| 2807 | - sp:variable _:b39 | 2909 | + sp:variable _:b20 |
| 2808 | - ] [ sp:object _:b50 ; | 2910 | + ] [ sp:object _:b31 ; |
| 2809 | sp:predicate rdf:type ; | 2911 | sp:predicate rdf:type ; |
| 2810 | - sp:subject _:b47 | 2912 | + sp:subject _:b28 |
| 2811 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#ActivitySuccessType> ; | 2913 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#ActivitySuccessType> ; |
| 2812 | sp:predicate rdf:type ; | 2914 | sp:predicate rdf:type ; |
| 2813 | - sp:subject _:b50 | 2915 | + sp:subject _:b31 |
| 2814 | - ] [ sp:object _:b44 ; | 2916 | + ] [ sp:object _:b25 ; |
| 2815 | sp:predicate rdfs:label ; | 2917 | sp:predicate rdfs:label ; |
| 2816 | - sp:subject _:b50 | 2918 | + sp:subject _:b31 |
| 2817 | ] [ rdf:type sp:Optional ; | 2919 | ] [ rdf:type sp:Optional ; |
| 2818 | - sp:elements ([ sp:object _:b51 ; | 2920 | + sp:elements ([ sp:object _:b32 ; |
| 2819 | sp:predicate rdf:type ; | 2921 | sp:predicate rdf:type ; |
| 2820 | - sp:subject _:b47 | 2922 | + sp:subject _:b28 |
| 2821 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity-purpose#DailyDrillingActivityPurposeType> ; | 2923 | ] [ sp:object <http://www.reportinghub.no/ep/schema/activity-purpose#DailyDrillingActivityPurposeType> ; |
| 2822 | sp:predicate rdf:type ; | 2924 | sp:predicate rdf:type ; |
| 2823 | - sp:subject _:b51 | 2925 | + sp:subject _:b32 |
| 2824 | ] [ rdf:type sp:Bind ; | 2926 | ] [ rdf:type sp:Bind ; |
| 2825 | sp:expression | 2927 | sp:expression |
| 2826 | [ rdf:type spif:name ; | 2928 | [ rdf:type spif:name ; |
| 2827 | - sp:arg1 _:b51 | 2929 | + sp:arg1 _:b32 |
| 2828 | ] ; | 2930 | ] ; |
| 2829 | - sp:variable _:b43 | 2931 | + sp:variable _:b24 |
| 2830 | ]) | 2932 | ]) |
| 2831 | ] [ rdf:type sp:Optional ; | 2933 | ] [ rdf:type sp:Optional ; |
| 2832 | - sp:elements ([ sp:object _:b52 ; | 2934 | + sp:elements ([ sp:object _:b33 ; |
| 2833 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 2935 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 2834 | - sp:subject _:b47 | 2936 | + sp:subject _:b28 |
| 2835 | - ] [ sp:object _:b53 ; | 2937 | + ] [ sp:object _:b34 ; |
| 2836 | sp:predicate <http://www.reportinghub.no/ep/schema/well#initialBottomHoleMeasuredDepth> ; | 2938 | sp:predicate <http://www.reportinghub.no/ep/schema/well#initialBottomHoleMeasuredDepth> ; |
| 2837 | - sp:subject _:b52 | 2939 | + sp:subject _:b33 |
| 2838 | - ] [ sp:object _:b40 ; | 2940 | + ] [ sp:object _:b21 ; |
| 2839 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 2941 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 2840 | - sp:subject _:b53 | 2942 | + sp:subject _:b34 |
| 2841 | - ] [ sp:object _:b52 ; | 2943 | + ] [ sp:object _:b33 ; |
| 2842 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 2944 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 2843 | - sp:subject _:b47 | 2945 | + sp:subject _:b28 |
| 2844 | - ] [ sp:object _:b54 ; | 2946 | + ] [ sp:object _:b35 ; |
| 2845 | sp:predicate <http://www.reportinghub.no/ep/schema/well#finalBottomHoleMeasuredDepth> ; | 2947 | sp:predicate <http://www.reportinghub.no/ep/schema/well#finalBottomHoleMeasuredDepth> ; |
| 2846 | - sp:subject _:b52 | 2948 | + sp:subject _:b33 |
| 2847 | - ] [ sp:object _:b41 ; | 2949 | + ] [ sp:object _:b22 ; |
| 2848 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 2950 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| 2849 | - sp:subject _:b54 | 2951 | + sp:subject _:b35 |
| 2850 | ] [ rdf:type sp:Bind ; | 2952 | ] [ rdf:type sp:Bind ; |
| 2851 | sp:expression | 2953 | sp:expression |
| 2852 | [ rdf:type sp:sub ; | 2954 | [ rdf:type sp:sub ; |
| 2853 | sp:arg1 [ rdf:type spif:cast ; | 2955 | sp:arg1 [ rdf:type spif:cast ; |
| 2854 | arg:datatype xsd:float ; | 2956 | arg:datatype xsd:float ; |
| 2855 | - sp:arg1 _:b41 | 2957 | + sp:arg1 _:b22 |
| 2856 | ] ; | 2958 | ] ; |
| 2857 | sp:arg2 [ rdf:type spif:cast ; | 2959 | sp:arg2 [ rdf:type spif:cast ; |
| 2858 | arg:datatype xsd:float ; | 2960 | arg:datatype xsd:float ; |
| 2859 | - sp:arg1 _:b40 | 2961 | + sp:arg1 _:b21 |
| 2860 | ] | 2962 | ] |
| 2861 | ] ; | 2963 | ] ; |
| 2862 | - sp:variable _:b42 | 2964 | + sp:variable _:b23 |
| 2863 | ]) | 2965 | ]) |
| 2864 | ] [ rdf:type sp:Optional ; | 2966 | ] [ rdf:type sp:Optional ; |
| 2865 | - sp:elements ([ sp:object _:b45 ; | 2967 | + sp:elements ([ sp:object _:b26 ; |
| 2866 | sp:predicate rdfs:comment ; | 2968 | sp:predicate rdfs:comment ; |
| 2867 | - sp:subject _:b47 | 2969 | + sp:subject _:b28 |
| 2868 | ]) | 2970 | ]) |
| 2869 | ]) | 2971 | ]) |
| 2870 | ] ; | 2972 | ] ; |
| ... | @@ -3661,13 +3763,20 @@ ddr-tables:WellControlIncident | ... | @@ -3661,13 +3763,20 @@ ddr-tables:WellControlIncident |
| 3661 | [ sp:varName "lastCasing"^^xsd:string | 3763 | [ sp:varName "lastCasing"^^xsd:string |
| 3662 | ] | 3764 | ] |
| 3663 | ] [ sp:object | 3765 | ] [ sp:object |
| 3664 | - [ sp:varName "lcDepth"^^xsd:string | 3766 | + [ sp:varName "casing"^^xsd:string |
| 3665 | ] ; | 3767 | ] ; |
| 3666 | - sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepth> ; | 3768 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; |
| 3667 | sp:subject | 3769 | sp:subject |
| 3668 | [ sp:varName "lastCasing"^^xsd:string | 3770 | [ sp:varName "lastCasing"^^xsd:string |
| 3669 | ] | 3771 | ] |
| 3670 | ] [ sp:object | 3772 | ] [ sp:object |
| 3773 | + [ sp:varName "lcDepth"^^xsd:string | ||
| 3774 | + ] ; | ||
| 3775 | + sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; | ||
| 3776 | + sp:subject | ||
| 3777 | + [ sp:varName "casing"^^xsd:string | ||
| 3778 | + ] | ||
| 3779 | + ] [ sp:object | ||
| 3671 | [ sp:varName "depthToCasing"^^xsd:string | 3780 | [ sp:varName "depthToCasing"^^xsd:string |
| 3672 | ] ; | 3781 | ] ; |
| 3673 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; | 3782 | sp:predicate <http://www.reportinghub.no/ep/schema/core#metre> ; |
| ... | @@ -4347,83 +4456,26 @@ ppm"""^^xsd:string """H2S | ... | @@ -4347,83 +4456,26 @@ ppm"""^^xsd:string """H2S |
| 4347 | content | 4456 | content |
| 4348 | ppm"""^^xsd:string) . | 4457 | ppm"""^^xsd:string) . |
| 4349 | 4458 | ||
| 4350 | -_:b54 | ||
| 4351 | - sp:varName "ed"^^xsd:string . | ||
| 4352 | - | ||
| 4353 | -_:b53 | ||
| 4354 | - sp:varName "id"^^xsd:string . | ||
| 4355 | - | ||
| 4356 | -_:b52 | ||
| 4357 | - sp:varName "wellbore"^^xsd:string . | ||
| 4358 | - | ||
| 4359 | -_:b51 | ||
| 4360 | - sp:varName "subactclass"^^xsd:string . | ||
| 4361 | - | ||
| 4362 | -_:b50 | ||
| 4363 | - sp:varName "stateclass"^^xsd:string . | ||
| 4364 | - | ||
| 4365 | -_:b49 | ||
| 4366 | - sp:varName "finishedAt"^^xsd:string . | ||
| 4367 | - | ||
| 4368 | -_:b48 | ||
| 4369 | - sp:varName "startedAt"^^xsd:string . | ||
| 4370 | - | ||
| 4371 | -_:b47 | ||
| 4372 | - sp:varName "part"^^xsd:string . | ||
| 4373 | - | ||
| 4374 | -_:b46 | ||
| 4375 | - sp:varName "reportOn"^^xsd:string . | ||
| 4376 | - | ||
| 4377 | -_:b45 | ||
| 4378 | - sp:varName "remark"^^xsd:string . | ||
| 4379 | - | ||
| 4380 | -_:b44 | ||
| 4381 | - sp:varName "state"^^xsd:string . | ||
| 4382 | - | ||
| 4383 | -_:b43 | ||
| 4384 | - sp:varName "mainSubActivity"^^xsd:string . | ||
| 4385 | - | ||
| 4386 | -_:b42 | ||
| 4387 | - sp:varName "depth"^^xsd:string . | ||
| 4388 | - | ||
| 4389 | -_:b41 | ||
| 4390 | - sp:varName "endDepth"^^xsd:string . | ||
| 4391 | - | ||
| 4392 | -_:b40 | ||
| 4393 | - sp:varName "startDepth"^^xsd:string . | ||
| 4394 | - | ||
| 4395 | -_:b39 | ||
| 4396 | - sp:varName "endTime"^^xsd:string . | ||
| 4397 | - | ||
| 4398 | -_:b38 | ||
| 4399 | - sp:varName "startTime"^^xsd:string . | ||
| 4400 | - | ||
| 4401 | -_:b37 | ||
| 4402 | - sp:varName "tvd"^^xsd:string . | ||
| 4403 | - | ||
| 4404 | -_:b36 | ||
| 4405 | - sp:varName "md"^^xsd:string . | ||
| 4406 | - | ||
| 4407 | _:b35 | 4459 | _:b35 |
| 4408 | - sp:varName "wellbore"^^xsd:string . | 4460 | + sp:varName "ed"^^xsd:string . |
| 4409 | 4461 | ||
| 4410 | _:b34 | 4462 | _:b34 |
| 4411 | - sp:varName "timeOfRepair"^^xsd:string . | 4463 | + sp:varName "id"^^xsd:string . |
| 4412 | 4464 | ||
| 4413 | _:b33 | 4465 | _:b33 |
| 4414 | - sp:varName "timeOfFailure"^^xsd:string . | 4466 | + sp:varName "wellbore"^^xsd:string . |
| 4415 | 4467 | ||
| 4416 | _:b32 | 4468 | _:b32 |
| 4417 | - sp:varName "classOfEquipment"^^xsd:string . | 4469 | + sp:varName "subactclass"^^xsd:string . |
| 4418 | 4470 | ||
| 4419 | _:b31 | 4471 | _:b31 |
| 4420 | - sp:varName "equipment"^^xsd:string . | 4472 | + sp:varName "stateclass"^^xsd:string . |
| 4421 | 4473 | ||
| 4422 | _:b30 | 4474 | _:b30 |
| 4423 | - sp:varName "temporalPartOfEquipment"^^xsd:string . | 4475 | + sp:varName "finishedAt"^^xsd:string . |
| 4424 | 4476 | ||
| 4425 | _:b29 | 4477 | _:b29 |
| 4426 | - sp:varName "mpt"^^xsd:string . | 4478 | + sp:varName "startedAt"^^xsd:string . |
| 4427 | 4479 | ||
| 4428 | _:b28 | 4480 | _:b28 |
| 4429 | sp:varName "part"^^xsd:string . | 4481 | sp:varName "part"^^xsd:string . |
| ... | @@ -4432,70 +4484,70 @@ _:b27 | ... | @@ -4432,70 +4484,70 @@ _:b27 |
| 4432 | sp:varName "reportOn"^^xsd:string . | 4484 | sp:varName "reportOn"^^xsd:string . |
| 4433 | 4485 | ||
| 4434 | _:b26 | 4486 | _:b26 |
| 4435 | - sp:varName "failureDescription"^^xsd:string . | 4487 | + sp:varName "remark"^^xsd:string . |
| 4436 | 4488 | ||
| 4437 | _:b25 | 4489 | _:b25 |
| 4438 | - sp:varName "repairedTime"^^xsd:string . | 4490 | + sp:varName "state"^^xsd:string . |
| 4439 | 4491 | ||
| 4440 | _:b24 | 4492 | _:b24 |
| 4441 | - sp:varName "downtime"^^xsd:string . | 4493 | + sp:varName "mainSubActivity"^^xsd:string . |
| 4442 | 4494 | ||
| 4443 | _:b23 | 4495 | _:b23 |
| 4444 | - sp:varName "equipmentType"^^xsd:string . | 4496 | + sp:varName "depth"^^xsd:string . |
| 4445 | 4497 | ||
| 4446 | _:b22 | 4498 | _:b22 |
| 4447 | - sp:varName "depthTVD"^^xsd:string . | 4499 | + sp:varName "endDepth"^^xsd:string . |
| 4448 | 4500 | ||
| 4449 | _:b21 | 4501 | _:b21 |
| 4450 | - sp:varName "depthMD"^^xsd:string . | 4502 | + sp:varName "startDepth"^^xsd:string . |
| 4451 | 4503 | ||
| 4452 | _:b20 | 4504 | _:b20 |
| 4453 | - sp:varName "startTime"^^xsd:string . | 4505 | + sp:varName "endTime"^^xsd:string . |
| 4454 | 4506 | ||
| 4455 | _:b19 | 4507 | _:b19 |
| 4456 | - sp:varName "barType"^^xsd:string . | 4508 | + sp:varName "startTime"^^xsd:string . |
| 4457 | 4509 | ||
| 4458 | _:b18 | 4510 | _:b18 |
| 4459 | - sp:varName "barLen"^^xsd:string . | 4511 | + sp:varName "tvd"^^xsd:string . |
| 4460 | 4512 | ||
| 4461 | _:b17 | 4513 | _:b17 |
| 4462 | - sp:varName "barrel"^^xsd:string . | 4514 | + sp:varName "md"^^xsd:string . |
| 4463 | 4515 | ||
| 4464 | _:b16 | 4516 | _:b16 |
| 4465 | - sp:varName "coreLength"^^xsd:string . | 4517 | + sp:varName "wellbore"^^xsd:string . |
| 4466 | 4518 | ||
| 4467 | _:b15 | 4519 | _:b15 |
| 4468 | - sp:varName "coreRecPer"^^xsd:string . | 4520 | + sp:varName "timeOfRepair"^^xsd:string . |
| 4469 | 4521 | ||
| 4470 | _:b14 | 4522 | _:b14 |
| 4471 | - sp:varName "recCore"^^xsd:string . | 4523 | + sp:varName "timeOfFailure"^^xsd:string . |
| 4472 | 4524 | ||
| 4473 | _:b13 | 4525 | _:b13 |
| 4474 | - sp:varName "mdBott"^^xsd:string . | 4526 | + sp:varName "classOfEquipment"^^xsd:string . |
| 4475 | 4527 | ||
| 4476 | _:b12 | 4528 | _:b12 |
| 4477 | - sp:varName "mdTop"^^xsd:string . | 4529 | + sp:varName "equipment"^^xsd:string . |
| 4478 | 4530 | ||
| 4479 | _:b11 | 4531 | _:b11 |
| 4480 | - sp:varName "wb"^^xsd:string . | 4532 | + sp:varName "temporalPartOfEquipment"^^xsd:string . |
| 4481 | 4533 | ||
| 4482 | _:b10 | 4534 | _:b10 |
| 4483 | - sp:varName "extractWellCore"^^xsd:string . | 4535 | + sp:varName "mpt"^^xsd:string . |
| 4484 | 4536 | ||
| 4485 | -_:b9 sp:varName "reportOn"^^xsd:string . | 4537 | +_:b9 sp:varName "part"^^xsd:string . |
| 4486 | 4538 | ||
| 4487 | -_:b8 sp:varName "description"^^xsd:string . | 4539 | +_:b8 sp:varName "reportOn"^^xsd:string . |
| 4488 | 4540 | ||
| 4489 | -_:b7 sp:varName "innerBarrelType"^^xsd:string . | 4541 | +_:b7 sp:varName "failureDescription"^^xsd:string . |
| 4490 | 4542 | ||
| 4491 | -_:b6 sp:varName "coreBarrelLength"^^xsd:string . | 4543 | +_:b6 sp:varName "repairedTime"^^xsd:string . |
| 4492 | 4544 | ||
| 4493 | -_:b5 sp:varName "recoveryCore"^^xsd:string . | 4545 | +_:b5 sp:varName "downtime"^^xsd:string . |
| 4494 | 4546 | ||
| 4495 | -_:b4 sp:varName "length"^^xsd:string . | 4547 | +_:b4 sp:varName "equipmentType"^^xsd:string . |
| 4496 | 4548 | ||
| 4497 | -_:b3 sp:varName "depthBottommMDCore"^^xsd:string . | 4549 | +_:b3 sp:varName "depthTVD"^^xsd:string . |
| 4498 | 4550 | ||
| 4499 | -_:b2 sp:varName "depthTopmMD"^^xsd:string . | 4551 | +_:b2 sp:varName "depthMD"^^xsd:string . |
| 4500 | 4552 | ||
| 4501 | -_:b1 sp:varName "coreNo"^^xsd:string . | 4553 | +_:b1 sp:varName "startTime"^^xsd:string . | ... | ... |
This diff could not be displayed because it is too large.
| 1 | +# Saved by TopBraid on Wed Nov 02 15:52:30 GMT 2011 | ||
| 1 | # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun | 2 | # 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 | ||
| 5 | 6 | ||
| 6 | @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun#> . | 7 | @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun#> . |
| 7 | @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . | 8 | @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . |
| ... | @@ -19,500 +20,308 @@ | ... | @@ -19,500 +20,308 @@ |
| 19 | 20 | ||
| 20 | <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun> | 21 | <http://www.reportinghub.no/ep/transform/1.1/ddr/casingLinerTubingRun> |
| 21 | rdf:type owl:Ontology ; | 22 | rdf:type owl:Ontology ; |
| 22 | - 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://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ; |
| 23 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 24 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 24 | 25 | ||
| 25 | ddr:Obj_drillReport | 26 | ddr:Obj_drillReport |
| 26 | spin:rule | 27 | spin:rule |
| 27 | [ rdf:type sp:Construct ; | 28 | [ rdf:type sp:Construct ; |
| 28 | - rdfs:comment "STEP 280 Well stimulation"^^xsd:string ; | 29 | + rdfs:comment "STEP 280 Well completion"^^xsd:string ; |
| 29 | - sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellStimulation> ; | 30 | + sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCompletion> ; |
| 30 | sp:predicate rdf:type ; | 31 | sp:predicate rdf:type ; |
| 31 | - sp:subject | 32 | + sp:subject _:b1 |
| 32 | - [ sp:varName "wellStimulation"^^xsd:string | 33 | + ] [ sp:object _:b1 ; |
| 33 | - ] | ||
| 34 | - ] [ sp:object | ||
| 35 | - [ sp:varName "wellStimulation"^^xsd:string | ||
| 36 | - ] ; | ||
| 37 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 34 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 38 | - sp:subject | 35 | + sp:subject _:b2 |
| 39 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | 36 | + ] [ sp:object _:b3 ; |
| 40 | - ] | ||
| 41 | - ] [ sp:object | ||
| 42 | - [ sp:varName "dTimStartStim"^^xsd:string | ||
| 43 | - ] ; | ||
| 44 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; | 37 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; |
| 45 | - sp:subject | 38 | + sp:subject _:b1 |
| 46 | - [ sp:varName "wellStimulation"^^xsd:string | 39 | + ] [ sp:object _:b4 ; |
| 47 | - ] | ||
| 48 | - ] [ sp:object | ||
| 49 | - [ sp:varName "dTimEndStim"^^xsd:string | ||
| 50 | - ] ; | ||
| 51 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; | 40 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; |
| 52 | - sp:subject | 41 | + sp:subject _:b1 |
| 53 | - [ sp:varName "wellStimulation"^^xsd:string | 42 | + ] [ sp:object _:b5 ; |
| 54 | - ] | ||
| 55 | - ] [ sp:object | ||
| 56 | - [ sp:varName "description"^^xsd:string | ||
| 57 | - ] ; | ||
| 58 | sp:predicate rdfs:comment ; | 43 | sp:predicate rdfs:comment ; |
| 59 | - sp:subject | 44 | + sp:subject _:b1 |
| 60 | - [ sp:varName "wellStimulation"^^xsd:string | 45 | + ] [ sp:object _:b6 ; |
| 61 | - ] | ||
| 62 | - ] [ sp:object _:b1 ; | ||
| 63 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 46 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 64 | - sp:subject | 47 | + sp:subject _:b1 |
| 65 | - [ sp:varName "wellStimulation"^^xsd:string | ||
| 66 | - ] | ||
| 67 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; | 48 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; |
| 68 | sp:predicate rdf:type ; | 49 | sp:predicate rdf:type ; |
| 69 | - sp:subject _:b1 | 50 | + sp:subject _:b6 |
| 70 | - ] [ sp:object _:b2 ; | 51 | + ] [ sp:object _:b7 ; |
| 71 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | 52 | sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; |
| 72 | - sp:subject _:b1 | 53 | + sp:subject _:b6 |
| 73 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; | 54 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; |
| 74 | sp:predicate rdf:type ; | 55 | sp:predicate rdf:type ; |
| 75 | - sp:subject _:b2 | 56 | + sp:subject _:b7 |
| 76 | - ] [ sp:object | 57 | + ] [ sp:object _:b8 ; |
| 77 | - [ sp:varName "wellBore"^^xsd:string | ||
| 78 | - ] ; | ||
| 79 | sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; | 58 | sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; |
| 80 | - sp:subject _:b2 | 59 | + sp:subject _:b7 |
| 81 | - ] [ sp:object _:b3 ; | 60 | + ] [ sp:object _:b9 ; |
| 82 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; | 61 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; |
| 83 | - sp:subject _:b2 | 62 | + sp:subject _:b7 |
| 84 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 63 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 85 | sp:predicate rdf:type ; | 64 | sp:predicate rdf:type ; |
| 86 | - sp:subject _:b3 | 65 | + sp:subject _:b9 |
| 87 | - ] [ sp:object | 66 | + ] [ sp:object _:b10 ; |
| 88 | - [ sp:varName "realMdTop"^^xsd:string | 67 | + sp:predicate _:b11 ; |
| 89 | - ] ; | 68 | + sp:subject _:b9 |
| 90 | - sp:predicate | 69 | + ] [ sp:object _:b12 ; |
| 91 | - [ sp:varName "lengthScaleMdTop"^^xsd:string | ||
| 92 | - ] ; | ||
| 93 | - sp:subject _:b3 | ||
| 94 | - ] [ sp:object _:b4 ; | ||
| 95 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; | 70 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; |
| 96 | - sp:subject _:b2 | 71 | + sp:subject _:b7 |
| 97 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 72 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 98 | sp:predicate rdf:type ; | 73 | sp:predicate rdf:type ; |
| 99 | - sp:subject _:b4 | 74 | + sp:subject _:b12 |
| 100 | - ] [ sp:object | 75 | + ] [ sp:object _:b13 ; |
| 101 | - [ sp:varName "realMdBottom"^^xsd:string | 76 | + sp:predicate _:b14 ; |
| 102 | - ] ; | 77 | + sp:subject _:b12 |
| 103 | - sp:predicate | 78 | + ] [ sp:object _:b15 ; |
| 104 | - [ sp:varName "lengthScaleMdBottom"^^xsd:string | ||
| 105 | - ] ; | ||
| 106 | - sp:subject _:b4 | ||
| 107 | - ] [ sp:object _:b5 ; | ||
| 108 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ; | 79 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ; |
| 109 | - sp:subject _:b2 | 80 | + sp:subject _:b7 |
| 110 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; | 81 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; |
| 111 | sp:predicate rdf:type ; | 82 | sp:predicate rdf:type ; |
| 112 | - sp:subject _:b5 | 83 | + sp:subject _:b15 |
| 113 | - ] [ sp:object | 84 | + ] [ sp:object _:b16 ; |
| 114 | - [ sp:varName "casingRoleType"^^xsd:string | ||
| 115 | - ] ; | ||
| 116 | sp:predicate rdf:type ; | 85 | sp:predicate rdf:type ; |
| 117 | - sp:subject _:b5 | 86 | + sp:subject _:b15 |
| 118 | - ] [ sp:object | 87 | + ] [ sp:object _:b17 ; |
| 119 | - [ sp:varName "tubeType"^^xsd:string | ||
| 120 | - ] ; | ||
| 121 | sp:predicate rdf:type ; | 88 | sp:predicate rdf:type ; |
| 122 | - sp:subject _:b5 | 89 | + sp:subject _:b15 |
| 123 | - ] [ sp:object _:b6 ; | 90 | + ] [ sp:object _:b18 ; |
| 124 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#insideDiameterOfATubular> ; | 91 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#insideDiameterOfATubular> ; |
| 125 | - sp:subject _:b5 | 92 | + sp:subject _:b15 |
| 126 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 93 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 127 | sp:predicate rdf:type ; | 94 | sp:predicate rdf:type ; |
| 128 | - sp:subject _:b6 | 95 | + sp:subject _:b18 |
| 129 | - ] [ sp:object | 96 | + ] [ sp:object _:b19 ; |
| 130 | - [ sp:varName "realId"^^xsd:string | 97 | + sp:predicate _:b20 ; |
| 131 | - ] ; | 98 | + sp:subject _:b18 |
| 132 | - sp:predicate | 99 | + ] [ sp:object _:b21 ; |
| 133 | - [ sp:varName "lengthScaleId"^^xsd:string | ||
| 134 | - ] ; | ||
| 135 | - sp:subject _:b6 | ||
| 136 | - ] [ sp:object _:b7 ; | ||
| 137 | - sp:predicate <http://www.reportinghub.no/ep/schema/equipment#outsideDiameterOfATubular> ; | ||
| 138 | - sp:subject _:b5 | ||
| 139 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | ||
| 140 | sp:predicate rdf:type ; | 100 | sp:predicate rdf:type ; |
| 141 | - sp:subject _:b7 | 101 | + sp:subject _:b15 |
| 142 | - ] [ sp:object | 102 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; |
| 143 | - [ sp:varName "realOd"^^xsd:string | 103 | + sp:predicate rdfs:subClassOf ; |
| 144 | - ] ; | 104 | + sp:subject _:b21 |
| 145 | - sp:predicate | 105 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; |
| 146 | - [ sp:varName "lengthScaleOd"^^xsd:string | ||
| 147 | - ] ; | ||
| 148 | - sp:subject _:b7 | ||
| 149 | - ] [ sp:object _:b8 ; | ||
| 150 | sp:predicate rdf:type ; | 106 | sp:predicate rdf:type ; |
| 151 | - sp:subject _:b5 | 107 | + sp:subject _:b21 |
| 152 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#MassPerUnitLength> ; | 108 | + ] [ sp:object _:b22 ; |
| 109 | + sp:predicate rdfs:label ; | ||
| 110 | + sp:subject _:b21 | ||
| 111 | + ] [ sp:object _:b23 ; | ||
| 153 | sp:predicate rdf:type ; | 112 | sp:predicate rdf:type ; |
| 154 | - sp:subject _:b8 | 113 | + sp:subject _:b15 |
| 155 | - ] [ sp:object | 114 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; |
| 156 | - [ sp:varName "realMassPerUnitLength"^^xsd:string | 115 | + sp:predicate rdfs:subClassOf ; |
| 157 | - ] ; | 116 | + sp:subject _:b23 |
| 158 | - sp:predicate | 117 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeWeightAPI_5CTClass> ; |
| 159 | - [ sp:varName "massPerUnitLengthScale"^^xsd:string | ||
| 160 | - ] ; | ||
| 161 | - sp:subject _:b8 | ||
| 162 | - ] [ sp:object _:b9 ; | ||
| 163 | sp:predicate rdf:type ; | 118 | sp:predicate rdf:type ; |
| 164 | - sp:subject _:b5 | 119 | + sp:subject _:b23 |
| 165 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#API_5CT_class> ; | 120 | + ] [ sp:object _:b24 ; |
| 121 | + sp:predicate rdfs:label ; | ||
| 122 | + sp:subject _:b23 | ||
| 123 | + ] [ sp:object _:b25 ; | ||
| 166 | sp:predicate rdf:type ; | 124 | sp:predicate rdf:type ; |
| 167 | - sp:subject _:b9 | 125 | + sp:subject _:b15 |
| 168 | - ] [ sp:object | 126 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; |
| 169 | - [ sp:varName "grade"^^xsd:string | 127 | + sp:predicate rdfs:subClassOf ; |
| 170 | - ] ; | 128 | + sp:subject _:b25 |
| 129 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#SteelGradeAPI_5CTClass> ; | ||
| 130 | + sp:predicate rdf:type ; | ||
| 131 | + sp:subject _:b25 | ||
| 132 | + ] [ sp:object _:b26 ; | ||
| 171 | sp:predicate rdfs:label ; | 133 | sp:predicate rdfs:label ; |
| 172 | - sp:subject _:b9 | 134 | + sp:subject _:b25 |
| 173 | - ] [ sp:object _:b10 ; | 135 | + ] [ sp:object _:b27 ; |
| 174 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#hasTubularConnectionClass> ; | 136 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#hasTubularConnectionClass> ; |
| 175 | - sp:subject _:b5 | 137 | + sp:subject _:b15 |
| 176 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#TubularConnectionClass> ; | 138 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#TubularConnectionClass> ; |
| 177 | sp:predicate rdf:type ; | 139 | sp:predicate rdf:type ; |
| 178 | - sp:subject _:b10 | 140 | + sp:subject _:b27 |
| 179 | - ] [ sp:object | 141 | + ] [ sp:object _:b28 ; |
| 180 | - [ sp:varName "connection"^^xsd:string | ||
| 181 | - ] ; | ||
| 182 | sp:predicate rdfs:label ; | 142 | sp:predicate rdfs:label ; |
| 183 | - sp:subject _:b10 | 143 | + sp:subject _:b27 |
| 184 | - ] [ sp:object _:b11 ; | 144 | + ] [ sp:object _:b29 ; |
| 185 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#stringLengthOfATubular> ; | 145 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#stringLengthOfATubular> ; |
| 186 | - sp:subject _:b5 | 146 | + sp:subject _:b15 |
| 187 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 147 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 188 | sp:predicate rdf:type ; | 148 | sp:predicate rdf:type ; |
| 189 | - sp:subject _:b11 | 149 | + sp:subject _:b29 |
| 190 | - ] [ sp:object | 150 | + ] [ sp:object _:b30 ; |
| 191 | - [ sp:varName "realLen"^^xsd:string | 151 | + sp:predicate _:b31 ; |
| 192 | - ] ; | 152 | + sp:subject _:b29 |
| 193 | - sp:predicate | ||
| 194 | - [ sp:varName "lengthScaleLen"^^xsd:string | ||
| 195 | - ] ; | ||
| 196 | - sp:subject _:b11 | ||
| 197 | ]) ; | 153 | ]) ; |
| 198 | - sp:where ([ sp:object | 154 | + sp:where ([ sp:object _:b32 ; |
| 199 | - [ sp:varName "nameWellBore"^^xsd:string | ||
| 200 | - ] ; | ||
| 201 | sp:predicate ep-spin-lib:nameWellbore ; | 155 | sp:predicate ep-spin-lib:nameWellbore ; |
| 202 | sp:subject spin:_this | 156 | sp:subject spin:_this |
| 203 | - ] [ sp:object | 157 | + ] [ sp:object _:b33 ; |
| 204 | - [ sp:varName "dTimStart"^^xsd:string | ||
| 205 | - ] ; | ||
| 206 | sp:predicate ddr:dTimStart ; | 158 | sp:predicate ddr:dTimStart ; |
| 207 | sp:subject spin:_this | 159 | sp:subject spin:_this |
| 208 | - ] [ sp:object | 160 | + ] [ sp:object _:b34 ; |
| 209 | - [ sp:varName "casingLinerTubing"^^xsd:string | ||
| 210 | - ] ; | ||
| 211 | sp:predicate ddr:casing_liner_tubingRef ; | 161 | sp:predicate ddr:casing_liner_tubingRef ; |
| 212 | sp:subject spin:_this | 162 | sp:subject spin:_this |
| 213 | ] [ rdf:type sp:Optional ; | 163 | ] [ rdf:type sp:Optional ; |
| 214 | - sp:elements ([ sp:object | 164 | + sp:elements ([ sp:object _:b35 ; |
| 215 | - [ sp:varName "enumTubeType"^^xsd:string | ||
| 216 | - ] ; | ||
| 217 | sp:predicate ddr:typeRef ; | 165 | sp:predicate ddr:typeRef ; |
| 218 | - sp:subject | 166 | + sp:subject _:b34 |
| 219 | - [ sp:varName "casingLinerTubing"^^xsd:string | ||
| 220 | - ] | ||
| 221 | ]) | 167 | ]) |
| 222 | ] [ rdf:type sp:Optional ; | 168 | ] [ rdf:type sp:Optional ; |
| 223 | - sp:elements ([ sp:object | 169 | + sp:elements ([ sp:object _:b36 ; |
| 224 | - [ sp:varName "id"^^xsd:string | ||
| 225 | - ] ; | ||
| 226 | sp:predicate ddr:idRef ; | 170 | sp:predicate ddr:idRef ; |
| 227 | - sp:subject | 171 | + sp:subject _:b34 |
| 228 | - [ sp:varName "casingLinerTubing"^^xsd:string | 172 | + ] [ sp:object _:b37 ; |
| 229 | - ] | ||
| 230 | - ] [ sp:object | ||
| 231 | - [ sp:varName "uomId"^^xsd:string | ||
| 232 | - ] ; | ||
| 233 | sp:predicate ddr:uomRef ; | 173 | sp:predicate ddr:uomRef ; |
| 234 | - sp:subject | 174 | + sp:subject _:b36 |
| 235 | - [ sp:varName "id"^^xsd:string | 175 | + ] [ sp:object _:b19 ; |
| 236 | - ] | ||
| 237 | - ] [ sp:object | ||
| 238 | - [ sp:varName "realId"^^xsd:string | ||
| 239 | - ] ; | ||
| 240 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 176 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 241 | - sp:subject | 177 | + sp:subject _:b36 |
| 242 | - [ sp:varName "id"^^xsd:string | ||
| 243 | - ] | ||
| 244 | ]) | 178 | ]) |
| 245 | ] [ rdf:type sp:Optional ; | 179 | ] [ rdf:type sp:Optional ; |
| 246 | - sp:elements ([ sp:object | 180 | + sp:elements ([ sp:object _:b38 ; |
| 247 | - [ sp:varName "od"^^xsd:string | ||
| 248 | - ] ; | ||
| 249 | sp:predicate ddr:odRef ; | 181 | sp:predicate ddr:odRef ; |
| 250 | - sp:subject | 182 | + sp:subject _:b34 |
| 251 | - [ sp:varName "casingLinerTubing"^^xsd:string | 183 | + ] [ sp:object _:b39 ; |
| 252 | - ] | ||
| 253 | - ] [ sp:object | ||
| 254 | - [ sp:varName "uomOd"^^xsd:string | ||
| 255 | - ] ; | ||
| 256 | sp:predicate ddr:uomRef ; | 184 | sp:predicate ddr:uomRef ; |
| 257 | - sp:subject | 185 | + sp:subject _:b38 |
| 258 | - [ sp:varName "od"^^xsd:string | 186 | + ] [ sp:object _:b40 ; |
| 259 | - ] | ||
| 260 | - ] [ sp:object | ||
| 261 | - [ sp:varName "realOd"^^xsd:string | ||
| 262 | - ] ; | ||
| 263 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 187 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 264 | - sp:subject | 188 | + sp:subject _:b38 |
| 265 | - [ sp:varName "od"^^xsd:string | ||
| 266 | - ] | ||
| 267 | ]) | 189 | ]) |
| 268 | ] [ rdf:type sp:Optional ; | 190 | ] [ rdf:type sp:Optional ; |
| 269 | - sp:elements ([ sp:object | 191 | + sp:elements ([ sp:object _:b41 ; |
| 270 | - [ sp:varName "weight"^^xsd:string | ||
| 271 | - ] ; | ||
| 272 | sp:predicate ddr:weightRef ; | 192 | sp:predicate ddr:weightRef ; |
| 273 | - sp:subject | 193 | + sp:subject _:b34 |
| 274 | - [ sp:varName "casingLinerTubing"^^xsd:string | 194 | + ] [ sp:object _:b42 ; |
| 275 | - ] | ||
| 276 | - ] [ sp:object | ||
| 277 | - [ sp:varName "uomWeight"^^xsd:string | ||
| 278 | - ] ; | ||
| 279 | sp:predicate ddr:uomRef ; | 195 | sp:predicate ddr:uomRef ; |
| 280 | - sp:subject | 196 | + sp:subject _:b41 |
| 281 | - [ sp:varName "weight"^^xsd:string | 197 | + ] [ sp:object _:b43 ; |
| 282 | - ] | ||
| 283 | - ] [ sp:object | ||
| 284 | - [ sp:varName "realMassPerUnitLength"^^xsd:string | ||
| 285 | - ] ; | ||
| 286 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 198 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 287 | - sp:subject | 199 | + sp:subject _:b41 |
| 288 | - [ sp:varName "weight"^^xsd:string | ||
| 289 | - ] | ||
| 290 | ]) | 200 | ]) |
| 291 | ] [ rdf:type sp:Optional ; | 201 | ] [ rdf:type sp:Optional ; |
| 292 | - sp:elements ([ sp:object | 202 | + sp:elements ([ sp:object _:b26 ; |
| 293 | - [ sp:varName "grade"^^xsd:string | ||
| 294 | - ] ; | ||
| 295 | sp:predicate ddr:grade ; | 203 | sp:predicate ddr:grade ; |
| 296 | - sp:subject | 204 | + sp:subject _:b34 |
| 297 | - [ sp:varName "casingLinerTubing"^^xsd:string | ||
| 298 | - ] | ||
| 299 | ]) | 205 | ]) |
| 300 | ] [ rdf:type sp:Optional ; | 206 | ] [ rdf:type sp:Optional ; |
| 301 | - sp:elements ([ sp:object | 207 | + sp:elements ([ sp:object _:b28 ; |
| 302 | - [ sp:varName "connection"^^xsd:string | ||
| 303 | - ] ; | ||
| 304 | sp:predicate ddr:connection ; | 208 | sp:predicate ddr:connection ; |
| 305 | - sp:subject | 209 | + sp:subject _:b34 |
| 306 | - [ sp:varName "casingLinerTubing"^^xsd:string | ||
| 307 | - ] | ||
| 308 | ]) | 210 | ]) |
| 309 | ] [ rdf:type sp:Optional ; | 211 | ] [ rdf:type sp:Optional ; |
| 310 | - sp:elements ([ sp:object | 212 | + sp:elements ([ sp:object _:b44 ; |
| 311 | - [ sp:varName "length"^^xsd:string | ||
| 312 | - ] ; | ||
| 313 | sp:predicate ddr:lengthRef ; | 213 | sp:predicate ddr:lengthRef ; |
| 314 | - sp:subject | 214 | + sp:subject _:b34 |
| 315 | - [ sp:varName "casingLinerTubing"^^xsd:string | 215 | + ] [ sp:object _:b45 ; |
| 316 | - ] | ||
| 317 | - ] [ sp:object | ||
| 318 | - [ sp:varName "uomLen"^^xsd:string | ||
| 319 | - ] ; | ||
| 320 | sp:predicate ddr:uomRef ; | 216 | sp:predicate ddr:uomRef ; |
| 321 | - sp:subject | 217 | + sp:subject _:b44 |
| 322 | - [ sp:varName "length"^^xsd:string | 218 | + ] [ sp:object _:b30 ; |
| 323 | - ] | ||
| 324 | - ] [ sp:object | ||
| 325 | - [ sp:varName "realLen"^^xsd:string | ||
| 326 | - ] ; | ||
| 327 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 219 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 328 | - sp:subject | 220 | + sp:subject _:b44 |
| 329 | - [ sp:varName "length"^^xsd:string | ||
| 330 | - ] | ||
| 331 | ]) | 221 | ]) |
| 332 | ] [ rdf:type sp:Optional ; | 222 | ] [ rdf:type sp:Optional ; |
| 333 | - sp:elements ([ sp:object | 223 | + sp:elements ([ sp:object _:b46 ; |
| 334 | - [ sp:varName "mdTop"^^xsd:string | ||
| 335 | - ] ; | ||
| 336 | sp:predicate ddr:mdTopRef ; | 224 | sp:predicate ddr:mdTopRef ; |
| 337 | - sp:subject | 225 | + sp:subject _:b34 |
| 338 | - [ sp:varName "casingLinerTubing"^^xsd:string | 226 | + ] [ sp:object _:b47 ; |
| 339 | - ] | ||
| 340 | - ] [ sp:object | ||
| 341 | - [ sp:varName "uomMdTop"^^xsd:string | ||
| 342 | - ] ; | ||
| 343 | sp:predicate ddr:uomRef ; | 227 | sp:predicate ddr:uomRef ; |
| 344 | - sp:subject | 228 | + sp:subject _:b46 |
| 345 | - [ sp:varName "mdTop"^^xsd:string | 229 | + ] [ sp:object _:b10 ; |
| 346 | - ] | ||
| 347 | - ] [ sp:object | ||
| 348 | - [ sp:varName "realMdTop"^^xsd:string | ||
| 349 | - ] ; | ||
| 350 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 230 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 351 | - sp:subject | 231 | + sp:subject _:b46 |
| 352 | - [ sp:varName "mdTop"^^xsd:string | ||
| 353 | - ] | ||
| 354 | ]) | 232 | ]) |
| 355 | ] [ rdf:type sp:Optional ; | 233 | ] [ rdf:type sp:Optional ; |
| 356 | - sp:elements ([ sp:object | 234 | + sp:elements ([ sp:object _:b48 ; |
| 357 | - [ sp:varName "mdBottom"^^xsd:string | ||
| 358 | - ] ; | ||
| 359 | sp:predicate ddr:mdBottomRef ; | 235 | sp:predicate ddr:mdBottomRef ; |
| 360 | - sp:subject | 236 | + sp:subject _:b34 |
| 361 | - [ sp:varName "casingLinerTubing"^^xsd:string | 237 | + ] [ sp:object _:b49 ; |
| 362 | - ] | ||
| 363 | - ] [ sp:object | ||
| 364 | - [ sp:varName "uomMdBottom"^^xsd:string | ||
| 365 | - ] ; | ||
| 366 | sp:predicate ddr:uomRef ; | 238 | sp:predicate ddr:uomRef ; |
| 367 | - sp:subject | 239 | + sp:subject _:b48 |
| 368 | - [ sp:varName "mdBottom"^^xsd:string | 240 | + ] [ sp:object _:b13 ; |
| 369 | - ] | ||
| 370 | - ] [ sp:object | ||
| 371 | - [ sp:varName "realMdBottom"^^xsd:string | ||
| 372 | - ] ; | ||
| 373 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 241 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 374 | - sp:subject | 242 | + sp:subject _:b48 |
| 375 | - [ sp:varName "mdBottom"^^xsd:string | ||
| 376 | - ] | ||
| 377 | ]) | 243 | ]) |
| 378 | ] [ rdf:type sp:Optional ; | 244 | ] [ rdf:type sp:Optional ; |
| 379 | - sp:elements ([ sp:object | 245 | + sp:elements ([ sp:object _:b50 ; |
| 380 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 381 | - ] ; | ||
| 382 | sp:predicate ddr:casing_liner_tubing_runRef ; | 246 | sp:predicate ddr:casing_liner_tubing_runRef ; |
| 383 | - sp:subject | 247 | + sp:subject _:b34 |
| 384 | - [ sp:varName "casingLinerTubing"^^xsd:string | 248 | + ] [ sp:object _:b51 ; |
| 385 | - ] | ||
| 386 | - ] [ sp:object | ||
| 387 | - [ sp:varName "enumCasingType"^^xsd:string | ||
| 388 | - ] ; | ||
| 389 | sp:predicate ddr:casingTypeRef ; | 249 | sp:predicate ddr:casingTypeRef ; |
| 390 | - sp:subject | 250 | + sp:subject _:b50 |
| 391 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 392 | - ] | ||
| 393 | ]) | 251 | ]) |
| 394 | ] [ rdf:type sp:Optional ; | 252 | ] [ rdf:type sp:Optional ; |
| 395 | - sp:elements ([ sp:object | 253 | + sp:elements ([ sp:object _:b50 ; |
| 396 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 397 | - ] ; | ||
| 398 | sp:predicate ddr:casing_liner_tubing_runRef ; | 254 | sp:predicate ddr:casing_liner_tubing_runRef ; |
| 399 | - sp:subject | 255 | + sp:subject _:b34 |
| 400 | - [ sp:varName "casingLinerTubing"^^xsd:string | 256 | + ] [ sp:object _:b5 ; |
| 401 | - ] | ||
| 402 | - ] [ sp:object | ||
| 403 | - [ sp:varName "description"^^xsd:string | ||
| 404 | - ] ; | ||
| 405 | sp:predicate ddr:description ; | 257 | sp:predicate ddr:description ; |
| 406 | - sp:subject | 258 | + sp:subject _:b50 |
| 407 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 408 | - ] | ||
| 409 | ]) | 259 | ]) |
| 410 | ] [ rdf:type sp:Optional ; | 260 | ] [ rdf:type sp:Optional ; |
| 411 | - sp:elements ([ sp:object | 261 | + sp:elements ([ sp:object _:b50 ; |
| 412 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 413 | - ] ; | ||
| 414 | sp:predicate ddr:casing_liner_tubing_runRef ; | 262 | sp:predicate ddr:casing_liner_tubing_runRef ; |
| 415 | - sp:subject | 263 | + sp:subject _:b34 |
| 416 | - [ sp:varName "casingLinerTubing"^^xsd:string | 264 | + ] [ sp:object _:b3 ; |
| 417 | - ] | ||
| 418 | - ] [ sp:object | ||
| 419 | - [ sp:varName "dTimStartStim"^^xsd:string | ||
| 420 | - ] ; | ||
| 421 | sp:predicate ddr:dTimStart ; | 265 | sp:predicate ddr:dTimStart ; |
| 422 | - sp:subject | 266 | + sp:subject _:b50 |
| 423 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 424 | - ] | ||
| 425 | ]) | 267 | ]) |
| 426 | ] [ rdf:type sp:Optional ; | 268 | ] [ rdf:type sp:Optional ; |
| 427 | - sp:elements ([ sp:object | 269 | + sp:elements ([ sp:object _:b50 ; |
| 428 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 429 | - ] ; | ||
| 430 | sp:predicate ddr:casing_liner_tubing_runRef ; | 270 | sp:predicate ddr:casing_liner_tubing_runRef ; |
| 431 | - sp:subject | 271 | + sp:subject _:b34 |
| 432 | - [ sp:varName "casingLinerTubing"^^xsd:string | 272 | + ] [ sp:object _:b4 ; |
| 433 | - ] | ||
| 434 | - ] [ sp:object | ||
| 435 | - [ sp:varName "dTimEndStim"^^xsd:string | ||
| 436 | - ] ; | ||
| 437 | sp:predicate ddr:dTimEnd ; | 273 | sp:predicate ddr:dTimEnd ; |
| 438 | - sp:subject | 274 | + sp:subject _:b50 |
| 439 | - [ sp:varName "casingLinerTubingRun"^^xsd:string | ||
| 440 | - ] | ||
| 441 | ]) | 275 | ]) |
| 442 | ] [ rdf:type sp:Bind ; | 276 | ] [ rdf:type sp:Bind ; |
| 443 | sp:expression | 277 | sp:expression |
| 444 | [ rdf:type ep-spin-lib:normalizeString ; | 278 | [ rdf:type ep-spin-lib:normalizeString ; |
| 445 | - sp:arg1 [ sp:varName "nameWellBore"^^xsd:string | 279 | + sp:arg1 _:b32 |
| 446 | - ] | ||
| 447 | ] ; | 280 | ] ; |
| 448 | - sp:variable | 281 | + sp:variable _:b52 |
| 449 | - [ sp:varName "normalizedWellBoreName"^^xsd:string | ||
| 450 | - ] | ||
| 451 | ] [ rdf:type sp:Bind ; | 282 | ] [ rdf:type sp:Bind ; |
| 452 | sp:expression | 283 | sp:expression |
| 453 | [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; | 284 | [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; |
| 454 | - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string | 285 | + sp:arg1 _:b52 ; |
| 455 | - ] ; | 286 | + sp:arg2 _:b33 |
| 456 | - sp:arg2 [ sp:varName "dTimStart"^^xsd:string | ||
| 457 | - ] | ||
| 458 | ] ; | 287 | ] ; |
| 459 | - sp:variable | 288 | + sp:variable _:b2 |
| 460 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | ||
| 461 | - ] | ||
| 462 | ] [ rdf:type sp:Bind ; | 289 | ] [ rdf:type sp:Bind ; |
| 463 | sp:expression | 290 | sp:expression |
| 464 | [ rdf:type afn:localname ; | 291 | [ rdf:type afn:localname ; |
| 465 | - sp:arg1 [ sp:varName "casingLinerTubing"^^xsd:string | 292 | + sp:arg1 _:b34 |
| 466 | - ] | ||
| 467 | ] ; | 293 | ] ; |
| 468 | - sp:variable | 294 | + sp:variable _:b53 |
| 469 | - [ sp:varName "localname"^^xsd:string | ||
| 470 | - ] | ||
| 471 | ] [ rdf:type sp:Bind ; | 295 | ] [ rdf:type sp:Bind ; |
| 472 | sp:expression | 296 | sp:expression |
| 473 | - [ rdf:type ep-spin-lib:buildWellStimulationURI ; | 297 | + [ rdf:type ep-spin-lib:buildWellCompletionURI ; |
| 474 | - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string | 298 | + sp:arg1 _:b52 ; |
| 475 | - ] ; | 299 | + sp:arg2 _:b33 ; |
| 476 | - sp:arg2 [ sp:varName "dTimStart"^^xsd:string | 300 | + sp:arg3 _:b53 |
| 477 | - ] ; | ||
| 478 | - sp:arg3 [ sp:varName "localname"^^xsd:string | ||
| 479 | - ] | ||
| 480 | ] ; | 301 | ] ; |
| 481 | - sp:variable | 302 | + sp:variable _:b1 |
| 482 | - [ sp:varName "wellStimulation"^^xsd:string | ||
| 483 | - ] | ||
| 484 | ] [ rdf:type sp:Bind ; | 303 | ] [ rdf:type sp:Bind ; |
| 485 | sp:expression | 304 | sp:expression |
| 486 | [ rdf:type ep-spin-lib:selectCasingRoleType ; | 305 | [ rdf:type ep-spin-lib:selectCasingRoleType ; |
| 487 | - sp:arg1 [ sp:varName "enumCasingType"^^xsd:string | 306 | + sp:arg1 _:b51 |
| 488 | - ] | ||
| 489 | ] ; | 307 | ] ; |
| 490 | - sp:variable | 308 | + sp:variable _:b16 |
| 491 | - [ sp:varName "casingRoleType"^^xsd:string | ||
| 492 | - ] | ||
| 493 | ] [ rdf:type sp:Bind ; | 309 | ] [ rdf:type sp:Bind ; |
| 494 | sp:expression | 310 | sp:expression |
| 495 | [ rdf:type ep-spin-lib:selectTubeType ; | 311 | [ rdf:type ep-spin-lib:selectTubeType ; |
| 496 | - sp:arg1 [ sp:varName "enumTubeType"^^xsd:string | 312 | + sp:arg1 _:b35 |
| 497 | - ] | ||
| 498 | ] ; | 313 | ] ; |
| 499 | - sp:variable | 314 | + sp:variable _:b17 |
| 500 | - [ sp:varName "tubeType"^^xsd:string | ||
| 501 | - ] | ||
| 502 | ] [ rdf:type sp:Bind ; | 315 | ] [ rdf:type sp:Bind ; |
| 503 | sp:expression | 316 | sp:expression |
| 504 | [ rdf:type ep-spin-lib:selectLengthScale ; | 317 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 505 | - sp:arg1 [ sp:varName "uomId"^^xsd:string | 318 | + sp:arg1 _:b37 |
| 506 | - ] | ||
| 507 | ] ; | 319 | ] ; |
| 508 | - sp:variable | 320 | + sp:variable _:b20 |
| 509 | - [ sp:varName "lengthScaleId"^^xsd:string | ||
| 510 | - ] | ||
| 511 | ] [ rdf:type sp:Bind ; | 321 | ] [ rdf:type sp:Bind ; |
| 512 | sp:expression | 322 | sp:expression |
| 513 | [ rdf:type ep-spin-lib:selectLengthScale ; | 323 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 514 | - sp:arg1 [ sp:varName "uomOd"^^xsd:string | 324 | + sp:arg1 _:b39 |
| 515 | - ] | ||
| 516 | ] ; | 325 | ] ; |
| 517 | sp:variable | 326 | sp:variable |
| 518 | [ sp:varName "lengthScaleOd"^^xsd:string | 327 | [ sp:varName "lengthScaleOd"^^xsd:string |
| ... | @@ -520,50 +329,196 @@ ddr:Obj_drillReport | ... | @@ -520,50 +329,196 @@ ddr:Obj_drillReport |
| 520 | ] [ rdf:type sp:Bind ; | 329 | ] [ rdf:type sp:Bind ; |
| 521 | sp:expression | 330 | sp:expression |
| 522 | [ rdf:type ep-spin-lib:selectLengthScale ; | 331 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 523 | - sp:arg1 [ sp:varName "uomLen"^^xsd:string | 332 | + sp:arg1 _:b45 |
| 524 | - ] | ||
| 525 | ] ; | 333 | ] ; |
| 526 | - sp:variable | 334 | + sp:variable _:b31 |
| 527 | - [ sp:varName "lengthScaleLen"^^xsd:string | ||
| 528 | - ] | ||
| 529 | ] [ rdf:type sp:Bind ; | 335 | ] [ rdf:type sp:Bind ; |
| 530 | sp:expression | 336 | sp:expression |
| 531 | [ rdf:type ep-spin-lib:selectLengthScale ; | 337 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 532 | - sp:arg1 [ sp:varName "uomMdTop"^^xsd:string | 338 | + sp:arg1 _:b47 |
| 533 | - ] | ||
| 534 | ] ; | 339 | ] ; |
| 535 | - sp:variable | 340 | + sp:variable _:b11 |
| 536 | - [ sp:varName "lengthScaleMdTop"^^xsd:string | ||
| 537 | - ] | ||
| 538 | ] [ rdf:type sp:Bind ; | 341 | ] [ rdf:type sp:Bind ; |
| 539 | sp:expression | 342 | sp:expression |
| 540 | [ rdf:type ep-spin-lib:selectLengthScale ; | 343 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 541 | - sp:arg1 [ sp:varName "uomMdBottom"^^xsd:string | 344 | + sp:arg1 _:b49 |
| 542 | - ] | ||
| 543 | ] ; | 345 | ] ; |
| 544 | - sp:variable | 346 | + sp:variable _:b14 |
| 545 | - [ sp:varName "lengthScaleMdBottom"^^xsd:string | ||
| 546 | - ] | ||
| 547 | ] [ rdf:type sp:Bind ; | 347 | ] [ rdf:type sp:Bind ; |
| 548 | sp:expression | 348 | sp:expression |
| 549 | [ rdf:type ep-spin-lib:selectMassPerUnitLengthScale ; | 349 | [ rdf:type ep-spin-lib:selectMassPerUnitLengthScale ; |
| 550 | - sp:arg1 [ sp:varName "uomWeight"^^xsd:string | 350 | + sp:arg1 _:b42 |
| 551 | - ] | ||
| 552 | ] ; | 351 | ] ; |
| 553 | sp:variable | 352 | sp:variable |
| 554 | [ sp:varName "massPerUnitLengthScale"^^xsd:string | 353 | [ sp:varName "massPerUnitLengthScale"^^xsd:string |
| 555 | ] | 354 | ] |
| 556 | ] [ rdf:type sp:Bind ; | 355 | ] [ rdf:type sp:Bind ; |
| 557 | sp:expression | 356 | sp:expression |
| 357 | + [ rdf:type ep-spin-lib:buildSteelGradeAPI_5CTClass ; | ||
| 358 | + sp:arg1 _:b26 | ||
| 359 | + ] ; | ||
| 360 | + sp:variable _:b25 | ||
| 361 | + ] [ rdf:type sp:Bind ; | ||
| 362 | + sp:expression | ||
| 363 | + [ rdf:type ep-spin-lib:normalizeDoubleName ; | ||
| 364 | + sp:arg1 _:b40 | ||
| 365 | + ] ; | ||
| 366 | + sp:variable _:b22 | ||
| 367 | + ] [ rdf:type sp:Bind ; | ||
| 368 | + sp:expression | ||
| 369 | + [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ; | ||
| 370 | + sp:arg1 _:b22 | ||
| 371 | + ] ; | ||
| 372 | + sp:variable _:b21 | ||
| 373 | + ] [ rdf:type sp:Bind ; | ||
| 374 | + sp:expression | ||
| 375 | + [ rdf:type ep-spin-lib:normalizeDoubleName ; | ||
| 376 | + sp:arg1 _:b43 | ||
| 377 | + ] ; | ||
| 378 | + sp:variable _:b24 | ||
| 379 | + ] [ rdf:type sp:Bind ; | ||
| 380 | + sp:expression | ||
| 381 | + [ rdf:type ep-spin-lib:buildPipeWeightAPI_5CTClass ; | ||
| 382 | + sp:arg1 _:b24 | ||
| 383 | + ] ; | ||
| 384 | + sp:variable _:b23 | ||
| 385 | + ] [ rdf:type sp:Bind ; | ||
| 386 | + sp:expression | ||
| 558 | [ rdf:type rhspin:wellBoreByName ; | 387 | [ rdf:type rhspin:wellBoreByName ; |
| 559 | arg:wellBoreName | 388 | arg:wellBoreName |
| 560 | [ rdf:type xsd:string ; | 389 | [ rdf:type xsd:string ; |
| 561 | - sp:arg1 [ sp:varName "nameWellBore"^^xsd:string | 390 | + sp:arg1 _:b32 |
| 562 | - ] | ||
| 563 | ] | 391 | ] |
| 564 | ] ; | 392 | ] ; |
| 565 | - sp:variable | 393 | + sp:variable _:b8 |
| 566 | - [ sp:varName "wellBore"^^xsd:string | ||
| 567 | - ] | ||
| 568 | ]) | 394 | ]) |
| 569 | ] . | 395 | ] . |
| 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 15:57:48 GMT 2011 | ||
| 1 | # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage | 2 | # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage |
| 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 | ||
| 5 | 6 | ||
| 6 | @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage#> . | 7 | @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage#> . |
| 7 | @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . | 8 | @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . |
| ... | @@ -19,120 +20,461 @@ | ... | @@ -19,120 +20,461 @@ |
| 19 | 20 | ||
| 20 | <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage> | 21 | <http://www.reportinghub.no/ep/transform/1.1/ddr/cementStage> |
| 21 | rdf:type owl:Ontology ; | 22 | rdf:type owl:Ontology ; |
| 22 | - 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://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://www.witsml.org/schemas/1series> ; |
| 23 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 24 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 24 | 25 | ||
| 25 | ddr:Obj_drillReport | 26 | ddr:Obj_drillReport |
| 26 | spin:rule | 27 | spin:rule |
| 27 | [ rdf:type sp:Construct ; | 28 | [ rdf:type sp:Construct ; |
| 29 | + rdfs:comment "STEP 290 Process cementStage - create Well cement job"^^xsd:string ; | ||
| 30 | + sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCementJob> ; | ||
| 31 | + sp:predicate rdf:type ; | ||
| 32 | + sp:subject _:b1 | ||
| 33 | + ] [ sp:object _:b1 ; | ||
| 34 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 35 | + sp:subject _:b2 | ||
| 36 | + ] [ sp:object _:b3 ; | ||
| 37 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | ||
| 38 | + sp:subject _:b1 | ||
| 39 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; | ||
| 40 | + sp:predicate rdf:type ; | ||
| 41 | + sp:subject _:b3 | ||
| 42 | + ] [ sp:object _:b4 ; | ||
| 43 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | ||
| 44 | + sp:subject _:b3 | ||
| 45 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; | ||
| 46 | + sp:predicate rdf:type ; | ||
| 47 | + sp:subject _:b4 | ||
| 48 | + ] [ sp:object _:b5 ; | ||
| 49 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; | ||
| 50 | + sp:subject _:b4 | ||
| 51 | + ] [ sp:object _:b6 ; | ||
| 52 | + sp:predicate rdf:type ; | ||
| 53 | + sp:subject _:b1 | ||
| 54 | + ] [ sp:object _:b7 ; | ||
| 55 | + sp:predicate rdf:type ; | ||
| 56 | + sp:subject _:b1 | ||
| 57 | + ] [ sp:object _:b8 ; | ||
| 58 | + sp:predicate rdf:type ; | ||
| 59 | + sp:subject _:b1 | ||
| 60 | + ] [ sp:object _:b9 ; | ||
| 61 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 62 | + sp:subject _:b1 | ||
| 63 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCementPumping> ; | ||
| 64 | + sp:predicate rdf:type ; | ||
| 65 | + sp:subject _:b9 | ||
| 66 | + ] [ sp:object _:b10 ; | ||
| 67 | + sp:predicate rdf:type ; | ||
| 68 | + sp:subject _:b9 | ||
| 69 | + ] [ sp:object _:b11 ; | ||
| 70 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#returnedCementingFluid> ; | ||
| 71 | + sp:subject _:b9 | ||
| 72 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/well#CementingFluid> ; | ||
| 73 | + sp:predicate rdf:type ; | ||
| 74 | + sp:subject _:b11 | ||
| 75 | + ] [ sp:object _:b12 ; | ||
| 76 | + sp:predicate rdf:type ; | ||
| 77 | + sp:subject _:b11 | ||
| 78 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; | ||
| 79 | + sp:predicate rdf:type ; | ||
| 80 | + sp:subject _:b12 | ||
| 81 | + ] [ sp:object _:b13 ; | ||
| 82 | + sp:predicate _:b14 ; | ||
| 83 | + sp:subject _:b12 | ||
| 84 | + ] [ sp:object _:b15 ; | ||
| 85 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; | ||
| 86 | + sp:subject _:b9 | ||
| 87 | + ] [ sp:object _:b16 ; | ||
| 88 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; | ||
| 89 | + sp:subject _:b9 | ||
| 90 | + ] [ sp:object _:b17 ; | ||
| 91 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#pumpedFluid> ; | ||
| 92 | + sp:subject _:b9 | ||
| 93 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/well#CementingFluid> ; | ||
| 94 | + sp:predicate rdf:type ; | ||
| 95 | + sp:subject _:b17 | ||
| 96 | + ] [ sp:object _:b18 ; | ||
| 97 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ; | ||
| 98 | + sp:subject _:b4 | ||
| 99 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingString> ; | ||
| 100 | + sp:predicate rdf:type ; | ||
| 101 | + sp:subject _:b18 | ||
| 102 | + ] [ sp:object _:b19 ; | ||
| 103 | + sp:predicate rdf:type ; | ||
| 104 | + sp:subject _:b18 | ||
| 105 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; | ||
| 106 | + sp:predicate rdfs:subClassOf ; | ||
| 107 | + sp:subject _:b19 | ||
| 108 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; | ||
| 109 | + sp:predicate rdf:type ; | ||
| 110 | + sp:subject _:b19 | ||
| 111 | + ] [ sp:object _:b20 ; | ||
| 112 | + sp:predicate rdfs:label ; | ||
| 113 | + sp:subject _:b19 | ||
| 114 | + ] [ sp:object _:b21 ; | ||
| 115 | + sp:predicate rdfs:comment ; | ||
| 116 | + sp:subject _:b1 | ||
| 117 | + ] [ sp:object _:b22 ; | ||
| 118 | + sp:predicate rdf:type ; | ||
| 119 | + sp:subject _:b1 | ||
| 120 | + ] [ sp:object _:b23 ; | ||
| 121 | + sp:predicate rdf:type ; | ||
| 122 | + sp:subject _:b1 | ||
| 123 | + ] [ sp:object _:b24 ; | ||
| 124 | + sp:predicate rdf:type ; | ||
| 125 | + sp:subject _:b1 | ||
| 126 | + ] [ sp:object _:b25 ; | ||
| 127 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#pressureAtWhichPlugBumped> ; | ||
| 128 | + sp:subject _:b1 | ||
| 129 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; | ||
| 130 | + sp:predicate rdf:type ; | ||
| 131 | + sp:subject _:b25 | ||
| 132 | + ] [ sp:object _:b26 ; | ||
| 133 | + sp:predicate _:b27 ; | ||
| 134 | + sp:subject _:b25 | ||
| 135 | + ] [ sp:object _:b28 ; | ||
| 136 | + sp:predicate rdf:type ; | ||
| 137 | + sp:subject _:b1 | ||
| 138 | + ] [ sp:object _:b29 ; | ||
| 139 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 140 | + sp:subject _:b1 | ||
| 141 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCementJobPressureRelease> ; | ||
| 142 | + sp:predicate rdf:type ; | ||
| 143 | + sp:subject _:b29 | ||
| 144 | + ] [ sp:object _:b30 ; | ||
| 145 | + sp:predicate <http://www.reportinghub.no/ep/schema/activity#nominallyAt> ; | ||
| 146 | + sp:subject _:b29 | ||
| 147 | + ]) ; | ||
| 148 | + sp:where ([ sp:object _:b31 ; | ||
| 149 | + sp:predicate ep-spin-lib:nameWellbore ; | ||
| 150 | + sp:subject spin:_this | ||
| 151 | + ] [ sp:object _:b32 ; | ||
| 152 | + sp:predicate ddr:dTimStart ; | ||
| 153 | + sp:subject spin:_this | ||
| 154 | + ] [ sp:object _:b33 ; | ||
| 155 | + sp:predicate ddr:cementStageRef ; | ||
| 156 | + sp:subject spin:_this | ||
| 157 | + ] [ rdf:type sp:Optional ; | ||
| 158 | + sp:elements ([ sp:object _:b15 ; | ||
| 159 | + sp:predicate ddr:dTimPumpStart ; | ||
| 160 | + sp:subject _:b33 | ||
| 161 | + ]) | ||
| 162 | + ] [ rdf:type sp:Optional ; | ||
| 163 | + sp:elements ([ sp:object _:b16 ; | ||
| 164 | + sp:predicate ddr:dTimPumpEnd ; | ||
| 165 | + sp:subject _:b33 | ||
| 166 | + ]) | ||
| 167 | + ] [ rdf:type sp:Optional ; | ||
| 168 | + sp:elements ([ sp:object _:b34 ; | ||
| 169 | + sp:predicate ddr:jobTypeRef ; | ||
| 170 | + sp:subject _:b33 | ||
| 171 | + ]) | ||
| 172 | + ] [ rdf:type sp:Optional ; | ||
| 173 | + sp:elements ([ sp:object _:b35 ; | ||
| 174 | + sp:predicate ddr:casingStrDiaRef ; | ||
| 175 | + sp:subject _:b33 | ||
| 176 | + ] [ sp:object _:b36 ; | ||
| 177 | + sp:predicate ddr:uomRef ; | ||
| 178 | + sp:subject _:b35 | ||
| 179 | + ] [ sp:object _:b37 ; | ||
| 180 | + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | ||
| 181 | + sp:subject _:b35 | ||
| 182 | + ]) | ||
| 183 | + ] [ rdf:type sp:Optional ; | ||
| 184 | + sp:elements ([ sp:object _:b21 ; | ||
| 185 | + sp:predicate ddr:comments ; | ||
| 186 | + sp:subject _:b33 | ||
| 187 | + ]) | ||
| 188 | + ] [ rdf:type sp:Optional ; | ||
| 189 | + sp:elements ([ sp:object _:b38 ; | ||
| 190 | + sp:predicate ddr:volReturnsRef ; | ||
| 191 | + sp:subject _:b33 | ||
| 192 | + ] [ sp:object _:b39 ; | ||
| 193 | + sp:predicate ddr:uomRef ; | ||
| 194 | + sp:subject _:b38 | ||
| 195 | + ] [ sp:object _:b13 ; | ||
| 196 | + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | ||
| 197 | + sp:subject _:b38 | ||
| 198 | + ]) | ||
| 199 | + ] [ rdf:type sp:Optional ; | ||
| 200 | + sp:elements ([ sp:object _:b30 ; | ||
| 201 | + sp:predicate ddr:dTimPresReleased ; | ||
| 202 | + sp:subject _:b33 | ||
| 203 | + ]) | ||
| 204 | + ] [ rdf:type sp:Optional ; | ||
| 205 | + sp:elements ([ sp:object _:b40 ; | ||
| 206 | + sp:predicate ddr:annFlowAfter ; | ||
| 207 | + sp:subject _:b33 | ||
| 208 | + ]) | ||
| 209 | + ] [ rdf:type sp:Optional ; | ||
| 210 | + sp:elements ([ sp:object _:b41 ; | ||
| 211 | + sp:predicate ddr:topPlug ; | ||
| 212 | + sp:subject _:b33 | ||
| 213 | + ]) | ||
| 214 | + ] [ rdf:type sp:Optional ; | ||
| 215 | + sp:elements ([ sp:object _:b42 ; | ||
| 216 | + sp:predicate ddr:botPlug ; | ||
| 217 | + sp:subject _:b33 | ||
| 218 | + ]) | ||
| 219 | + ] [ rdf:type sp:Optional ; | ||
| 220 | + sp:elements ([ sp:object _:b43 ; | ||
| 221 | + sp:predicate ddr:plugBumped ; | ||
| 222 | + sp:subject _:b33 | ||
| 223 | + ]) | ||
| 224 | + ] [ rdf:type sp:Optional ; | ||
| 225 | + sp:elements ([ sp:object _:b44 ; | ||
| 226 | + sp:predicate ddr:presBumpRef ; | ||
| 227 | + sp:subject _:b33 | ||
| 228 | + ] [ sp:object _:b45 ; | ||
| 229 | + sp:predicate ddr:uomRef ; | ||
| 230 | + sp:subject _:b44 | ||
| 231 | + ] [ sp:object _:b26 ; | ||
| 232 | + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | ||
| 233 | + sp:subject _:b44 | ||
| 234 | + ]) | ||
| 235 | + ] [ rdf:type sp:Optional ; | ||
| 236 | + sp:elements ([ sp:object _:b46 ; | ||
| 237 | + sp:predicate ddr:floatHeld ; | ||
| 238 | + sp:subject _:b33 | ||
| 239 | + ]) | ||
| 240 | + ] [ rdf:type sp:Optional ; | ||
| 241 | + sp:elements ([ sp:object _:b47 ; | ||
| 242 | + sp:predicate ddr:reciprocated ; | ||
| 243 | + sp:subject _:b33 | ||
| 244 | + ]) | ||
| 245 | + ] [ rdf:type sp:Optional ; | ||
| 246 | + sp:elements ([ sp:object _:b48 ; | ||
| 247 | + sp:predicate ddr:rotated ; | ||
| 248 | + sp:subject _:b33 | ||
| 249 | + ]) | ||
| 250 | + ] [ rdf:type sp:Bind ; | ||
| 251 | + sp:expression | ||
| 252 | + [ rdf:type ep-spin-lib:normalizeString ; | ||
| 253 | + sp:arg1 _:b31 | ||
| 254 | + ] ; | ||
| 255 | + sp:variable _:b49 | ||
| 256 | + ] [ rdf:type sp:Bind ; | ||
| 257 | + sp:expression | ||
| 258 | + [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; | ||
| 259 | + sp:arg1 _:b49 ; | ||
| 260 | + sp:arg2 _:b32 | ||
| 261 | + ] ; | ||
| 262 | + sp:variable _:b2 | ||
| 263 | + ] [ rdf:type sp:Bind ; | ||
| 264 | + sp:expression | ||
| 265 | + [ rdf:type afn:localname ; | ||
| 266 | + sp:arg1 _:b33 | ||
| 267 | + ] ; | ||
| 268 | + sp:variable _:b50 | ||
| 269 | + ] [ rdf:type sp:Bind ; | ||
| 270 | + sp:expression | ||
| 271 | + [ rdf:type ep-spin-lib:buildWellCementJobURI ; | ||
| 272 | + sp:arg1 _:b49 ; | ||
| 273 | + sp:arg2 _:b32 ; | ||
| 274 | + sp:arg3 _:b50 | ||
| 275 | + ] ; | ||
| 276 | + sp:variable _:b1 | ||
| 277 | + ] [ rdf:type sp:Bind ; | ||
| 278 | + sp:expression | ||
| 279 | + [ rdf:type ep-spin-lib:selectWellCementJobType ; | ||
| 280 | + sp:arg1 _:b34 | ||
| 281 | + ] ; | ||
| 282 | + sp:variable _:b6 | ||
| 283 | + ] [ rdf:type sp:Bind ; | ||
| 284 | + sp:expression | ||
| 285 | + [ rdf:type ep-spin-lib:selectCementingFluidReturnType ; | ||
| 286 | + sp:arg1 _:b40 | ||
| 287 | + ] ; | ||
| 288 | + sp:variable _:b10 | ||
| 289 | + ] [ rdf:type sp:Bind ; | ||
| 290 | + sp:expression | ||
| 291 | + [ rdf:type ep-spin-lib:selectWellCementJobTopPlugType ; | ||
| 292 | + sp:arg1 _:b41 | ||
| 293 | + ] ; | ||
| 294 | + sp:variable _:b7 | ||
| 295 | + ] [ rdf:type sp:Bind ; | ||
| 296 | + sp:expression | ||
| 297 | + [ rdf:type ep-spin-lib:selectWellCementJobBottomPlugType ; | ||
| 298 | + sp:arg1 _:b42 | ||
| 299 | + ] ; | ||
| 300 | + sp:variable _:b8 | ||
| 301 | + ] [ rdf:type sp:Bind ; | ||
| 302 | + sp:expression | ||
| 303 | + [ rdf:type ep-spin-lib:selectWellCementJobCasingRotationType ; | ||
| 304 | + sp:arg1 _:b48 | ||
| 305 | + ] ; | ||
| 306 | + sp:variable _:b22 | ||
| 307 | + ] [ rdf:type sp:Bind ; | ||
| 308 | + sp:expression | ||
| 309 | + [ rdf:type ep-spin-lib:selectWellCementJobCasingReciprocationType ; | ||
| 310 | + sp:arg1 _:b47 | ||
| 311 | + ] ; | ||
| 312 | + sp:variable _:b23 | ||
| 313 | + ] [ rdf:type sp:Bind ; | ||
| 314 | + sp:expression | ||
| 315 | + [ rdf:type ep-spin-lib:selectWellCementJobPlugBumpingType ; | ||
| 316 | + sp:arg1 _:b43 | ||
| 317 | + ] ; | ||
| 318 | + sp:variable _:b24 | ||
| 319 | + ] [ rdf:type sp:Bind ; | ||
| 320 | + sp:expression | ||
| 321 | + [ rdf:type ep-spin-lib:selectWellCementJobFloatHoldingType ; | ||
| 322 | + sp:arg1 _:b46 | ||
| 323 | + ] ; | ||
| 324 | + sp:variable _:b28 | ||
| 325 | + ] [ rdf:type sp:Bind ; | ||
| 326 | + sp:expression | ||
| 327 | + [ rdf:type ep-spin-lib:selectPressureScale ; | ||
| 328 | + sp:arg1 _:b45 | ||
| 329 | + ] ; | ||
| 330 | + sp:variable _:b27 | ||
| 331 | + ] [ rdf:type sp:Bind ; | ||
| 332 | + sp:expression | ||
| 333 | + [ rdf:type ep-spin-lib:selectVolumeScale ; | ||
| 334 | + sp:arg1 _:b39 | ||
| 335 | + ] ; | ||
| 336 | + sp:variable _:b14 | ||
| 337 | + ] [ rdf:type sp:Bind ; | ||
| 338 | + sp:expression | ||
| 339 | + [ rdf:type ep-spin-lib:selectLengthScale ; | ||
| 340 | + sp:arg1 _:b36 | ||
| 341 | + ] ; | ||
| 342 | + sp:variable | ||
| 343 | + [ sp:varName "lengthScaleCasingStrDia"^^xsd:string | ||
| 344 | + ] | ||
| 345 | + ] [ rdf:type sp:Bind ; | ||
| 346 | + sp:expression | ||
| 347 | + [ rdf:type ep-spin-lib:normalizeDoubleName ; | ||
| 348 | + sp:arg1 _:b37 | ||
| 349 | + ] ; | ||
| 350 | + sp:variable _:b20 | ||
| 351 | + ] [ rdf:type sp:Bind ; | ||
| 352 | + sp:expression | ||
| 353 | + [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ; | ||
| 354 | + sp:arg1 _:b20 | ||
| 355 | + ] ; | ||
| 356 | + sp:variable _:b19 | ||
| 357 | + ] [ rdf:type sp:Bind ; | ||
| 358 | + sp:expression | ||
| 359 | + [ rdf:type rhspin:wellBoreByName ; | ||
| 360 | + arg:wellBoreName | ||
| 361 | + [ rdf:type xsd:string ; | ||
| 362 | + sp:arg1 _:b31 | ||
| 363 | + ] | ||
| 364 | + ] ; | ||
| 365 | + sp:variable _:b5 | ||
| 366 | + ]) | ||
| 367 | + ] ; | ||
| 368 | + spin:rule | ||
| 369 | + [ rdf:type sp:Construct ; | ||
| 28 | rdfs:comment "STEP 291 Process cementingFluid"^^xsd:string ; | 370 | rdfs:comment "STEP 291 Process cementingFluid"^^xsd:string ; |
| 29 | - sp:templates ([ sp:object _:b1 ; | 371 | + sp:templates ([ sp:object _:b51 ; |
| 30 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 372 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 31 | sp:subject | 373 | sp:subject |
| 32 | [ sp:varName "pumpedFluid"^^xsd:string | 374 | [ sp:varName "pumpedFluid"^^xsd:string |
| 33 | ] | 375 | ] |
| 34 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#CementingFluid> ; | 376 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#CementingFluid> ; |
| 35 | sp:predicate rdf:type ; | 377 | sp:predicate rdf:type ; |
| 36 | - sp:subject _:b1 | 378 | + sp:subject _:b51 |
| 37 | - ] [ sp:object _:b2 ; | 379 | + ] [ sp:object _:b52 ; |
| 38 | sp:predicate rdf:type ; | 380 | sp:predicate rdf:type ; |
| 39 | - sp:subject _:b1 | 381 | + sp:subject _:b51 |
| 40 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; | 382 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; |
| 41 | sp:predicate rdf:type ; | 383 | sp:predicate rdf:type ; |
| 42 | - sp:subject _:b2 | 384 | + sp:subject _:b52 |
| 43 | ] [ sp:object | 385 | ] [ sp:object |
| 44 | [ sp:varName "realVolPumped"^^xsd:string | 386 | [ sp:varName "realVolPumped"^^xsd:string |
| 45 | ] ; | 387 | ] ; |
| 46 | sp:predicate | 388 | sp:predicate |
| 47 | [ sp:varName "volumeScalePumped"^^xsd:string | 389 | [ sp:varName "volumeScalePumped"^^xsd:string |
| 48 | ] ; | 390 | ] ; |
| 49 | - sp:subject _:b2 | 391 | + sp:subject _:b52 |
| 50 | ] [ sp:object | 392 | ] [ sp:object |
| 51 | [ sp:varName "cementingFluidType"^^xsd:string | 393 | [ sp:varName "cementingFluidType"^^xsd:string |
| 52 | ] ; | 394 | ] ; |
| 53 | sp:predicate rdf:type ; | 395 | sp:predicate rdf:type ; |
| 54 | - sp:subject _:b1 | 396 | + sp:subject _:b51 |
| 55 | - ] [ sp:object _:b3 ; | 397 | + ] [ sp:object _:b53 ; |
| 56 | sp:predicate rdf:type ; | 398 | sp:predicate rdf:type ; |
| 57 | - sp:subject _:b1 | 399 | + sp:subject _:b51 |
| 58 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#UserDescribedCementingFluidType> ; | 400 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#UserDescribedCementingFluidType> ; |
| 59 | sp:predicate rdf:type ; | 401 | sp:predicate rdf:type ; |
| 60 | - sp:subject _:b3 | 402 | + sp:subject _:b53 |
| 61 | ] [ sp:object | 403 | ] [ sp:object |
| 62 | [ sp:varName "cementingFluidDescription"^^xsd:string | 404 | [ sp:varName "cementingFluidDescription"^^xsd:string |
| 63 | ] ; | 405 | ] ; |
| 64 | sp:predicate rdfs:comment ; | 406 | sp:predicate rdfs:comment ; |
| 65 | - sp:subject _:b3 | 407 | + sp:subject _:b53 |
| 66 | - ] [ sp:object _:b4 ; | 408 | + ] [ sp:object _:b54 ; |
| 67 | sp:predicate <http://www.reportinghub.no/ep/schema/well#ratioOfCementMixToWater> ; | 409 | sp:predicate <http://www.reportinghub.no/ep/schema/well#ratioOfCementMixToWater> ; |
| 68 | - sp:subject _:b1 | 410 | + sp:subject _:b51 |
| 69 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#SpecificVolume> ; | 411 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#SpecificVolume> ; |
| 70 | sp:predicate rdf:type ; | 412 | sp:predicate rdf:type ; |
| 71 | - sp:subject _:b4 | 413 | + sp:subject _:b54 |
| 72 | ] [ sp:object | 414 | ] [ sp:object |
| 73 | [ sp:varName "realRatioMixWater"^^xsd:string | 415 | [ sp:varName "realRatioMixWater"^^xsd:string |
| 74 | ] ; | 416 | ] ; |
| 75 | sp:predicate | 417 | sp:predicate |
| 76 | [ sp:varName "ratioScaleMixWater"^^xsd:string | 418 | [ sp:varName "ratioScaleMixWater"^^xsd:string |
| 77 | ] ; | 419 | ] ; |
| 78 | - sp:subject _:b4 | 420 | + sp:subject _:b54 |
| 79 | - ] [ sp:object _:b5 ; | 421 | + ] [ sp:object _:b55 ; |
| 80 | sp:predicate rdf:type ; | 422 | sp:predicate rdf:type ; |
| 81 | - sp:subject _:b1 | 423 | + sp:subject _:b51 |
| 82 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; | 424 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; |
| 83 | sp:predicate rdf:type ; | 425 | sp:predicate rdf:type ; |
| 84 | - sp:subject _:b5 | 426 | + sp:subject _:b55 |
| 85 | ] [ sp:object | 427 | ] [ sp:object |
| 86 | [ sp:varName "realDensity"^^xsd:string | 428 | [ sp:varName "realDensity"^^xsd:string |
| 87 | ] ; | 429 | ] ; |
| 88 | sp:predicate | 430 | sp:predicate |
| 89 | [ sp:varName "densityScale"^^xsd:string | 431 | [ sp:varName "densityScale"^^xsd:string |
| 90 | ] ; | 432 | ] ; |
| 91 | - sp:subject _:b5 | 433 | + sp:subject _:b55 |
| 92 | - ] [ sp:object _:b6 ; | 434 | + ] [ sp:object _:b56 ; |
| 93 | sp:predicate rdf:type ; | 435 | sp:predicate rdf:type ; |
| 94 | - sp:subject _:b1 | 436 | + sp:subject _:b51 |
| 95 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#YieldPoint> ; | 437 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#YieldPoint> ; |
| 96 | sp:predicate rdf:type ; | 438 | sp:predicate rdf:type ; |
| 97 | - sp:subject _:b6 | 439 | + sp:subject _:b56 |
| 98 | ] [ sp:object | 440 | ] [ sp:object |
| 99 | [ sp:varName "realYp"^^xsd:string | 441 | [ sp:varName "realYp"^^xsd:string |
| 100 | ] ; | 442 | ] ; |
| 101 | sp:predicate | 443 | sp:predicate |
| 102 | [ sp:varName "yieldPointScale"^^xsd:string | 444 | [ sp:varName "yieldPointScale"^^xsd:string |
| 103 | ] ; | 445 | ] ; |
| 104 | - sp:subject _:b6 | 446 | + sp:subject _:b56 |
| 105 | - ] [ sp:object _:b7 ; | 447 | + ] [ sp:object _:b57 ; |
| 106 | sp:predicate <http://www.reportinghub.no/ep/schema/well#cementingFluidThickeningTime> ; | 448 | sp:predicate <http://www.reportinghub.no/ep/schema/well#cementingFluidThickeningTime> ; |
| 107 | - sp:subject _:b1 | 449 | + sp:subject _:b51 |
| 108 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; | 450 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#TimeDuration> ; |
| 109 | sp:predicate rdf:type ; | 451 | sp:predicate rdf:type ; |
| 110 | - sp:subject _:b7 | 452 | + sp:subject _:b57 |
| 111 | ] [ sp:object | 453 | ] [ sp:object |
| 112 | [ sp:varName "realETim"^^xsd:string | 454 | [ sp:varName "realETim"^^xsd:string |
| 113 | ] ; | 455 | ] ; |
| 114 | sp:predicate | 456 | sp:predicate |
| 115 | [ sp:varName "durationScaleETim"^^xsd:string | 457 | [ sp:varName "durationScaleETim"^^xsd:string |
| 116 | ] ; | 458 | ] ; |
| 117 | - sp:subject _:b7 | 459 | + sp:subject _:b57 |
| 118 | - ] [ sp:object _:b8 ; | 460 | + ] [ sp:object _:b58 ; |
| 119 | sp:predicate <http://www.reportinghub.no/ep/schema/well#cementingFluidPerCentFreeWater> ; | 461 | sp:predicate <http://www.reportinghub.no/ep/schema/well#cementingFluidPerCentFreeWater> ; |
| 120 | - sp:subject _:b1 | 462 | + sp:subject _:b51 |
| 121 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#SpecificVolume> ; | 463 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#SpecificVolume> ; |
| 122 | sp:predicate rdf:type ; | 464 | sp:predicate rdf:type ; |
| 123 | - sp:subject _:b8 | 465 | + sp:subject _:b58 |
| 124 | ] [ sp:object | 466 | ] [ sp:object |
| 125 | [ sp:varName "realPcFreeWater"^^xsd:string | 467 | [ sp:varName "realPcFreeWater"^^xsd:string |
| 126 | ] ; | 468 | ] ; |
| 127 | sp:predicate | 469 | sp:predicate |
| 128 | [ sp:varName "ratioScalePcFreeWater"^^xsd:string | 470 | [ sp:varName "ratioScalePcFreeWater"^^xsd:string |
| 129 | ] ; | 471 | ] ; |
| 130 | - sp:subject _:b8 | 472 | + sp:subject _:b58 |
| 131 | ] [ sp:object | 473 | ] [ sp:object |
| 132 | [ sp:varName "cementingFluidComments"^^xsd:string | 474 | [ sp:varName "cementingFluidComments"^^xsd:string |
| 133 | ] ; | 475 | ] ; |
| 134 | sp:predicate rdfs:comment ; | 476 | sp:predicate rdfs:comment ; |
| 135 | - sp:subject _:b1 | 477 | + sp:subject _:b51 |
| 136 | ]) ; | 478 | ]) ; |
| 137 | sp:where ([ sp:object | 479 | sp:where ([ sp:object |
| 138 | [ sp:varName "nameWellBore"^^xsd:string | 480 | [ sp:varName "nameWellBore"^^xsd:string |
| ... | @@ -453,537 +795,121 @@ ddr:Obj_drillReport | ... | @@ -453,537 +795,121 @@ ddr:Obj_drillReport |
| 453 | [ sp:varName "ratioScaleMixWater"^^xsd:string | 795 | [ sp:varName "ratioScaleMixWater"^^xsd:string |
| 454 | ] | 796 | ] |
| 455 | ]) | 797 | ]) |
| 456 | - ] ; | ||
| 457 | - spin:rule | ||
| 458 | - [ rdf:type sp:Construct ; | ||
| 459 | - rdfs:comment "STEP 290 Process cementStage - create Well cement job"^^xsd:string ; | ||
| 460 | - sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCementJob> ; | ||
| 461 | - sp:predicate rdf:type ; | ||
| 462 | - sp:subject | ||
| 463 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 464 | - ] | ||
| 465 | - ] [ sp:object | ||
| 466 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 467 | - ] ; | ||
| 468 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 469 | - sp:subject | ||
| 470 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | ||
| 471 | - ] | ||
| 472 | - ] [ sp:object _:b9 ; | ||
| 473 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | ||
| 474 | - sp:subject | ||
| 475 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 476 | - ] | ||
| 477 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; | ||
| 478 | - sp:predicate rdf:type ; | ||
| 479 | - sp:subject _:b9 | ||
| 480 | - ] [ sp:object _:b10 ; | ||
| 481 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | ||
| 482 | - sp:subject _:b9 | ||
| 483 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; | ||
| 484 | - sp:predicate rdf:type ; | ||
| 485 | - sp:subject _:b10 | ||
| 486 | - ] [ sp:object | ||
| 487 | - [ sp:varName "wellBore"^^xsd:string | ||
| 488 | - ] ; | ||
| 489 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; | ||
| 490 | - sp:subject _:b10 | ||
| 491 | - ] [ sp:object | ||
| 492 | - [ sp:varName "wellCementJobType"^^xsd:string | ||
| 493 | - ] ; | ||
| 494 | - sp:predicate rdf:type ; | ||
| 495 | - sp:subject | ||
| 496 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 497 | - ] | ||
| 498 | - ] [ sp:object | ||
| 499 | - [ sp:varName "wellCementJobTopPlugType"^^xsd:string | ||
| 500 | - ] ; | ||
| 501 | - sp:predicate rdf:type ; | ||
| 502 | - sp:subject | ||
| 503 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 504 | - ] | ||
| 505 | - ] [ sp:object | ||
| 506 | - [ sp:varName "wellCementJobBottomPlugType"^^xsd:string | ||
| 507 | - ] ; | ||
| 508 | - sp:predicate rdf:type ; | ||
| 509 | - sp:subject | ||
| 510 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 511 | - ] | ||
| 512 | - ] [ sp:object _:b11 ; | ||
| 513 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 514 | - sp:subject | ||
| 515 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 516 | - ] | ||
| 517 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCementPumping> ; | ||
| 518 | - sp:predicate rdf:type ; | ||
| 519 | - sp:subject _:b11 | ||
| 520 | - ] [ sp:object | ||
| 521 | - [ sp:varName "cementingFluidReturnType"^^xsd:string | ||
| 522 | - ] ; | ||
| 523 | - sp:predicate rdf:type ; | ||
| 524 | - sp:subject _:b11 | ||
| 525 | - ] [ sp:object _:b12 ; | ||
| 526 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#returnedCementingFluid> ; | ||
| 527 | - sp:subject _:b11 | ||
| 528 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#CementingFluid> ; | ||
| 529 | - sp:predicate rdf:type ; | ||
| 530 | - sp:subject _:b12 | ||
| 531 | - ] [ sp:object _:b13 ; | ||
| 532 | - sp:predicate rdf:type ; | ||
| 533 | - sp:subject _:b12 | ||
| 534 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; | ||
| 535 | - sp:predicate rdf:type ; | ||
| 536 | - sp:subject _:b13 | ||
| 537 | - ] [ sp:object | ||
| 538 | - [ sp:varName "realVolReturns"^^xsd:string | ||
| 539 | - ] ; | ||
| 540 | - sp:predicate | ||
| 541 | - [ sp:varName "volumeScaleReturns"^^xsd:string | ||
| 542 | - ] ; | ||
| 543 | - sp:subject _:b13 | ||
| 544 | - ] [ sp:object | ||
| 545 | - [ sp:varName "dTimPumpStart"^^xsd:string | ||
| 546 | - ] ; | ||
| 547 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ; | ||
| 548 | - sp:subject _:b11 | ||
| 549 | - ] [ sp:object | ||
| 550 | - [ sp:varName "dTimPumpEnd"^^xsd:string | ||
| 551 | - ] ; | ||
| 552 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ; | ||
| 553 | - sp:subject _:b11 | ||
| 554 | - ] [ sp:object _:b14 ; | ||
| 555 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#pumpedFluid> ; | ||
| 556 | - sp:subject _:b11 | ||
| 557 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#CementingFluid> ; | ||
| 558 | - sp:predicate rdf:type ; | ||
| 559 | - sp:subject _:b14 | ||
| 560 | - ] [ sp:object _:b15 ; | ||
| 561 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasSpatialPart> ; | ||
| 562 | - sp:subject _:b10 | ||
| 563 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingString> ; | ||
| 564 | - sp:predicate rdf:type ; | ||
| 565 | - sp:subject _:b15 | ||
| 566 | - ] [ sp:object _:b16 ; | ||
| 567 | - sp:predicate <http://www.reportinghub.no/ep/schema/equipment#outsideDiameterOfATubular> ; | ||
| 568 | - sp:subject _:b15 | ||
| 569 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | ||
| 570 | - sp:predicate rdf:type ; | ||
| 571 | - sp:subject _:b16 | ||
| 572 | - ] [ sp:object | ||
| 573 | - [ sp:varName "realCasingStrDia"^^xsd:string | ||
| 574 | - ] ; | ||
| 575 | - sp:predicate | ||
| 576 | - [ sp:varName "lengthScaleCasingStrDia"^^xsd:string | ||
| 577 | - ] ; | ||
| 578 | - sp:subject _:b16 | ||
| 579 | - ] [ sp:object | ||
| 580 | - [ sp:varName "cementStageComments"^^xsd:string | ||
| 581 | - ] ; | ||
| 582 | - sp:predicate rdfs:comment ; | ||
| 583 | - sp:subject | ||
| 584 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 585 | - ] | ||
| 586 | - ] [ sp:object | ||
| 587 | - [ sp:varName "wellCementJobCasingRotationType"^^xsd:string | ||
| 588 | - ] ; | ||
| 589 | - sp:predicate rdf:type ; | ||
| 590 | - sp:subject | ||
| 591 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 592 | - ] | ||
| 593 | - ] [ sp:object | ||
| 594 | - [ sp:varName "wellCementJobCasingReciprocationType"^^xsd:string | ||
| 595 | - ] ; | ||
| 596 | - sp:predicate rdf:type ; | ||
| 597 | - sp:subject | ||
| 598 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 599 | - ] | ||
| 600 | - ] [ sp:object | ||
| 601 | - [ sp:varName "wellCementJobPlugBumpingType"^^xsd:string | ||
| 602 | - ] ; | ||
| 603 | - sp:predicate rdf:type ; | ||
| 604 | - sp:subject | ||
| 605 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 606 | - ] | ||
| 607 | - ] [ sp:object _:b17 ; | ||
| 608 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#pressureAtWhichPlugBumped> ; | ||
| 609 | - sp:subject | ||
| 610 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 611 | - ] | ||
| 612 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; | ||
| 613 | - sp:predicate rdf:type ; | ||
| 614 | - sp:subject _:b17 | ||
| 615 | - ] [ sp:object | ||
| 616 | - [ sp:varName "realPresBump"^^xsd:string | ||
| 617 | - ] ; | ||
| 618 | - sp:predicate | ||
| 619 | - [ sp:varName "pressureScaleBump"^^xsd:string | ||
| 620 | - ] ; | ||
| 621 | - sp:subject _:b17 | ||
| 622 | - ] [ sp:object | ||
| 623 | - [ sp:varName "wellCementJobFloatHoldingType"^^xsd:string | ||
| 624 | - ] ; | ||
| 625 | - sp:predicate rdf:type ; | ||
| 626 | - sp:subject | ||
| 627 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 628 | - ] | ||
| 629 | - ] [ sp:object _:b18 ; | ||
| 630 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 631 | - sp:subject | ||
| 632 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 633 | - ] | ||
| 634 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/activity#WellCementJobPressureRelease> ; | ||
| 635 | - sp:predicate rdf:type ; | ||
| 636 | - sp:subject _:b18 | ||
| 637 | - ] [ sp:object | ||
| 638 | - [ sp:varName "dTimPresReleased"^^xsd:string | ||
| 639 | - ] ; | ||
| 640 | - sp:predicate <http://www.reportinghub.no/ep/schema/activity#nominallyAt> ; | ||
| 641 | - sp:subject _:b18 | ||
| 642 | - ]) ; | ||
| 643 | - sp:where ([ sp:object | ||
| 644 | - [ sp:varName "nameWellBore"^^xsd:string | ||
| 645 | - ] ; | ||
| 646 | - sp:predicate ep-spin-lib:nameWellbore ; | ||
| 647 | - sp:subject spin:_this | ||
| 648 | - ] [ sp:object | ||
| 649 | - [ sp:varName "dTimStart"^^xsd:string | ||
| 650 | - ] ; | ||
| 651 | - sp:predicate ddr:dTimStart ; | ||
| 652 | - sp:subject spin:_this | ||
| 653 | - ] [ sp:object | ||
| 654 | - [ sp:varName "cementStage"^^xsd:string | ||
| 655 | - ] ; | ||
| 656 | - sp:predicate ddr:cementStageRef ; | ||
| 657 | - sp:subject spin:_this | ||
| 658 | - ] [ rdf:type sp:Optional ; | ||
| 659 | - sp:elements ([ sp:object | ||
| 660 | - [ sp:varName "dTimPumpStart"^^xsd:string | ||
| 661 | - ] ; | ||
| 662 | - sp:predicate ddr:dTimPumpStart ; | ||
| 663 | - sp:subject | ||
| 664 | - [ sp:varName "cementStage"^^xsd:string | ||
| 665 | - ] | ||
| 666 | - ]) | ||
| 667 | - ] [ rdf:type sp:Optional ; | ||
| 668 | - sp:elements ([ sp:object | ||
| 669 | - [ sp:varName "dTimPumpEnd"^^xsd:string | ||
| 670 | - ] ; | ||
| 671 | - sp:predicate ddr:dTimPumpEnd ; | ||
| 672 | - sp:subject | ||
| 673 | - [ sp:varName "cementStage"^^xsd:string | ||
| 674 | - ] | ||
| 675 | - ]) | ||
| 676 | - ] [ rdf:type sp:Optional ; | ||
| 677 | - sp:elements ([ sp:object | ||
| 678 | - [ sp:varName "enumJobType"^^xsd:string | ||
| 679 | - ] ; | ||
| 680 | - sp:predicate ddr:jobTypeRef ; | ||
| 681 | - sp:subject | ||
| 682 | - [ sp:varName "cementStage"^^xsd:string | ||
| 683 | - ] | ||
| 684 | - ]) | ||
| 685 | - ] [ rdf:type sp:Optional ; | ||
| 686 | - sp:elements ([ sp:object | ||
| 687 | - [ sp:varName "casingStrDia"^^xsd:string | ||
| 688 | - ] ; | ||
| 689 | - sp:predicate ddr:casingStrDiaRef ; | ||
| 690 | - sp:subject | ||
| 691 | - [ sp:varName "cementStage"^^xsd:string | ||
| 692 | - ] | ||
| 693 | - ] [ sp:object | ||
| 694 | - [ sp:varName "uomCasingStrDia"^^xsd:string | ||
| 695 | - ] ; | ||
| 696 | - sp:predicate ddr:uomRef ; | ||
| 697 | - sp:subject | ||
| 698 | - [ sp:varName "casingStrDia"^^xsd:string | ||
| 699 | - ] | ||
| 700 | - ] [ sp:object | ||
| 701 | - [ sp:varName "realCasingStrDia"^^xsd:string | ||
| 702 | - ] ; | ||
| 703 | - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | ||
| 704 | - sp:subject | ||
| 705 | - [ sp:varName "casingStrDia"^^xsd:string | ||
| 706 | - ] | ||
| 707 | - ]) | ||
| 708 | - ] [ rdf:type sp:Optional ; | ||
| 709 | - sp:elements ([ sp:object | ||
| 710 | - [ sp:varName "cementStageComments"^^xsd:string | ||
| 711 | - ] ; | ||
| 712 | - sp:predicate ddr:comments ; | ||
| 713 | - sp:subject | ||
| 714 | - [ sp:varName "cementStage"^^xsd:string | ||
| 715 | - ] | ||
| 716 | - ]) | ||
| 717 | - ] [ rdf:type sp:Optional ; | ||
| 718 | - sp:elements ([ sp:object | ||
| 719 | - [ sp:varName "volReturns"^^xsd:string | ||
| 720 | - ] ; | ||
| 721 | - sp:predicate ddr:volReturnsRef ; | ||
| 722 | - sp:subject | ||
| 723 | - [ sp:varName "cementStage"^^xsd:string | ||
| 724 | - ] | ||
| 725 | - ] [ sp:object | ||
| 726 | - [ sp:varName "uomVolReturns"^^xsd:string | ||
| 727 | - ] ; | ||
| 728 | - sp:predicate ddr:uomRef ; | ||
| 729 | - sp:subject | ||
| 730 | - [ sp:varName "volReturns"^^xsd:string | ||
| 731 | - ] | ||
| 732 | - ] [ sp:object | ||
| 733 | - [ sp:varName "realVolReturns"^^xsd:string | ||
| 734 | - ] ; | ||
| 735 | - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | ||
| 736 | - sp:subject | ||
| 737 | - [ sp:varName "volReturns"^^xsd:string | ||
| 738 | - ] | ||
| 739 | - ]) | ||
| 740 | - ] [ rdf:type sp:Optional ; | ||
| 741 | - sp:elements ([ sp:object | ||
| 742 | - [ sp:varName "dTimPresReleased"^^xsd:string | ||
| 743 | - ] ; | ||
| 744 | - sp:predicate ddr:dTimPresReleased ; | ||
| 745 | - sp:subject | ||
| 746 | - [ sp:varName "cementStage"^^xsd:string | ||
| 747 | - ] | ||
| 748 | - ]) | ||
| 749 | - ] [ rdf:type sp:Optional ; | ||
| 750 | - sp:elements ([ sp:object | ||
| 751 | - [ sp:varName "annFlowAfter"^^xsd:string | ||
| 752 | - ] ; | ||
| 753 | - sp:predicate ddr:annFlowAfter ; | ||
| 754 | - sp:subject | ||
| 755 | - [ sp:varName "cementStage"^^xsd:string | ||
| 756 | - ] | ||
| 757 | - ]) | ||
| 758 | - ] [ rdf:type sp:Optional ; | ||
| 759 | - sp:elements ([ sp:object | ||
| 760 | - [ sp:varName "topPlug"^^xsd:string | ||
| 761 | - ] ; | ||
| 762 | - sp:predicate ddr:topPlug ; | ||
| 763 | - sp:subject | ||
| 764 | - [ sp:varName "cementStage"^^xsd:string | ||
| 765 | - ] | ||
| 766 | - ]) | ||
| 767 | - ] [ rdf:type sp:Optional ; | ||
| 768 | - sp:elements ([ sp:object | ||
| 769 | - [ sp:varName "botPlug"^^xsd:string | ||
| 770 | - ] ; | ||
| 771 | - sp:predicate ddr:botPlug ; | ||
| 772 | - sp:subject | ||
| 773 | - [ sp:varName "cementStage"^^xsd:string | ||
| 774 | - ] | ||
| 775 | - ]) | ||
| 776 | - ] [ rdf:type sp:Optional ; | ||
| 777 | - sp:elements ([ sp:object | ||
| 778 | - [ sp:varName "plugBumped"^^xsd:string | ||
| 779 | - ] ; | ||
| 780 | - sp:predicate ddr:plugBumped ; | ||
| 781 | - sp:subject | ||
| 782 | - [ sp:varName "cementStage"^^xsd:string | ||
| 783 | - ] | ||
| 784 | - ]) | ||
| 785 | - ] [ rdf:type sp:Optional ; | ||
| 786 | - sp:elements ([ sp:object | ||
| 787 | - [ sp:varName "presBump"^^xsd:string | ||
| 788 | - ] ; | ||
| 789 | - sp:predicate ddr:presBumpRef ; | ||
| 790 | - sp:subject | ||
| 791 | - [ sp:varName "cementStage"^^xsd:string | ||
| 792 | - ] | ||
| 793 | - ] [ sp:object | ||
| 794 | - [ sp:varName "uomPresBump"^^xsd:string | ||
| 795 | - ] ; | ||
| 796 | - sp:predicate ddr:uomRef ; | ||
| 797 | - sp:subject | ||
| 798 | - [ sp:varName "presBump"^^xsd:string | ||
| 799 | - ] | ||
| 800 | - ] [ sp:object | ||
| 801 | - [ sp:varName "realPresBump"^^xsd:string | ||
| 802 | - ] ; | ||
| 803 | - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | ||
| 804 | - sp:subject | ||
| 805 | - [ sp:varName "presBump"^^xsd:string | ||
| 806 | - ] | ||
| 807 | - ]) | ||
| 808 | - ] [ rdf:type sp:Optional ; | ||
| 809 | - sp:elements ([ sp:object | ||
| 810 | - [ sp:varName "floatHeld"^^xsd:string | ||
| 811 | - ] ; | ||
| 812 | - sp:predicate ddr:floatHeld ; | ||
| 813 | - sp:subject | ||
| 814 | - [ sp:varName "cementStage"^^xsd:string | ||
| 815 | - ] | ||
| 816 | - ]) | ||
| 817 | - ] [ rdf:type sp:Optional ; | ||
| 818 | - sp:elements ([ sp:object | ||
| 819 | - [ sp:varName "reciprocated"^^xsd:string | ||
| 820 | - ] ; | ||
| 821 | - sp:predicate ddr:reciprocated ; | ||
| 822 | - sp:subject | ||
| 823 | - [ sp:varName "cementStage"^^xsd:string | ||
| 824 | - ] | ||
| 825 | - ]) | ||
| 826 | - ] [ rdf:type sp:Optional ; | ||
| 827 | - sp:elements ([ sp:object | ||
| 828 | - [ sp:varName "rotated"^^xsd:string | ||
| 829 | - ] ; | ||
| 830 | - sp:predicate ddr:rotated ; | ||
| 831 | - sp:subject | ||
| 832 | - [ sp:varName "cementStage"^^xsd:string | ||
| 833 | - ] | ||
| 834 | - ]) | ||
| 835 | - ] [ rdf:type sp:Bind ; | ||
| 836 | - sp:expression | ||
| 837 | - [ rdf:type ep-spin-lib:normalizeString ; | ||
| 838 | - sp:arg1 [ sp:varName "nameWellBore"^^xsd:string | ||
| 839 | - ] | ||
| 840 | - ] ; | ||
| 841 | - sp:variable | ||
| 842 | - [ sp:varName "normalizedWellBoreName"^^xsd:string | ||
| 843 | - ] | ||
| 844 | - ] [ rdf:type sp:Bind ; | ||
| 845 | - sp:expression | ||
| 846 | - [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; | ||
| 847 | - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string | ||
| 848 | - ] ; | ||
| 849 | - sp:arg2 [ sp:varName "dTimStart"^^xsd:string | ||
| 850 | - ] | ||
| 851 | - ] ; | ||
| 852 | - sp:variable | ||
| 853 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | ||
| 854 | - ] | ||
| 855 | - ] [ rdf:type sp:Bind ; | ||
| 856 | - sp:expression | ||
| 857 | - [ rdf:type afn:localname ; | ||
| 858 | - sp:arg1 [ sp:varName "cementStage"^^xsd:string | ||
| 859 | - ] | ||
| 860 | - ] ; | ||
| 861 | - sp:variable | ||
| 862 | - [ sp:varName "localname"^^xsd:string | ||
| 863 | - ] | ||
| 864 | - ] [ rdf:type sp:Bind ; | ||
| 865 | - sp:expression | ||
| 866 | - [ rdf:type ep-spin-lib:buildWellCementJobURI ; | ||
| 867 | - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string | ||
| 868 | - ] ; | ||
| 869 | - sp:arg2 [ sp:varName "dTimStart"^^xsd:string | ||
| 870 | - ] ; | ||
| 871 | - sp:arg3 [ sp:varName "localname"^^xsd:string | ||
| 872 | - ] | ||
| 873 | - ] ; | ||
| 874 | - sp:variable | ||
| 875 | - [ sp:varName "wellCementJob"^^xsd:string | ||
| 876 | - ] | ||
| 877 | - ] [ rdf:type sp:Bind ; | ||
| 878 | - sp:expression | ||
| 879 | - [ rdf:type ep-spin-lib:selectWellCementJobType ; | ||
| 880 | - sp:arg1 [ sp:varName "enumJobType"^^xsd:string | ||
| 881 | - ] | ||
| 882 | - ] ; | ||
| 883 | - sp:variable | ||
| 884 | - [ sp:varName "wellCementJobType"^^xsd:string | ||
| 885 | - ] | ||
| 886 | - ] [ rdf:type sp:Bind ; | ||
| 887 | - sp:expression | ||
| 888 | - [ rdf:type ep-spin-lib:selectCementingFluidReturnType ; | ||
| 889 | - sp:arg1 [ sp:varName "annFlowAfter"^^xsd:string | ||
| 890 | - ] | ||
| 891 | - ] ; | ||
| 892 | - sp:variable | ||
| 893 | - [ sp:varName "cementingFluidReturnType"^^xsd:string | ||
| 894 | - ] | ||
| 895 | - ] [ rdf:type sp:Bind ; | ||
| 896 | - sp:expression | ||
| 897 | - [ rdf:type ep-spin-lib:selectWellCementJobTopPlugType ; | ||
| 898 | - sp:arg1 [ sp:varName "topPlug"^^xsd:string | ||
| 899 | - ] | ||
| 900 | - ] ; | ||
| 901 | - sp:variable | ||
| 902 | - [ sp:varName "wellCementJobTopPlugType"^^xsd:string | ||
| 903 | - ] | ||
| 904 | - ] [ rdf:type sp:Bind ; | ||
| 905 | - sp:expression | ||
| 906 | - [ rdf:type ep-spin-lib:selectWellCementJobBottomPlugType ; | ||
| 907 | - sp:arg1 [ sp:varName "botPlug"^^xsd:string | ||
| 908 | - ] | ||
| 909 | - ] ; | ||
| 910 | - sp:variable | ||
| 911 | - [ sp:varName "wellCementJobBottomPlugType"^^xsd:string | ||
| 912 | - ] | ||
| 913 | - ] [ rdf:type sp:Bind ; | ||
| 914 | - sp:expression | ||
| 915 | - [ rdf:type ep-spin-lib:selectWellCementJobCasingRotationType ; | ||
| 916 | - sp:arg1 [ sp:varName "rotated"^^xsd:string | ||
| 917 | - ] | ||
| 918 | - ] ; | ||
| 919 | - sp:variable | ||
| 920 | - [ sp:varName "wellCementJobCasingRotationType"^^xsd:string | ||
| 921 | - ] | ||
| 922 | - ] [ rdf:type sp:Bind ; | ||
| 923 | - sp:expression | ||
| 924 | - [ rdf:type ep-spin-lib:selectWellCementJobCasingReciprocationType ; | ||
| 925 | - sp:arg1 [ sp:varName "reciprocated"^^xsd:string | ||
| 926 | - ] | ||
| 927 | - ] ; | ||
| 928 | - sp:variable | ||
| 929 | - [ sp:varName "wellCementJobCasingReciprocationType"^^xsd:string | ||
| 930 | - ] | ||
| 931 | - ] [ rdf:type sp:Bind ; | ||
| 932 | - sp:expression | ||
| 933 | - [ rdf:type ep-spin-lib:selectWellCementJobPlugBumpingType ; | ||
| 934 | - sp:arg1 [ sp:varName "plugBumped"^^xsd:string | ||
| 935 | - ] | ||
| 936 | - ] ; | ||
| 937 | - sp:variable | ||
| 938 | - [ sp:varName "wellCementJobPlugBumpingType"^^xsd:string | ||
| 939 | - ] | ||
| 940 | - ] [ rdf:type sp:Bind ; | ||
| 941 | - sp:expression | ||
| 942 | - [ rdf:type ep-spin-lib:selectWellCementJobFloatHoldingType ; | ||
| 943 | - sp:arg1 [ sp:varName "floatHeld"^^xsd:string | ||
| 944 | - ] | ||
| 945 | - ] ; | ||
| 946 | - sp:variable | ||
| 947 | - [ sp:varName "wellCementJobFloatHoldingType"^^xsd:string | ||
| 948 | - ] | ||
| 949 | - ] [ rdf:type sp:Bind ; | ||
| 950 | - sp:expression | ||
| 951 | - [ rdf:type ep-spin-lib:selectPressureScale ; | ||
| 952 | - sp:arg1 [ sp:varName "uomPresBump"^^xsd:string | ||
| 953 | - ] | ||
| 954 | - ] ; | ||
| 955 | - sp:variable | ||
| 956 | - [ sp:varName "pressureScaleBump"^^xsd:string | ||
| 957 | - ] | ||
| 958 | - ] [ rdf:type sp:Bind ; | ||
| 959 | - sp:expression | ||
| 960 | - [ rdf:type ep-spin-lib:selectVolumeScale ; | ||
| 961 | - sp:arg1 [ sp:varName "uomVolReturns"^^xsd:string | ||
| 962 | - ] | ||
| 963 | - ] ; | ||
| 964 | - sp:variable | ||
| 965 | - [ sp:varName "volumeScaleReturns"^^xsd:string | ||
| 966 | - ] | ||
| 967 | - ] [ rdf:type sp:Bind ; | ||
| 968 | - sp:expression | ||
| 969 | - [ rdf:type ep-spin-lib:selectLengthScale ; | ||
| 970 | - sp:arg1 [ sp:varName "uomCasingStrDia"^^xsd:string | ||
| 971 | - ] | ||
| 972 | - ] ; | ||
| 973 | - sp:variable | ||
| 974 | - [ sp:varName "lengthScaleCasingStrDia"^^xsd:string | ||
| 975 | - ] | ||
| 976 | - ] [ rdf:type sp:Bind ; | ||
| 977 | - sp:expression | ||
| 978 | - [ rdf:type rhspin:wellBoreByName ; | ||
| 979 | - arg:wellBoreName | ||
| 980 | - [ rdf:type xsd:string ; | ||
| 981 | - sp:arg1 [ sp:varName "nameWellBore"^^xsd:string | ||
| 982 | - ] | ||
| 983 | - ] | ||
| 984 | - ] ; | ||
| 985 | - sp:variable | ||
| 986 | - [ sp:varName "wellBore"^^xsd:string | ||
| 987 | - ] | ||
| 988 | - ]) | ||
| 989 | ] . | 798 | ] . |
| 799 | + | ||
| 800 | +_:b31 | ||
| 801 | + sp:varName "nameWellBore"^^xsd:string . | ||
| 802 | + | ||
| 803 | +_:b32 | ||
| 804 | + sp:varName "dTimStart"^^xsd:string . | ||
| 805 | + | ||
| 806 | +_:b33 | ||
| 807 | + sp:varName "cementStage"^^xsd:string . | ||
| 808 | + | ||
| 809 | +_:b15 | ||
| 810 | + sp:varName "dTimPumpStart"^^xsd:string . | ||
| 811 | + | ||
| 812 | +_:b16 | ||
| 813 | + sp:varName "dTimPumpEnd"^^xsd:string . | ||
| 814 | + | ||
| 815 | +_:b34 | ||
| 816 | + sp:varName "enumJobType"^^xsd:string . | ||
| 817 | + | ||
| 818 | +_:b35 | ||
| 819 | + sp:varName "casingStrDia"^^xsd:string . | ||
| 820 | + | ||
| 821 | +_:b36 | ||
| 822 | + sp:varName "uomCasingStrDia"^^xsd:string . | ||
| 823 | + | ||
| 824 | +_:b37 | ||
| 825 | + sp:varName "realOd"^^xsd:string . | ||
| 826 | + | ||
| 827 | +_:b21 | ||
| 828 | + sp:varName "cementStageComments"^^xsd:string . | ||
| 829 | + | ||
| 830 | +_:b38 | ||
| 831 | + sp:varName "volReturns"^^xsd:string . | ||
| 832 | + | ||
| 833 | +_:b39 | ||
| 834 | + sp:varName "uomVolReturns"^^xsd:string . | ||
| 835 | + | ||
| 836 | +_:b13 | ||
| 837 | + sp:varName "realVolReturns"^^xsd:string . | ||
| 838 | + | ||
| 839 | +_:b30 | ||
| 840 | + sp:varName "dTimPresReleased"^^xsd:string . | ||
| 841 | + | ||
| 842 | +_:b40 | ||
| 843 | + sp:varName "annFlowAfter"^^xsd:string . | ||
| 844 | + | ||
| 845 | +_:b41 | ||
| 846 | + sp:varName "topPlug"^^xsd:string . | ||
| 847 | + | ||
| 848 | +_:b42 | ||
| 849 | + sp:varName "botPlug"^^xsd:string . | ||
| 850 | + | ||
| 851 | +_:b43 | ||
| 852 | + sp:varName "plugBumped"^^xsd:string . | ||
| 853 | + | ||
| 854 | +_:b44 | ||
| 855 | + sp:varName "presBump"^^xsd:string . | ||
| 856 | + | ||
| 857 | +_:b45 | ||
| 858 | + sp:varName "uomPresBump"^^xsd:string . | ||
| 859 | + | ||
| 860 | +_:b26 | ||
| 861 | + sp:varName "realPresBump"^^xsd:string . | ||
| 862 | + | ||
| 863 | +_:b46 | ||
| 864 | + sp:varName "floatHeld"^^xsd:string . | ||
| 865 | + | ||
| 866 | +_:b47 | ||
| 867 | + sp:varName "reciprocated"^^xsd:string . | ||
| 868 | + | ||
| 869 | +_:b48 | ||
| 870 | + sp:varName "rotated"^^xsd:string . | ||
| 871 | + | ||
| 872 | +_:b49 | ||
| 873 | + sp:varName "normalizedWellBoreName"^^xsd:string . | ||
| 874 | + | ||
| 875 | +_:b2 sp:varName "dailyDrillingActivity"^^xsd:string . | ||
| 876 | + | ||
| 877 | +_:b50 | ||
| 878 | + sp:varName "localname"^^xsd:string . | ||
| 879 | + | ||
| 880 | +_:b1 sp:varName "wellCementJob"^^xsd:string . | ||
| 881 | + | ||
| 882 | +_:b6 sp:varName "wellCementJobType"^^xsd:string . | ||
| 883 | + | ||
| 884 | +_:b10 | ||
| 885 | + sp:varName "cementingFluidReturnType"^^xsd:string . | ||
| 886 | + | ||
| 887 | +_:b7 sp:varName "wellCementJobTopPlugType"^^xsd:string . | ||
| 888 | + | ||
| 889 | +_:b8 sp:varName "wellCementJobBottomPlugType"^^xsd:string . | ||
| 890 | + | ||
| 891 | +_:b22 | ||
| 892 | + sp:varName "wellCementJobCasingRotationType"^^xsd:string . | ||
| 893 | + | ||
| 894 | +_:b23 | ||
| 895 | + sp:varName "wellCementJobCasingReciprocationType"^^xsd:string . | ||
| 896 | + | ||
| 897 | +_:b24 | ||
| 898 | + sp:varName "wellCementJobPlugBumpingType"^^xsd:string . | ||
| 899 | + | ||
| 900 | +_:b28 | ||
| 901 | + sp:varName "wellCementJobFloatHoldingType"^^xsd:string . | ||
| 902 | + | ||
| 903 | +_:b27 | ||
| 904 | + sp:varName "pressureScaleBump"^^xsd:string . | ||
| 905 | + | ||
| 906 | +_:b14 | ||
| 907 | + sp:varName "volumeScaleReturns"^^xsd:string . | ||
| 908 | + | ||
| 909 | +_:b20 | ||
| 910 | + sp:varName "realOdName"^^xsd:string . | ||
| 911 | + | ||
| 912 | +_:b19 | ||
| 913 | + sp:varName "pipeOutsideDiameterAPI_5CTClass"^^xsd:string . | ||
| 914 | + | ||
| 915 | +_:b5 sp:varName "wellBore"^^xsd:string . | ... | ... |
| 1 | -# Saved by TopBraid on Fri Oct 28 20:21:48 BST 2011 | 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 | 2 | # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/controlIncidentInfo |
| 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 |
| ... | @@ -127,473 +127,510 @@ ddr:Obj_drillReport | ... | @@ -127,473 +127,510 @@ ddr:Obj_drillReport |
| 127 | sp:predicate rdf:type ; | 127 | sp:predicate rdf:type ; |
| 128 | sp:subject _:b24 | 128 | sp:subject _:b24 |
| 129 | ] [ sp:object _:b29 ; | 129 | ] [ sp:object _:b29 ; |
| 130 | - sp:predicate <http://www.reportinghub.no/ep/schema/equipment#diameterOfDrillBit> ; | 130 | + sp:predicate rdf:type ; |
| 131 | sp:subject _:b24 | 131 | sp:subject _:b24 |
| 132 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 132 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#DrillBit> ; |
| 133 | + sp:predicate rdfs:subClassOf ; | ||
| 134 | + sp:subject _:b29 | ||
| 135 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#ClassOfDrillBitBySize> ; | ||
| 133 | sp:predicate rdf:type ; | 136 | sp:predicate rdf:type ; |
| 134 | sp:subject _:b29 | 137 | sp:subject _:b29 |
| 135 | ] [ sp:object _:b30 ; | 138 | ] [ sp:object _:b30 ; |
| 136 | - sp:predicate _:b31 ; | 139 | + sp:predicate rdfs:label ; |
| 137 | sp:subject _:b29 | 140 | sp:subject _:b29 |
| 138 | - ] [ sp:object _:b32 ; | 141 | + ] [ sp:object _:b31 ; |
| 139 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 142 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 140 | sp:subject _:b1 | 143 | sp:subject _:b1 |
| 141 | - ] [ sp:object _:b33 ; | 144 | + ] [ sp:object _:b32 ; |
| 142 | sp:predicate rdf:type ; | 145 | sp:predicate rdf:type ; |
| 143 | - sp:subject _:b32 | 146 | + sp:subject _:b31 |
| 144 | - ] [ sp:object _:b34 ; | 147 | + ] [ sp:object _:b33 ; |
| 145 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#volumeOfMudGained> ; | 148 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#volumeOfMudGained> ; |
| 146 | sp:subject _:b1 | 149 | sp:subject _:b1 |
| 147 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; | 150 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; |
| 148 | sp:predicate rdf:type ; | 151 | sp:predicate rdf:type ; |
| 149 | - sp:subject _:b34 | 152 | + sp:subject _:b33 |
| 150 | - ] [ sp:object _:b35 ; | 153 | + ] [ sp:object _:b34 ; |
| 151 | - sp:predicate _:b36 ; | 154 | + sp:predicate _:b35 ; |
| 152 | - sp:subject _:b34 | 155 | + sp:subject _:b33 |
| 153 | - ] [ sp:object _:b37 ; | 156 | + ] [ sp:object _:b36 ; |
| 154 | sp:predicate rdfs:comment ; | 157 | sp:predicate rdfs:comment ; |
| 155 | sp:subject _:b1 | 158 | sp:subject _:b1 |
| 156 | - ] [ sp:object _:b38 ; | 159 | + ] [ sp:object _:b37 ; |
| 157 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | 160 | sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; |
| 158 | sp:subject _:b3 | 161 | sp:subject _:b3 |
| 159 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#LastCasingOfAWellBore> ; | 162 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#LastCasingOfAWellBore> ; |
| 160 | sp:predicate rdf:type ; | 163 | sp:predicate rdf:type ; |
| 161 | - sp:subject _:b38 | 164 | + sp:subject _:b37 |
| 165 | + ] [ sp:object _:b38 ; | ||
| 166 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | ||
| 167 | + sp:subject _:b37 | ||
| 162 | ] [ sp:object _:b39 ; | 168 | ] [ sp:object _:b39 ; |
| 163 | - sp:predicate <http://www.reportinghub.no/ep/schema/equipment#outsideDiameterOfATubular> ; | 169 | + sp:predicate rdf:type ; |
| 164 | - sp:subject _:b38 | ||
| 165 | - ] [ sp:object _:b40 ; | ||
| 166 | - sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepth> ; | ||
| 167 | sp:subject _:b38 | 170 | sp:subject _:b38 |
| 168 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 171 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#CasingLinerTubing> ; |
| 172 | + sp:predicate rdfs:subClassOf ; | ||
| 173 | + sp:subject _:b39 | ||
| 174 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#PipeOutsideDiameterAPI_5CTClass> ; | ||
| 169 | sp:predicate rdf:type ; | 175 | sp:predicate rdf:type ; |
| 170 | - sp:subject _:b40 | 176 | + sp:subject _:b39 |
| 177 | + ] [ sp:object _:b40 ; | ||
| 178 | + sp:predicate rdfs:label ; | ||
| 179 | + sp:subject _:b39 | ||
| 171 | ] [ sp:object _:b41 ; | 180 | ] [ sp:object _:b41 ; |
| 172 | - sp:predicate _:b42 ; | 181 | + sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; |
| 173 | - sp:subject _:b40 | 182 | + sp:subject _:b38 |
| 174 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 183 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 175 | sp:predicate rdf:type ; | 184 | sp:predicate rdf:type ; |
| 176 | - sp:subject _:b39 | 185 | + sp:subject _:b41 |
| 177 | - ] [ sp:object _:b43 ; | 186 | + ] [ sp:object _:b42 ; |
| 178 | - sp:predicate _:b44 ; | 187 | + sp:predicate _:b43 ; |
| 179 | - sp:subject _:b39 | 188 | + sp:subject _:b41 |
| 180 | - ] [ sp:object _:b45 ; | 189 | + ] [ sp:object _:b44 ; |
| 181 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth> ; | 190 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleMeasuredDepth> ; |
| 182 | sp:subject _:b3 | 191 | sp:subject _:b3 |
| 183 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 192 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 184 | sp:predicate rdf:type ; | 193 | sp:predicate rdf:type ; |
| 185 | - sp:subject _:b45 | 194 | + sp:subject _:b44 |
| 186 | - ] [ sp:object _:b46 ; | 195 | + ] [ sp:object _:b45 ; |
| 187 | - sp:predicate _:b47 ; | 196 | + sp:predicate _:b46 ; |
| 188 | - sp:subject _:b45 | 197 | + sp:subject _:b44 |
| 189 | - ] [ sp:object _:b48 ; | 198 | + ] [ sp:object _:b47 ; |
| 190 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleTemperature> ; | 199 | sp:predicate <http://www.reportinghub.no/ep/schema/well#bottomHoleTemperature> ; |
| 191 | sp:subject _:b3 | 200 | sp:subject _:b3 |
| 192 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Temperature> ; | 201 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Temperature> ; |
| 193 | sp:predicate rdf:type ; | 202 | sp:predicate rdf:type ; |
| 194 | - sp:subject _:b48 | 203 | + sp:subject _:b47 |
| 195 | - ] [ sp:object _:b49 ; | 204 | + ] [ sp:object _:b48 ; |
| 196 | - sp:predicate _:b50 ; | 205 | + sp:predicate _:b49 ; |
| 197 | - sp:subject _:b48 | 206 | + sp:subject _:b47 |
| 198 | - ] [ sp:object _:b51 ; | 207 | + ] [ sp:object _:b50 ; |
| 199 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasDrillingFluid> ; | 208 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#hasDrillingFluid> ; |
| 200 | sp:subject _:b3 | 209 | sp:subject _:b3 |
| 201 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; | 210 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#Fluid> ; |
| 202 | sp:predicate rdf:type ; | 211 | sp:predicate rdf:type ; |
| 203 | - sp:subject _:b51 | 212 | + sp:subject _:b50 |
| 204 | - ] [ sp:object _:b52 ; | 213 | + ] [ sp:object _:b51 ; |
| 205 | sp:predicate rdf:type ; | 214 | sp:predicate rdf:type ; |
| 206 | - sp:subject _:b51 | 215 | + sp:subject _:b50 |
| 207 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; | 216 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; |
| 208 | sp:predicate rdf:type ; | 217 | sp:predicate rdf:type ; |
| 209 | - sp:subject _:b52 | 218 | + sp:subject _:b51 |
| 210 | - ] [ sp:object _:b53 ; | 219 | + ] [ sp:object _:b52 ; |
| 211 | - sp:predicate _:b54 ; | 220 | + sp:predicate _:b53 ; |
| 212 | - sp:subject _:b52 | 221 | + sp:subject _:b51 |
| 213 | - ] [ sp:object _:b55 ; | 222 | + ] [ sp:object _:b54 ; |
| 214 | sp:predicate <http://www.reportinghub.no/ep/schema/well#porePressureEquivalentMudDensity> ; | 223 | sp:predicate <http://www.reportinghub.no/ep/schema/well#porePressureEquivalentMudDensity> ; |
| 215 | sp:subject _:b3 | 224 | sp:subject _:b3 |
| 216 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; | 225 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Density> ; |
| 217 | sp:predicate rdf:type ; | 226 | sp:predicate rdf:type ; |
| 218 | - sp:subject _:b55 | 227 | + sp:subject _:b54 |
| 219 | - ] [ sp:object _:b56 ; | 228 | + ] [ sp:object _:b55 ; |
| 220 | - sp:predicate _:b57 ; | 229 | + sp:predicate _:b56 ; |
| 221 | - sp:subject _:b55 | 230 | + sp:subject _:b54 |
| 222 | - ] [ sp:object _:b58 ; | 231 | + ] [ sp:object _:b57 ; |
| 223 | sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInCasingPressure> ; | 232 | sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInCasingPressure> ; |
| 224 | sp:subject _:b3 | 233 | sp:subject _:b3 |
| 225 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; | 234 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; |
| 226 | sp:predicate rdf:type ; | 235 | sp:predicate rdf:type ; |
| 227 | - sp:subject _:b58 | 236 | + sp:subject _:b57 |
| 228 | - ] [ sp:object _:b59 ; | 237 | + ] [ sp:object _:b58 ; |
| 229 | - sp:predicate _:b60 ; | 238 | + sp:predicate _:b59 ; |
| 230 | - sp:subject _:b58 | 239 | + sp:subject _:b57 |
| 231 | - ] [ sp:object _:b61 ; | 240 | + ] [ sp:object _:b60 ; |
| 232 | sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInDrillPipePressure> ; | 241 | sp:predicate <http://www.reportinghub.no/ep/schema/well#shutInDrillPipePressure> ; |
| 233 | sp:subject _:b3 | 242 | sp:subject _:b3 |
| 234 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; | 243 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Pressure> ; |
| 235 | sp:predicate rdf:type ; | 244 | sp:predicate rdf:type ; |
| 236 | - sp:subject _:b61 | 245 | + sp:subject _:b60 |
| 237 | - ] [ sp:object _:b62 ; | 246 | + ] [ sp:object _:b61 ; |
| 238 | - sp:predicate _:b63 ; | 247 | + sp:predicate _:b62 ; |
| 239 | - sp:subject _:b61 | 248 | + sp:subject _:b60 |
| 240 | ]) ; | 249 | ]) ; |
| 241 | - sp:where ([ sp:object _:b64 ; | 250 | + sp:where ([ sp:object _:b63 ; |
| 242 | sp:predicate ep-spin-lib:nameWellbore ; | 251 | sp:predicate ep-spin-lib:nameWellbore ; |
| 243 | sp:subject spin:_this | 252 | sp:subject spin:_this |
| 244 | - ] [ sp:object _:b65 ; | 253 | + ] [ sp:object _:b64 ; |
| 245 | sp:predicate ddr:dTimStart ; | 254 | sp:predicate ddr:dTimStart ; |
| 246 | sp:subject spin:_this | 255 | sp:subject spin:_this |
| 247 | ] [ sp:object _:b4 ; | 256 | ] [ sp:object _:b4 ; |
| 248 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; | 257 | sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ; |
| 249 | sp:subject _:b2 | 258 | sp:subject _:b2 |
| 250 | - ] [ sp:object _:b66 ; | 259 | + ] [ sp:object _:b65 ; |
| 251 | sp:predicate ddr:controlIncidentInfoRef ; | 260 | sp:predicate ddr:controlIncidentInfoRef ; |
| 252 | sp:subject spin:_this | 261 | sp:subject spin:_this |
| 253 | ] [ sp:object _:b5 ; | 262 | ] [ sp:object _:b5 ; |
| 254 | sp:predicate ddr:dTim ; | 263 | sp:predicate ddr:dTim ; |
| 255 | - sp:subject _:b66 | 264 | + sp:subject _:b65 |
| 256 | - ] [ sp:object _:b67 ; | 265 | + ] [ sp:object _:b66 ; |
| 257 | sp:predicate ddr:mdInflowRef ; | 266 | sp:predicate ddr:mdInflowRef ; |
| 258 | - sp:subject _:b66 | 267 | + sp:subject _:b65 |
| 259 | - ] [ sp:object _:b68 ; | 268 | + ] [ sp:object _:b67 ; |
| 260 | sp:predicate ddr:uomRef ; | 269 | sp:predicate ddr:uomRef ; |
| 261 | - sp:subject _:b67 | 270 | + sp:subject _:b66 |
| 262 | ] [ sp:object _:b12 ; | 271 | ] [ sp:object _:b12 ; |
| 263 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 272 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 264 | - sp:subject _:b67 | 273 | + sp:subject _:b66 |
| 265 | ] [ rdf:type sp:Optional ; | 274 | ] [ rdf:type sp:Optional ; |
| 266 | - sp:elements ([ sp:object _:b69 ; | 275 | + sp:elements ([ sp:object _:b68 ; |
| 267 | sp:predicate ddr:tvdInflowRef ; | 276 | sp:predicate ddr:tvdInflowRef ; |
| 268 | - sp:subject _:b66 | 277 | + sp:subject _:b65 |
| 269 | - ] [ sp:object _:b70 ; | 278 | + ] [ sp:object _:b69 ; |
| 270 | sp:predicate ddr:uomRef ; | 279 | sp:predicate ddr:uomRef ; |
| 271 | - sp:subject _:b69 | 280 | + sp:subject _:b68 |
| 272 | ] [ sp:object _:b15 ; | 281 | ] [ sp:object _:b15 ; |
| 273 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 282 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 274 | - sp:subject _:b69 | 283 | + sp:subject _:b68 |
| 275 | ]) | 284 | ]) |
| 276 | - ] [ sp:object _:b71 ; | 285 | + ] [ sp:object _:b70 ; |
| 277 | sp:predicate ddr:phaseRef ; | 286 | sp:predicate ddr:phaseRef ; |
| 278 | - sp:subject _:b66 | 287 | + sp:subject _:b65 |
| 279 | - ] [ sp:object _:b72 ; | 288 | + ] [ sp:object _:b71 ; |
| 280 | sp:predicate ddr:proprietaryCodeRef ; | 289 | sp:predicate ddr:proprietaryCodeRef ; |
| 281 | - sp:subject _:b66 | 290 | + sp:subject _:b65 |
| 282 | - ] [ sp:object _:b73 ; | 291 | + ] [ sp:object _:b72 ; |
| 283 | sp:predicate ddr:eTimLostRef ; | 292 | sp:predicate ddr:eTimLostRef ; |
| 284 | - sp:subject _:b66 | 293 | + sp:subject _:b65 |
| 285 | - ] [ sp:object _:b74 ; | 294 | + ] [ sp:object _:b73 ; |
| 286 | sp:predicate ddr:uomRef ; | 295 | sp:predicate ddr:uomRef ; |
| 287 | - sp:subject _:b73 | 296 | + sp:subject _:b72 |
| 288 | ] [ sp:object _:b18 ; | 297 | ] [ sp:object _:b18 ; |
| 289 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 298 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 290 | - sp:subject _:b73 | 299 | + sp:subject _:b72 |
| 291 | ] [ sp:object _:b6 ; | 300 | ] [ sp:object _:b6 ; |
| 292 | sp:predicate ddr:dTimRegained ; | 301 | sp:predicate ddr:dTimRegained ; |
| 293 | - sp:subject _:b66 | 302 | + sp:subject _:b65 |
| 294 | - ] [ sp:object _:b75 ; | 303 | + ] [ sp:object _:b74 ; |
| 295 | sp:predicate ddr:diaBitRef ; | 304 | sp:predicate ddr:diaBitRef ; |
| 296 | - sp:subject _:b66 | 305 | + sp:subject _:b65 |
| 297 | - ] [ sp:object _:b76 ; | 306 | + ] [ sp:object _:b75 ; |
| 298 | sp:predicate ddr:uomRef ; | 307 | sp:predicate ddr:uomRef ; |
| 299 | - sp:subject _:b75 | 308 | + sp:subject _:b74 |
| 300 | - ] [ sp:object _:b30 ; | 309 | + ] [ sp:object _:b76 ; |
| 301 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 310 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 302 | - sp:subject _:b75 | 311 | + sp:subject _:b74 |
| 303 | ] [ sp:object _:b77 ; | 312 | ] [ sp:object _:b77 ; |
| 304 | sp:predicate ddr:mdBitRef ; | 313 | sp:predicate ddr:mdBitRef ; |
| 305 | - sp:subject _:b66 | 314 | + sp:subject _:b65 |
| 306 | ] [ sp:object _:b78 ; | 315 | ] [ sp:object _:b78 ; |
| 307 | sp:predicate ddr:uomRef ; | 316 | sp:predicate ddr:uomRef ; |
| 308 | sp:subject _:b77 | 317 | sp:subject _:b77 |
| 309 | - ] [ sp:object _:b46 ; | 318 | + ] [ sp:object _:b45 ; |
| 310 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 319 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 311 | sp:subject _:b77 | 320 | sp:subject _:b77 |
| 312 | ] [ sp:object _:b79 ; | 321 | ] [ sp:object _:b79 ; |
| 313 | sp:predicate ddr:wtMudRef ; | 322 | sp:predicate ddr:wtMudRef ; |
| 314 | - sp:subject _:b66 | 323 | + sp:subject _:b65 |
| 315 | ] [ sp:object _:b80 ; | 324 | ] [ sp:object _:b80 ; |
| 316 | sp:predicate ddr:uomRef ; | 325 | sp:predicate ddr:uomRef ; |
| 317 | sp:subject _:b79 | 326 | sp:subject _:b79 |
| 318 | - ] [ sp:object _:b53 ; | 327 | + ] [ sp:object _:b52 ; |
| 319 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 328 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 320 | sp:subject _:b79 | 329 | sp:subject _:b79 |
| 321 | ] [ rdf:type sp:Optional ; | 330 | ] [ rdf:type sp:Optional ; |
| 322 | sp:elements ([ sp:object _:b81 ; | 331 | sp:elements ([ sp:object _:b81 ; |
| 323 | sp:predicate ddr:porePressureRef ; | 332 | sp:predicate ddr:porePressureRef ; |
| 324 | - sp:subject _:b66 | 333 | + sp:subject _:b65 |
| 325 | ] [ sp:object _:b82 ; | 334 | ] [ sp:object _:b82 ; |
| 326 | sp:predicate ddr:uomRef ; | 335 | sp:predicate ddr:uomRef ; |
| 327 | sp:subject _:b81 | 336 | sp:subject _:b81 |
| 328 | - ] [ sp:object _:b56 ; | 337 | + ] [ sp:object _:b55 ; |
| 329 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 338 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 330 | sp:subject _:b81 | 339 | sp:subject _:b81 |
| 331 | ]) | 340 | ]) |
| 332 | ] [ sp:object _:b83 ; | 341 | ] [ sp:object _:b83 ; |
| 333 | sp:predicate ddr:diaCsgLastRef ; | 342 | sp:predicate ddr:diaCsgLastRef ; |
| 334 | - sp:subject _:b66 | 343 | + sp:subject _:b65 |
| 335 | ] [ sp:object _:b84 ; | 344 | ] [ sp:object _:b84 ; |
| 336 | sp:predicate ddr:uomRef ; | 345 | sp:predicate ddr:uomRef ; |
| 337 | sp:subject _:b83 | 346 | sp:subject _:b83 |
| 338 | - ] [ sp:object _:b43 ; | 347 | + ] [ sp:object _:b85 ; |
| 339 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 348 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 340 | sp:subject _:b83 | 349 | sp:subject _:b83 |
| 341 | - ] [ sp:object _:b85 ; | ||
| 342 | - sp:predicate ddr:mdCsgLastRef ; | ||
| 343 | - sp:subject _:b66 | ||
| 344 | ] [ sp:object _:b86 ; | 350 | ] [ sp:object _:b86 ; |
| 351 | + sp:predicate ddr:mdCsgLastRef ; | ||
| 352 | + sp:subject _:b65 | ||
| 353 | + ] [ sp:object _:b87 ; | ||
| 345 | sp:predicate ddr:uomRef ; | 354 | sp:predicate ddr:uomRef ; |
| 346 | - sp:subject _:b85 | 355 | + sp:subject _:b86 |
| 347 | - ] [ sp:object _:b41 ; | 356 | + ] [ sp:object _:b42 ; |
| 348 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 357 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 349 | - sp:subject _:b85 | 358 | + sp:subject _:b86 |
| 350 | - ] [ sp:object _:b87 ; | ||
| 351 | - sp:predicate ddr:volMudGainedRef ; | ||
| 352 | - sp:subject _:b66 | ||
| 353 | ] [ sp:object _:b88 ; | 359 | ] [ sp:object _:b88 ; |
| 360 | + sp:predicate ddr:volMudGainedRef ; | ||
| 361 | + sp:subject _:b65 | ||
| 362 | + ] [ sp:object _:b89 ; | ||
| 354 | sp:predicate ddr:uomRef ; | 363 | sp:predicate ddr:uomRef ; |
| 355 | - sp:subject _:b87 | 364 | + sp:subject _:b88 |
| 356 | - ] [ sp:object _:b35 ; | 365 | + ] [ sp:object _:b34 ; |
| 357 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 366 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 358 | - sp:subject _:b87 | 367 | + sp:subject _:b88 |
| 359 | - ] [ sp:object _:b89 ; | ||
| 360 | - sp:predicate ddr:presShutInCasingRef ; | ||
| 361 | - sp:subject _:b66 | ||
| 362 | ] [ sp:object _:b90 ; | 368 | ] [ sp:object _:b90 ; |
| 369 | + sp:predicate ddr:presShutInCasingRef ; | ||
| 370 | + sp:subject _:b65 | ||
| 371 | + ] [ sp:object _:b91 ; | ||
| 363 | sp:predicate ddr:uomRef ; | 372 | sp:predicate ddr:uomRef ; |
| 364 | - sp:subject _:b89 | 373 | + sp:subject _:b90 |
| 365 | - ] [ sp:object _:b59 ; | 374 | + ] [ sp:object _:b58 ; |
| 366 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 375 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 367 | - sp:subject _:b89 | 376 | + sp:subject _:b90 |
| 368 | - ] [ sp:object _:b91 ; | ||
| 369 | - sp:predicate ddr:presShutInDrillRef ; | ||
| 370 | - sp:subject _:b66 | ||
| 371 | ] [ sp:object _:b92 ; | 377 | ] [ sp:object _:b92 ; |
| 378 | + sp:predicate ddr:presShutInDrillRef ; | ||
| 379 | + sp:subject _:b65 | ||
| 380 | + ] [ sp:object _:b93 ; | ||
| 372 | sp:predicate ddr:uomRef ; | 381 | sp:predicate ddr:uomRef ; |
| 373 | - sp:subject _:b91 | 382 | + sp:subject _:b92 |
| 374 | - ] [ sp:object _:b62 ; | 383 | + ] [ sp:object _:b61 ; |
| 375 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 384 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 376 | - sp:subject _:b91 | 385 | + sp:subject _:b92 |
| 377 | - ] [ sp:object _:b93 ; | ||
| 378 | - sp:predicate ddr:incidentTypeRef ; | ||
| 379 | - sp:subject _:b66 | ||
| 380 | ] [ sp:object _:b94 ; | 386 | ] [ sp:object _:b94 ; |
| 387 | + sp:predicate ddr:incidentTypeRef ; | ||
| 388 | + sp:subject _:b65 | ||
| 389 | + ] [ sp:object _:b95 ; | ||
| 381 | sp:predicate ddr:killingTypeRef ; | 390 | sp:predicate ddr:killingTypeRef ; |
| 382 | - sp:subject _:b66 | 391 | + sp:subject _:b65 |
| 383 | ] [ sp:object _:b10 ; | 392 | ] [ sp:object _:b10 ; |
| 384 | sp:predicate ddr:formation ; | 393 | sp:predicate ddr:formation ; |
| 385 | - sp:subject _:b66 | 394 | + sp:subject _:b65 |
| 386 | - ] [ sp:object _:b95 ; | ||
| 387 | - sp:predicate ddr:tempBottomRef ; | ||
| 388 | - sp:subject _:b66 | ||
| 389 | ] [ sp:object _:b96 ; | 395 | ] [ sp:object _:b96 ; |
| 396 | + sp:predicate ddr:tempBottomRef ; | ||
| 397 | + sp:subject _:b65 | ||
| 398 | + ] [ sp:object _:b97 ; | ||
| 390 | sp:predicate ddr:uomRef ; | 399 | sp:predicate ddr:uomRef ; |
| 391 | - sp:subject _:b95 | 400 | + sp:subject _:b96 |
| 392 | - ] [ sp:object _:b49 ; | 401 | + ] [ sp:object _:b48 ; |
| 393 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 402 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 394 | - sp:subject _:b95 | 403 | + sp:subject _:b96 |
| 395 | - ] [ sp:object _:b97 ; | ||
| 396 | - sp:predicate ddr:presMaxChokeRef ; | ||
| 397 | - sp:subject _:b66 | ||
| 398 | ] [ sp:object _:b98 ; | 404 | ] [ sp:object _:b98 ; |
| 405 | + sp:predicate ddr:presMaxChokeRef ; | ||
| 406 | + sp:subject _:b65 | ||
| 407 | + ] [ sp:object _:b99 ; | ||
| 399 | sp:predicate ddr:uomRef ; | 408 | sp:predicate ddr:uomRef ; |
| 400 | - sp:subject _:b97 | 409 | + sp:subject _:b98 |
| 401 | ] [ sp:object _:b27 ; | 410 | ] [ sp:object _:b27 ; |
| 402 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 411 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 403 | - sp:subject _:b97 | 412 | + sp:subject _:b98 |
| 404 | - ] [ sp:object _:b37 ; | 413 | + ] [ sp:object _:b36 ; |
| 405 | sp:predicate ddr:description ; | 414 | sp:predicate ddr:description ; |
| 406 | - sp:subject _:b66 | 415 | + sp:subject _:b65 |
| 407 | ] [ rdf:type sp:Bind ; | 416 | ] [ rdf:type sp:Bind ; |
| 408 | sp:expression | 417 | sp:expression |
| 409 | [ rdf:type afn:localname ; | 418 | [ rdf:type afn:localname ; |
| 410 | - sp:arg1 _:b66 | 419 | + sp:arg1 _:b65 |
| 411 | ] ; | 420 | ] ; |
| 412 | - sp:variable _:b99 | 421 | + sp:variable _:b100 |
| 413 | ] [ rdf:type sp:Bind ; | 422 | ] [ rdf:type sp:Bind ; |
| 414 | sp:expression | 423 | sp:expression |
| 415 | [ rdf:type ep-spin-lib:normalizeString ; | 424 | [ rdf:type ep-spin-lib:normalizeString ; |
| 416 | - sp:arg1 _:b64 | 425 | + sp:arg1 _:b63 |
| 417 | ] ; | 426 | ] ; |
| 418 | - sp:variable _:b100 | 427 | + sp:variable _:b101 |
| 419 | ] [ rdf:type sp:Bind ; | 428 | ] [ rdf:type sp:Bind ; |
| 420 | sp:expression | 429 | sp:expression |
| 421 | [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; | 430 | [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; |
| 422 | - sp:arg1 _:b100 ; | 431 | + sp:arg1 _:b101 ; |
| 423 | - sp:arg2 _:b65 | 432 | + sp:arg2 _:b64 |
| 424 | ] ; | 433 | ] ; |
| 425 | sp:variable _:b2 | 434 | sp:variable _:b2 |
| 426 | ] [ rdf:type sp:Bind ; | 435 | ] [ rdf:type sp:Bind ; |
| 427 | sp:expression | 436 | sp:expression |
| 428 | [ rdf:type ep-spin-lib:buildWellControlIncidentURI ; | 437 | [ rdf:type ep-spin-lib:buildWellControlIncidentURI ; |
| 429 | - sp:arg1 _:b100 ; | 438 | + sp:arg1 _:b101 ; |
| 430 | - sp:arg2 _:b65 ; | 439 | + sp:arg2 _:b64 ; |
| 431 | - sp:arg3 _:b99 | 440 | + sp:arg3 _:b100 |
| 432 | ] ; | 441 | ] ; |
| 433 | sp:variable _:b1 | 442 | sp:variable _:b1 |
| 434 | ] [ rdf:type sp:Bind ; | 443 | ] [ rdf:type sp:Bind ; |
| 435 | sp:expression | 444 | sp:expression |
| 436 | [ rdf:type ep-spin-lib:selectDrillingActivityPurposeType ; | 445 | [ rdf:type ep-spin-lib:selectDrillingActivityPurposeType ; |
| 437 | - sp:arg1 _:b72 | 446 | + sp:arg1 _:b71 |
| 438 | ] ; | 447 | ] ; |
| 439 | sp:variable _:b22 | 448 | sp:variable _:b22 |
| 440 | ] [ rdf:type sp:Bind ; | 449 | ] [ rdf:type sp:Bind ; |
| 441 | sp:expression | 450 | sp:expression |
| 442 | [ rdf:type ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ; | 451 | [ rdf:type ep-spin-lib:selectDrillingActivityTypeAccordingToEquipmentType ; |
| 443 | - sp:arg1 _:b71 | 452 | + sp:arg1 _:b70 |
| 444 | ] ; | 453 | ] ; |
| 445 | sp:variable _:b23 | 454 | sp:variable _:b23 |
| 446 | ] [ rdf:type sp:Bind ; | 455 | ] [ rdf:type sp:Bind ; |
| 447 | sp:expression | 456 | sp:expression |
| 448 | [ rdf:type ep-spin-lib:selectWellControlIncidentType ; | 457 | [ rdf:type ep-spin-lib:selectWellControlIncidentType ; |
| 449 | - sp:arg1 _:b93 | 458 | + sp:arg1 _:b94 |
| 450 | ] ; | 459 | ] ; |
| 451 | sp:variable _:b20 | 460 | sp:variable _:b20 |
| 452 | ] [ rdf:type sp:Bind ; | 461 | ] [ rdf:type sp:Bind ; |
| 453 | sp:expression | 462 | sp:expression |
| 454 | [ rdf:type ep-spin-lib:selectWellKillingType ; | 463 | [ rdf:type ep-spin-lib:selectWellKillingType ; |
| 455 | - sp:arg1 _:b94 | 464 | + sp:arg1 _:b95 |
| 456 | ] ; | 465 | ] ; |
| 457 | - sp:variable _:b33 | 466 | + sp:variable _:b32 |
| 458 | ] [ rdf:type sp:Bind ; | 467 | ] [ rdf:type sp:Bind ; |
| 459 | sp:expression | 468 | sp:expression |
| 460 | [ rdf:type ep-spin-lib:selectVolumeScale ; | 469 | [ rdf:type ep-spin-lib:selectVolumeScale ; |
| 461 | - sp:arg1 _:b88 | 470 | + sp:arg1 _:b89 |
| 462 | ] ; | 471 | ] ; |
| 463 | - sp:variable _:b36 | 472 | + sp:variable _:b35 |
| 464 | ] [ rdf:type sp:Bind ; | 473 | ] [ rdf:type sp:Bind ; |
| 465 | sp:expression | 474 | sp:expression |
| 466 | [ rdf:type ep-spin-lib:selectTimeDurationScale ; | 475 | [ rdf:type ep-spin-lib:selectTimeDurationScale ; |
| 467 | - sp:arg1 _:b74 | 476 | + sp:arg1 _:b73 |
| 468 | ] ; | 477 | ] ; |
| 469 | sp:variable _:b19 | 478 | sp:variable _:b19 |
| 470 | ] [ rdf:type sp:Bind ; | 479 | ] [ rdf:type sp:Bind ; |
| 471 | sp:expression | 480 | sp:expression |
| 472 | [ rdf:type ep-spin-lib:selectLengthScale ; | 481 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 473 | - sp:arg1 _:b68 | 482 | + sp:arg1 _:b67 |
| 474 | ] ; | 483 | ] ; |
| 475 | sp:variable _:b13 | 484 | sp:variable _:b13 |
| 476 | ] [ rdf:type sp:Bind ; | 485 | ] [ rdf:type sp:Bind ; |
| 477 | sp:expression | 486 | sp:expression |
| 478 | [ rdf:type ep-spin-lib:selectLengthScale ; | 487 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 479 | - sp:arg1 _:b70 | 488 | + sp:arg1 _:b69 |
| 480 | ] ; | 489 | ] ; |
| 481 | sp:variable _:b16 | 490 | sp:variable _:b16 |
| 482 | ] [ rdf:type sp:Bind ; | 491 | ] [ rdf:type sp:Bind ; |
| 483 | sp:expression | 492 | sp:expression |
| 484 | [ rdf:type ep-spin-lib:selectLengthScale ; | 493 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 485 | - sp:arg1 _:b76 | 494 | + sp:arg1 _:b75 |
| 486 | ] ; | 495 | ] ; |
| 487 | - sp:variable _:b31 | 496 | + sp:variable |
| 497 | + [ sp:varName "lengthScaleDia"^^xsd:string | ||
| 498 | + ] | ||
| 488 | ] [ rdf:type sp:Bind ; | 499 | ] [ rdf:type sp:Bind ; |
| 489 | sp:expression | 500 | sp:expression |
| 490 | [ rdf:type ep-spin-lib:selectLengthScale ; | 501 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 491 | sp:arg1 _:b78 | 502 | sp:arg1 _:b78 |
| 492 | ] ; | 503 | ] ; |
| 493 | - sp:variable _:b47 | 504 | + sp:variable _:b46 |
| 494 | ] [ rdf:type sp:Bind ; | 505 | ] [ rdf:type sp:Bind ; |
| 495 | sp:expression | 506 | sp:expression |
| 496 | [ rdf:type ep-spin-lib:selectLengthScale ; | 507 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 497 | sp:arg1 _:b84 | 508 | sp:arg1 _:b84 |
| 498 | ] ; | 509 | ] ; |
| 499 | - sp:variable _:b44 | 510 | + sp:variable |
| 511 | + [ sp:varName "lengthScaleDiaCsgLast"^^xsd:string | ||
| 512 | + ] | ||
| 500 | ] [ rdf:type sp:Bind ; | 513 | ] [ rdf:type sp:Bind ; |
| 501 | sp:expression | 514 | sp:expression |
| 502 | [ rdf:type ep-spin-lib:selectLengthScale ; | 515 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 503 | - sp:arg1 _:b86 | 516 | + sp:arg1 _:b87 |
| 504 | ] ; | 517 | ] ; |
| 505 | - sp:variable _:b42 | 518 | + sp:variable _:b43 |
| 506 | ] [ rdf:type sp:Bind ; | 519 | ] [ rdf:type sp:Bind ; |
| 507 | sp:expression | 520 | sp:expression |
| 508 | [ rdf:type ep-spin-lib:selectDensityScale ; | 521 | [ rdf:type ep-spin-lib:selectDensityScale ; |
| 509 | sp:arg1 _:b80 | 522 | sp:arg1 _:b80 |
| 510 | ] ; | 523 | ] ; |
| 511 | - sp:variable _:b54 | 524 | + sp:variable _:b53 |
| 512 | ] [ rdf:type sp:Bind ; | 525 | ] [ rdf:type sp:Bind ; |
| 513 | sp:expression | 526 | sp:expression |
| 514 | [ rdf:type ep-spin-lib:selectTemperatureScale ; | 527 | [ rdf:type ep-spin-lib:selectTemperatureScale ; |
| 515 | - sp:arg1 _:b96 | 528 | + sp:arg1 _:b97 |
| 516 | ] ; | 529 | ] ; |
| 517 | - sp:variable _:b50 | 530 | + sp:variable _:b49 |
| 518 | ] [ rdf:type sp:Bind ; | 531 | ] [ rdf:type sp:Bind ; |
| 519 | sp:expression | 532 | sp:expression |
| 520 | [ rdf:type ep-spin-lib:selectPressureScale ; | 533 | [ rdf:type ep-spin-lib:selectPressureScale ; |
| 521 | - sp:arg1 _:b98 | 534 | + sp:arg1 _:b99 |
| 522 | ] ; | 535 | ] ; |
| 523 | sp:variable _:b28 | 536 | sp:variable _:b28 |
| 524 | ] [ rdf:type sp:Bind ; | 537 | ] [ rdf:type sp:Bind ; |
| 525 | sp:expression | 538 | sp:expression |
| 526 | [ rdf:type ep-spin-lib:selectPressureScale ; | 539 | [ rdf:type ep-spin-lib:selectPressureScale ; |
| 527 | - sp:arg1 _:b90 | 540 | + sp:arg1 _:b91 |
| 528 | ] ; | 541 | ] ; |
| 529 | - sp:variable _:b60 | 542 | + sp:variable _:b59 |
| 530 | ] [ rdf:type sp:Bind ; | 543 | ] [ rdf:type sp:Bind ; |
| 531 | sp:expression | 544 | sp:expression |
| 532 | [ rdf:type ep-spin-lib:selectPressureScale ; | 545 | [ rdf:type ep-spin-lib:selectPressureScale ; |
| 533 | - sp:arg1 _:b92 | 546 | + sp:arg1 _:b93 |
| 534 | ] ; | 547 | ] ; |
| 535 | - sp:variable _:b63 | 548 | + sp:variable _:b62 |
| 536 | ] [ rdf:type sp:Bind ; | 549 | ] [ rdf:type sp:Bind ; |
| 537 | sp:expression | 550 | sp:expression |
| 538 | [ rdf:type ep-spin-lib:selectDensityScale ; | 551 | [ rdf:type ep-spin-lib:selectDensityScale ; |
| 539 | sp:arg1 _:b82 | 552 | sp:arg1 _:b82 |
| 540 | ] ; | 553 | ] ; |
| 541 | - sp:variable _:b57 | 554 | + sp:variable _:b56 |
| 555 | + ] [ rdf:type sp:Bind ; | ||
| 556 | + sp:expression | ||
| 557 | + [ rdf:type ep-spin-lib:normalizeDoubleName ; | ||
| 558 | + sp:arg1 _:b76 | ||
| 559 | + ] ; | ||
| 560 | + sp:variable _:b30 | ||
| 561 | + ] [ rdf:type sp:Bind ; | ||
| 562 | + sp:expression | ||
| 563 | + [ rdf:type ep-spin-lib:buildDrillBitSizeClassURI ; | ||
| 564 | + sp:arg1 _:b30 | ||
| 565 | + ] ; | ||
| 566 | + sp:variable _:b29 | ||
| 567 | + ] [ rdf:type sp:Bind ; | ||
| 568 | + sp:expression | ||
| 569 | + [ rdf:type ep-spin-lib:normalizeDoubleName ; | ||
| 570 | + sp:arg1 _:b85 | ||
| 571 | + ] ; | ||
| 572 | + sp:variable _:b40 | ||
| 573 | + ] [ rdf:type sp:Bind ; | ||
| 574 | + sp:expression | ||
| 575 | + [ rdf:type ep-spin-lib:buildPipeOutsideDiameterAPI_5CTClass ; | ||
| 576 | + sp:arg1 _:b40 | ||
| 577 | + ] ; | ||
| 578 | + sp:variable _:b39 | ||
| 542 | ] [ rdf:type sp:Bind ; | 579 | ] [ rdf:type sp:Bind ; |
| 543 | sp:expression | 580 | sp:expression |
| 544 | [ rdf:type rhspin:wellBoreByName ; | 581 | [ rdf:type rhspin:wellBoreByName ; |
| 545 | arg:wellBoreName | 582 | arg:wellBoreName |
| 546 | [ rdf:type xsd:string ; | 583 | [ rdf:type xsd:string ; |
| 547 | - sp:arg1 _:b64 | 584 | + sp:arg1 _:b63 |
| 548 | ] | 585 | ] |
| 549 | ] ; | 586 | ] ; |
| 550 | sp:variable _:b8 | 587 | sp:variable _:b8 |
| 551 | ]) | 588 | ]) |
| 552 | ] . | 589 | ] . |
| 553 | 590 | ||
| 554 | -_:b64 | 591 | +_:b63 |
| 555 | sp:varName "nameWellBore"^^xsd:string . | 592 | sp:varName "nameWellBore"^^xsd:string . |
| 556 | 593 | ||
| 557 | -_:b65 | 594 | +_:b64 |
| 558 | sp:varName "dTimStart"^^xsd:string . | 595 | sp:varName "dTimStart"^^xsd:string . |
| 559 | 596 | ||
| 560 | _:b2 sp:varName "dailyDrillingActivity"^^xsd:string . | 597 | _:b2 sp:varName "dailyDrillingActivity"^^xsd:string . |
| 561 | 598 | ||
| 562 | _:b4 sp:varName "dailytemporalPartOfAWellBore"^^xsd:string . | 599 | _:b4 sp:varName "dailytemporalPartOfAWellBore"^^xsd:string . |
| 563 | 600 | ||
| 564 | -_:b66 | 601 | +_:b65 |
| 565 | sp:varName "controlIncidentInfo"^^xsd:string . | 602 | sp:varName "controlIncidentInfo"^^xsd:string . |
| 566 | 603 | ||
| 567 | _:b5 sp:varName "dTimStartOfIncident"^^xsd:string . | 604 | _:b5 sp:varName "dTimStartOfIncident"^^xsd:string . |
| 568 | 605 | ||
| 569 | -_:b67 | 606 | +_:b66 |
| 570 | sp:varName "mdIn"^^xsd:string . | 607 | sp:varName "mdIn"^^xsd:string . |
| 571 | 608 | ||
| 572 | -_:b68 | 609 | +_:b67 |
| 573 | sp:varName "uomMdIn"^^xsd:string . | 610 | sp:varName "uomMdIn"^^xsd:string . |
| 574 | 611 | ||
| 575 | _:b12 | 612 | _:b12 |
| 576 | sp:varName "realMdIn"^^xsd:string . | 613 | sp:varName "realMdIn"^^xsd:string . |
| 577 | 614 | ||
| 578 | -_:b69 | 615 | +_:b68 |
| 579 | sp:varName "tvdIn"^^xsd:string . | 616 | sp:varName "tvdIn"^^xsd:string . |
| 580 | 617 | ||
| 581 | -_:b70 | 618 | +_:b69 |
| 582 | sp:varName "uomTvdIn"^^xsd:string . | 619 | sp:varName "uomTvdIn"^^xsd:string . |
| 583 | 620 | ||
| 584 | _:b15 | 621 | _:b15 |
| 585 | sp:varName "realTvdIn"^^xsd:string . | 622 | sp:varName "realTvdIn"^^xsd:string . |
| 586 | 623 | ||
| 587 | -_:b71 | 624 | +_:b70 |
| 588 | sp:varName "phase"^^xsd:string . | 625 | sp:varName "phase"^^xsd:string . |
| 589 | 626 | ||
| 590 | -_:b72 | 627 | +_:b71 |
| 591 | sp:varName "proprietaryCode"^^xsd:string . | 628 | sp:varName "proprietaryCode"^^xsd:string . |
| 592 | 629 | ||
| 593 | -_:b73 | 630 | +_:b72 |
| 594 | sp:varName "eTimLost"^^xsd:string . | 631 | sp:varName "eTimLost"^^xsd:string . |
| 595 | 632 | ||
| 596 | -_:b74 | 633 | +_:b73 |
| 597 | sp:varName "uomDuration"^^xsd:string . | 634 | sp:varName "uomDuration"^^xsd:string . |
| 598 | 635 | ||
| 599 | _:b18 | 636 | _:b18 |
| ... | @@ -601,13 +638,13 @@ _:b18 | ... | @@ -601,13 +638,13 @@ _:b18 |
| 601 | 638 | ||
| 602 | _:b6 sp:varName "dTimEndOfIncident"^^xsd:string . | 639 | _:b6 sp:varName "dTimEndOfIncident"^^xsd:string . |
| 603 | 640 | ||
| 604 | -_:b75 | 641 | +_:b74 |
| 605 | sp:varName "diaBit"^^xsd:string . | 642 | sp:varName "diaBit"^^xsd:string . |
| 606 | 643 | ||
| 607 | -_:b76 | 644 | +_:b75 |
| 608 | sp:varName "uomDia"^^xsd:string . | 645 | sp:varName "uomDia"^^xsd:string . |
| 609 | 646 | ||
| 610 | -_:b30 | 647 | +_:b76 |
| 611 | sp:varName "realDia"^^xsd:string . | 648 | sp:varName "realDia"^^xsd:string . |
| 612 | 649 | ||
| 613 | _:b77 | 650 | _:b77 |
| ... | @@ -616,7 +653,7 @@ _:b77 | ... | @@ -616,7 +653,7 @@ _:b77 |
| 616 | _:b78 | 653 | _:b78 |
| 617 | sp:varName "uomMdBit"^^xsd:string . | 654 | sp:varName "uomMdBit"^^xsd:string . |
| 618 | 655 | ||
| 619 | -_:b46 | 656 | +_:b45 |
| 620 | sp:varName "realMdBit"^^xsd:string . | 657 | sp:varName "realMdBit"^^xsd:string . |
| 621 | 658 | ||
| 622 | _:b79 | 659 | _:b79 |
| ... | @@ -625,7 +662,7 @@ _:b79 | ... | @@ -625,7 +662,7 @@ _:b79 |
| 625 | _:b80 | 662 | _:b80 |
| 626 | sp:varName "uomWtMud"^^xsd:string . | 663 | sp:varName "uomWtMud"^^xsd:string . |
| 627 | 664 | ||
| 628 | -_:b53 | 665 | +_:b52 |
| 629 | sp:varName "realWtMud"^^xsd:string . | 666 | sp:varName "realWtMud"^^xsd:string . |
| 630 | 667 | ||
| 631 | _:b81 | 668 | _:b81 |
| ... | @@ -634,7 +671,7 @@ _:b81 | ... | @@ -634,7 +671,7 @@ _:b81 |
| 634 | _:b82 | 671 | _:b82 |
| 635 | sp:varName "uomPore"^^xsd:string . | 672 | sp:varName "uomPore"^^xsd:string . |
| 636 | 673 | ||
| 637 | -_:b56 | 674 | +_:b55 |
| 638 | sp:varName "realPore"^^xsd:string . | 675 | sp:varName "realPore"^^xsd:string . |
| 639 | 676 | ||
| 640 | _:b83 | 677 | _:b83 |
| ... | @@ -643,79 +680,79 @@ _:b83 | ... | @@ -643,79 +680,79 @@ _:b83 |
| 643 | _:b84 | 680 | _:b84 |
| 644 | sp:varName "uomDiaCsgLast"^^xsd:string . | 681 | sp:varName "uomDiaCsgLast"^^xsd:string . |
| 645 | 682 | ||
| 646 | -_:b43 | ||
| 647 | - sp:varName "realDiaCsgLast"^^xsd:string . | ||
| 648 | - | ||
| 649 | _:b85 | 683 | _:b85 |
| 650 | - sp:varName "mdCsgLast"^^xsd:string . | 684 | + sp:varName "realOd"^^xsd:string . |
| 651 | 685 | ||
| 652 | _:b86 | 686 | _:b86 |
| 687 | + sp:varName "mdCsgLast"^^xsd:string . | ||
| 688 | + | ||
| 689 | +_:b87 | ||
| 653 | sp:varName "uomMdCsgLast"^^xsd:string . | 690 | sp:varName "uomMdCsgLast"^^xsd:string . |
| 654 | 691 | ||
| 655 | -_:b41 | 692 | +_:b42 |
| 656 | sp:varName "realMdCsgLast"^^xsd:string . | 693 | sp:varName "realMdCsgLast"^^xsd:string . |
| 657 | 694 | ||
| 658 | -_:b87 | 695 | +_:b88 |
| 659 | sp:varName "volMudGained"^^xsd:string . | 696 | sp:varName "volMudGained"^^xsd:string . |
| 660 | 697 | ||
| 661 | -_:b88 | 698 | +_:b89 |
| 662 | sp:varName "uomVol"^^xsd:string . | 699 | sp:varName "uomVol"^^xsd:string . |
| 663 | 700 | ||
| 664 | -_:b35 | 701 | +_:b34 |
| 665 | sp:varName "realVol"^^xsd:string . | 702 | sp:varName "realVol"^^xsd:string . |
| 666 | 703 | ||
| 667 | -_:b89 | 704 | +_:b90 |
| 668 | sp:varName "presShutInCasing"^^xsd:string . | 705 | sp:varName "presShutInCasing"^^xsd:string . |
| 669 | 706 | ||
| 670 | -_:b90 | 707 | +_:b91 |
| 671 | sp:varName "uomShutInCasing"^^xsd:string . | 708 | sp:varName "uomShutInCasing"^^xsd:string . |
| 672 | 709 | ||
| 673 | -_:b59 | 710 | +_:b58 |
| 674 | sp:varName "realShutInCasing"^^xsd:string . | 711 | sp:varName "realShutInCasing"^^xsd:string . |
| 675 | 712 | ||
| 676 | -_:b91 | 713 | +_:b92 |
| 677 | sp:varName "presShutInDrill"^^xsd:string . | 714 | sp:varName "presShutInDrill"^^xsd:string . |
| 678 | 715 | ||
| 679 | -_:b92 | 716 | +_:b93 |
| 680 | sp:varName "uomShutInDrill"^^xsd:string . | 717 | sp:varName "uomShutInDrill"^^xsd:string . |
| 681 | 718 | ||
| 682 | -_:b62 | 719 | +_:b61 |
| 683 | sp:varName "realShutInDrill"^^xsd:string . | 720 | sp:varName "realShutInDrill"^^xsd:string . |
| 684 | 721 | ||
| 685 | -_:b93 | 722 | +_:b94 |
| 686 | sp:varName "incidentType"^^xsd:string . | 723 | sp:varName "incidentType"^^xsd:string . |
| 687 | 724 | ||
| 688 | -_:b94 | 725 | +_:b95 |
| 689 | sp:varName "killingType"^^xsd:string . | 726 | sp:varName "killingType"^^xsd:string . |
| 690 | 727 | ||
| 691 | _:b10 | 728 | _:b10 |
| 692 | sp:varName "formation"^^xsd:string . | 729 | sp:varName "formation"^^xsd:string . |
| 693 | 730 | ||
| 694 | -_:b95 | 731 | +_:b96 |
| 695 | sp:varName "tempBottom"^^xsd:string . | 732 | sp:varName "tempBottom"^^xsd:string . |
| 696 | 733 | ||
| 697 | -_:b96 | 734 | +_:b97 |
| 698 | sp:varName "uomTemp"^^xsd:string . | 735 | sp:varName "uomTemp"^^xsd:string . |
| 699 | 736 | ||
| 700 | -_:b49 | 737 | +_:b48 |
| 701 | sp:varName "realTemp"^^xsd:string . | 738 | sp:varName "realTemp"^^xsd:string . |
| 702 | 739 | ||
| 703 | -_:b97 | 740 | +_:b98 |
| 704 | sp:varName "presMaxChoke"^^xsd:string . | 741 | sp:varName "presMaxChoke"^^xsd:string . |
| 705 | 742 | ||
| 706 | -_:b98 | 743 | +_:b99 |
| 707 | sp:varName "uomMaxChoke"^^xsd:string . | 744 | sp:varName "uomMaxChoke"^^xsd:string . |
| 708 | 745 | ||
| 709 | _:b27 | 746 | _:b27 |
| 710 | sp:varName "realMaxChoke"^^xsd:string . | 747 | sp:varName "realMaxChoke"^^xsd:string . |
| 711 | 748 | ||
| 712 | -_:b37 | 749 | +_:b36 |
| 713 | sp:varName "description"^^xsd:string . | 750 | sp:varName "description"^^xsd:string . |
| 714 | 751 | ||
| 715 | -_:b99 | 752 | +_:b100 |
| 716 | sp:varName "localname"^^xsd:string . | 753 | sp:varName "localname"^^xsd:string . |
| 717 | 754 | ||
| 718 | -_:b100 | 755 | +_:b101 |
| 719 | sp:varName "normalizedWellBoreName"^^xsd:string . | 756 | sp:varName "normalizedWellBoreName"^^xsd:string . |
| 720 | 757 | ||
| 721 | _:b1 sp:varName "wellControlIncident"^^xsd:string . | 758 | _:b1 sp:varName "wellControlIncident"^^xsd:string . |
| ... | @@ -729,10 +766,10 @@ _:b23 | ... | @@ -729,10 +766,10 @@ _:b23 |
| 729 | _:b20 | 766 | _:b20 |
| 730 | sp:varName "wellControlIncidentType"^^xsd:string . | 767 | sp:varName "wellControlIncidentType"^^xsd:string . |
| 731 | 768 | ||
| 732 | -_:b33 | 769 | +_:b32 |
| 733 | sp:varName "wellKillingType"^^xsd:string . | 770 | sp:varName "wellKillingType"^^xsd:string . |
| 734 | 771 | ||
| 735 | -_:b36 | 772 | +_:b35 |
| 736 | sp:varName "volumeScale"^^xsd:string . | 773 | sp:varName "volumeScale"^^xsd:string . |
| 737 | 774 | ||
| 738 | _:b19 | 775 | _:b19 |
| ... | @@ -744,34 +781,40 @@ _:b13 | ... | @@ -744,34 +781,40 @@ _:b13 |
| 744 | _:b16 | 781 | _:b16 |
| 745 | sp:varName "lengthScaleTvdIn"^^xsd:string . | 782 | sp:varName "lengthScaleTvdIn"^^xsd:string . |
| 746 | 783 | ||
| 747 | -_:b31 | 784 | +_:b46 |
| 748 | - sp:varName "lengthScaleDia"^^xsd:string . | ||
| 749 | - | ||
| 750 | -_:b47 | ||
| 751 | sp:varName "lengthScaleMdBit"^^xsd:string . | 785 | sp:varName "lengthScaleMdBit"^^xsd:string . |
| 752 | 786 | ||
| 753 | -_:b44 | 787 | +_:b43 |
| 754 | - sp:varName "lengthScaleDiaCsgLast"^^xsd:string . | ||
| 755 | - | ||
| 756 | -_:b42 | ||
| 757 | sp:varName "lengthScaleMdCsgLast"^^xsd:string . | 788 | sp:varName "lengthScaleMdCsgLast"^^xsd:string . |
| 758 | 789 | ||
| 759 | -_:b54 | 790 | +_:b53 |
| 760 | sp:varName "densityScaleWtMud"^^xsd:string . | 791 | sp:varName "densityScaleWtMud"^^xsd:string . |
| 761 | 792 | ||
| 762 | -_:b50 | 793 | +_:b49 |
| 763 | sp:varName "temperatureScale"^^xsd:string . | 794 | sp:varName "temperatureScale"^^xsd:string . |
| 764 | 795 | ||
| 765 | _:b28 | 796 | _:b28 |
| 766 | sp:varName "pressureScaleMaxChoke"^^xsd:string . | 797 | sp:varName "pressureScaleMaxChoke"^^xsd:string . |
| 767 | 798 | ||
| 768 | -_:b60 | 799 | +_:b59 |
| 769 | sp:varName "pressureScaleShutInCasing"^^xsd:string . | 800 | sp:varName "pressureScaleShutInCasing"^^xsd:string . |
| 770 | 801 | ||
| 771 | -_:b63 | 802 | +_:b62 |
| 772 | sp:varName "pressureScaleShutInDrill"^^xsd:string . | 803 | sp:varName "pressureScaleShutInDrill"^^xsd:string . |
| 773 | 804 | ||
| 774 | -_:b57 | 805 | +_:b56 |
| 775 | sp:varName "densityScalePore"^^xsd:string . | 806 | sp:varName "densityScalePore"^^xsd:string . |
| 776 | 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 | + | ||
| 777 | _:b8 sp:varName "wellBore"^^xsd:string . | 820 | _:b8 sp:varName "wellBore"^^xsd:string . | ... | ... |
| 1 | +# Saved by TopBraid on Wed Nov 02 08:41:27 GMT 2011 | ||
| 1 | # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo | 2 | # baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo |
| 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/core | ||
| 5 | # imports: http://www.reportinghub.no/ep/spin/1.1/lib | 3 | # imports: http://www.reportinghub.no/ep/spin/1.1/lib |
| 6 | # imports: http://www.witsml.org/schemas/1series | 4 | # imports: http://www.witsml.org/schemas/1series |
| 5 | +# imports: http://www.reportinghub.no/ep/schema/1.0/core | ||
| 6 | +# imports: http://www.reportinghub.no/ep/schema/1.0/activity | ||
| 7 | +# imports: http://spinrdf.org/spin | ||
| 7 | 8 | ||
| 8 | @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo#> . | 9 | @prefix : <http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo#> . |
| 9 | @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . | 10 | @prefix afn: <http://jena.hpl.hp.com/ARQ/function#> . |
| 11 | +@prefix arg: <http://spinrdf.org/arg#> . | ||
| 10 | @prefix ddr: <http://www.witsml.org/schemas/1series#> . | 12 | @prefix ddr: <http://www.witsml.org/schemas/1series#> . |
| 11 | @prefix ep-activity: <http://www.reportinghub.no/ep/schema/activity#> . | 13 | @prefix ep-activity: <http://www.reportinghub.no/ep/schema/activity#> . |
| 12 | @prefix ep-spin-lib: <http://www.reportinghub.no/ep/spin/lib#> . | 14 | @prefix ep-spin-lib: <http://www.reportinghub.no/ep/spin/lib#> . |
| 13 | @prefix owl: <http://www.w3.org/2002/07/owl#> . | 15 | @prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 14 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | 16 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . |
| 15 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | 17 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 18 | +@prefix rhspin: <http://www.reportinghub.no/spin/rh#> . | ||
| 16 | @prefix sp: <http://spinrdf.org/sp#> . | 19 | @prefix sp: <http://spinrdf.org/sp#> . |
| 17 | @prefix spin: <http://spinrdf.org/spin#> . | 20 | @prefix spin: <http://spinrdf.org/spin#> . |
| 18 | @prefix spl: <http://spinrdf.org/spl#> . | 21 | @prefix spl: <http://spinrdf.org/spl#> . |
| ... | @@ -20,7 +23,7 @@ | ... | @@ -20,7 +23,7 @@ |
| 20 | 23 | ||
| 21 | <http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo> | 24 | <http://www.reportinghub.no/ep/transform/1.1/ddr/coreInfo> |
| 22 | rdf:type owl:Ontology ; | 25 | 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> ; | 26 | + 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> ; |
| 24 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | 27 | owl:versionInfo "Created with TopBraid Composer"^^xsd:string . |
| 25 | 28 | ||
| 26 | ddr:Obj_drillReport | 29 | ddr:Obj_drillReport |
| ... | @@ -30,475 +33,404 @@ ddr:Obj_drillReport | ... | @@ -30,475 +33,404 @@ ddr:Obj_drillReport |
| 30 | Properties transfered to the activity, to the part of the well bore, or to the recovered core."""^^xsd:string ; | 33 | Properties transfered to the activity, to the part of the well bore, or to the recovered core."""^^xsd:string ; |
| 31 | sp:templates ([ sp:object ep-activity:ExtractAWellCore ; | 34 | sp:templates ([ sp:object ep-activity:ExtractAWellCore ; |
| 32 | sp:predicate rdf:type ; | 35 | sp:predicate rdf:type ; |
| 33 | - sp:subject | ||
| 34 | - [ sp:varName "extractAWellCore"^^xsd:string | ||
| 35 | - ] | ||
| 36 | - ] [ sp:object | ||
| 37 | - [ sp:varName "extractAWellCore"^^xsd:string | ||
| 38 | - ] ; | ||
| 39 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 40 | - sp:subject | ||
| 41 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | ||
| 42 | - ] | ||
| 43 | - ] [ sp:object <http://www.reportinghub.no/ep/schema/well#SpatialPartOfAWellBore> ; | ||
| 44 | - sp:predicate rdf:type ; | ||
| 45 | - sp:subject _:b1 | ||
| 46 | - ] [ sp:object | ||
| 47 | - [ sp:varName "dailyTemporalPartOfAWellBore"^^xsd:string | ||
| 48 | - ] ; | ||
| 49 | - sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ; | ||
| 50 | sp:subject _:b1 | 36 | sp:subject _:b1 |
| 51 | ] [ sp:object _:b1 ; | 37 | ] [ sp:object _:b1 ; |
| 38 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; | ||
| 39 | + sp:subject _:b2 | ||
| 40 | + ] [ sp:object _:b3 ; | ||
| 52 | sp:predicate ep-activity:onWellBore ; | 41 | sp:predicate ep-activity:onWellBore ; |
| 53 | - sp:subject | 42 | + sp:subject _:b1 |
| 54 | - [ sp:varName "extractAWellCore"^^xsd:string | 43 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#PhysicalObject> ; |
| 55 | - ] | 44 | + sp:predicate rdf:type ; |
| 45 | + sp:subject _:b3 | ||
| 46 | + ] [ sp:object _:b4 ; | ||
| 47 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; | ||
| 48 | + sp:subject _:b3 | ||
| 49 | + ] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBoreSection> ; | ||
| 50 | + sp:predicate rdf:type ; | ||
| 51 | + sp:subject _:b4 | ||
| 52 | + ] [ sp:object _:b5 ; | ||
| 53 | + sp:predicate <http://www.reportinghub.no/ep/schema/core#spatialPartOf> ; | ||
| 54 | + sp:subject _:b4 | ||
| 56 | ] [ sp:object | 55 | ] [ sp:object |
| 57 | [ sp:varName "dTimWellCore"^^xsd:string | 56 | [ sp:varName "dTimWellCore"^^xsd:string |
| 58 | ] ; | 57 | ] ; |
| 59 | sp:predicate ep-activity:finishedAt ; | 58 | sp:predicate ep-activity:finishedAt ; |
| 60 | - sp:subject | 59 | + sp:subject _:b1 |
| 61 | - [ sp:varName "extractAWellCore"^^xsd:string | 60 | + ] [ sp:object _:b6 ; |
| 62 | - ] | ||
| 63 | - ] [ sp:object | ||
| 64 | - [ sp:varName "coreNumber"^^xsd:string | ||
| 65 | - ] ; | ||
| 66 | sp:predicate ep-activity:identificationNumberOfCore ; | 61 | sp:predicate ep-activity:identificationNumberOfCore ; |
| 67 | - sp:subject | ||
| 68 | - [ sp:varName "extractAWellCore"^^xsd:string | ||
| 69 | - ] | ||
| 70 | - ] [ sp:object _:b2 ; | ||
| 71 | - sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; | ||
| 72 | sp:subject _:b1 | 62 | sp:subject _:b1 |
| 63 | + ] [ sp:object _:b7 ; | ||
| 64 | + sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheTopOfAPartOfAWellBore> ; | ||
| 65 | + sp:subject _:b4 | ||
| 73 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 66 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 74 | sp:predicate rdf:type ; | 67 | sp:predicate rdf:type ; |
| 75 | - sp:subject _:b2 | 68 | + sp:subject _:b7 |
| 76 | - ] [ sp:object | 69 | + ] [ sp:object _:b8 ; |
| 77 | - [ sp:varName "realMdTop"^^xsd:string | 70 | + sp:predicate _:b9 ; |
| 78 | - ] ; | 71 | + sp:subject _:b7 |
| 79 | - sp:predicate | 72 | + ] [ sp:object _:b10 ; |
| 80 | - [ sp:varName "lengthScaleMdTop"^^xsd:string | ||
| 81 | - ] ; | ||
| 82 | - sp:subject _:b2 | ||
| 83 | - ] [ sp:object _:b3 ; | ||
| 84 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; | 73 | sp:predicate <http://www.reportinghub.no/ep/schema/well#measuredDepthToTheBottomOfAPartOfAWellBore> ; |
| 85 | - sp:subject _:b1 | 74 | + sp:subject _:b4 |
| 86 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 75 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 87 | sp:predicate rdf:type ; | 76 | sp:predicate rdf:type ; |
| 88 | - sp:subject _:b3 | 77 | + sp:subject _:b10 |
| 89 | - ] [ sp:object | 78 | + ] [ sp:object _:b11 ; |
| 90 | - [ sp:varName "realMdBottom"^^xsd:string | 79 | + sp:predicate _:b12 ; |
| 91 | - ] ; | 80 | + sp:subject _:b10 |
| 92 | - sp:predicate | 81 | + ] [ sp:object _:b13 ; |
| 93 | - [ sp:varName "lengthScaleMdBottom"^^xsd:string | ||
| 94 | - ] ; | ||
| 95 | - sp:subject _:b3 | ||
| 96 | - ] [ sp:object _:b4 ; | ||
| 97 | sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheTopOfAPartOfAWellBore> ; | 82 | sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheTopOfAPartOfAWellBore> ; |
| 98 | - sp:subject _:b1 | 83 | + sp:subject _:b4 |
| 99 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 84 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 100 | sp:predicate rdf:type ; | 85 | sp:predicate rdf:type ; |
| 101 | - sp:subject _:b4 | 86 | + sp:subject _:b13 |
| 102 | - ] [ sp:object | 87 | + ] [ sp:object _:b14 ; |
| 103 | - [ sp:varName "realTvdTop"^^xsd:string | 88 | + sp:predicate _:b15 ; |
| 104 | - ] ; | 89 | + sp:subject _:b13 |
| 105 | - sp:predicate | 90 | + ] [ sp:object _:b16 ; |
| 106 | - [ sp:varName "lengthScaleTvdTop"^^xsd:string | ||
| 107 | - ] ; | ||
| 108 | - sp:subject _:b4 | ||
| 109 | - ] [ sp:object _:b5 ; | ||
| 110 | sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheBottomOfAPartOfAWellBore> ; | 91 | sp:predicate <http://www.reportinghub.no/ep/schema/well#trueVerticalDepthToTheBottomOfAPartOfAWellBore> ; |
| 111 | - sp:subject _:b1 | 92 | + sp:subject _:b4 |
| 112 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 93 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 113 | sp:predicate rdf:type ; | 94 | sp:predicate rdf:type ; |
| 114 | - sp:subject _:b5 | 95 | + sp:subject _:b16 |
| 115 | - ] [ sp:object | 96 | + ] [ sp:object _:b17 ; |
| 116 | - [ sp:varName "realTvdBottom"^^xsd:string | 97 | + sp:predicate _:b18 ; |
| 117 | - ] ; | 98 | + sp:subject _:b16 |
| 118 | - sp:predicate | 99 | + ] [ sp:object _:b19 ; |
| 119 | - [ sp:varName "lengthScaleTvdBottom"^^xsd:string | ||
| 120 | - ] ; | ||
| 121 | - sp:subject _:b5 | ||
| 122 | - ] [ sp:object _:b6 ; | ||
| 123 | sp:predicate ep-activity:recoveredCore ; | 100 | sp:predicate ep-activity:recoveredCore ; |
| 124 | - sp:subject | 101 | + sp:subject _:b1 |
| 125 | - [ sp:varName "extractAWellCore"^^xsd:string | 102 | + ] [ sp:object _:b20 ; |
| 126 | - ] | ||
| 127 | - ] [ sp:object _:b7 ; | ||
| 128 | sp:predicate <http://www.reportinghub.no/ep/schema/well#coreLength> ; | 103 | sp:predicate <http://www.reportinghub.no/ep/schema/well#coreLength> ; |
| 129 | - sp:subject _:b6 | 104 | + sp:subject _:b19 |
| 130 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 105 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 131 | sp:predicate rdf:type ; | 106 | sp:predicate rdf:type ; |
| 132 | - sp:subject _:b7 | 107 | + sp:subject _:b20 |
| 133 | - ] [ sp:object | 108 | + ] [ sp:object _:b21 ; |
| 134 | - [ sp:varName "realRecovered"^^xsd:string | 109 | + sp:predicate _:b22 ; |
| 135 | - ] ; | 110 | + sp:subject _:b20 |
| 136 | - sp:predicate | 111 | + ] [ sp:object _:b23 ; |
| 137 | - [ sp:varName "lengthScaleRecovered"^^xsd:string | ||
| 138 | - ] ; | ||
| 139 | - sp:subject _:b7 | ||
| 140 | - ] [ sp:object _:b8 ; | ||
| 141 | sp:predicate <http://www.reportinghub.no/ep/schema/well#relativeAmountOfCoreRecovered> ; | 112 | sp:predicate <http://www.reportinghub.no/ep/schema/well#relativeAmountOfCoreRecovered> ; |
| 142 | - sp:subject _:b6 | 113 | + sp:subject _:b19 |
| 143 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#SpecificVolume> ; | 114 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#SpecificVolume> ; |
| 144 | sp:predicate rdf:type ; | 115 | sp:predicate rdf:type ; |
| 145 | - sp:subject _:b8 | 116 | + sp:subject _:b23 |
| 146 | - ] [ sp:object | 117 | + ] [ sp:object _:b24 ; |
| 147 | - [ sp:varName "realPc"^^xsd:string | 118 | + sp:predicate _:b25 ; |
| 148 | - ] ; | 119 | + sp:subject _:b23 |
| 149 | - sp:predicate | ||
| 150 | - [ sp:varName "specificVolumeScale"^^xsd:string | ||
| 151 | - ] ; | ||
| 152 | - sp:subject _:b8 | ||
| 153 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#RecoveredCore> ; | 120 | ] [ sp:object <http://www.reportinghub.no/ep/schema/well#RecoveredCore> ; |
| 154 | sp:predicate rdf:type ; | 121 | sp:predicate rdf:type ; |
| 155 | - sp:subject _:b6 | 122 | + sp:subject _:b19 |
| 156 | - ] [ sp:object | 123 | + ] [ sp:object _:b26 ; |
| 157 | - [ sp:varName "coreDescription"^^xsd:string | ||
| 158 | - ] ; | ||
| 159 | sp:predicate rdfs:comment ; | 124 | sp:predicate rdfs:comment ; |
| 160 | - sp:subject _:b6 | 125 | + sp:subject _:b19 |
| 161 | - ] [ sp:object _:b9 ; | 126 | + ] [ sp:object _:b27 ; |
| 162 | sp:predicate <http://www.reportinghub.no/ep/schema/well#hasBarrel> ; | 127 | sp:predicate <http://www.reportinghub.no/ep/schema/well#hasBarrel> ; |
| 163 | - sp:subject _:b6 | 128 | + sp:subject _:b19 |
| 164 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> ; | 129 | ] [ sp:object <http://www.reportinghub.no/ep/schema/equipment#InnerBarrel> ; |
| 165 | sp:predicate rdf:type ; | 130 | sp:predicate rdf:type ; |
| 166 | - sp:subject _:b9 | 131 | + sp:subject _:b27 |
| 167 | - ] [ sp:object _:b10 ; | 132 | + ] [ sp:object _:b28 ; |
| 168 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#lengthOfInnerBarrel> ; | 133 | sp:predicate <http://www.reportinghub.no/ep/schema/equipment#lengthOfInnerBarrel> ; |
| 169 | - sp:subject _:b9 | 134 | + sp:subject _:b27 |
| 170 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; | 135 | ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Length> ; |
| 171 | sp:predicate rdf:type ; | 136 | sp:predicate rdf:type ; |
| 172 | - sp:subject _:b10 | 137 | + sp:subject _:b28 |
| 173 | - ] [ sp:object | 138 | + ] [ sp:object _:b29 ; |
| 174 | - [ sp:varName "realBarrel"^^xsd:string | 139 | + sp:predicate _:b30 ; |
| 175 | - ] ; | 140 | + sp:subject _:b28 |
| 176 | - sp:predicate | 141 | + ] [ sp:object _:b31 ; |
| 177 | - [ sp:varName "lengthScaleBarrel"^^xsd:string | ||
| 178 | - ] ; | ||
| 179 | - sp:subject _:b10 | ||
| 180 | - ] [ sp:object | ||
| 181 | - [ sp:varName "innerBarrelType"^^xsd:string | ||
| 182 | - ] ; | ||
| 183 | sp:predicate rdf:type ; | 142 | sp:predicate rdf:type ; |
| 184 | - sp:subject _:b9 | 143 | + sp:subject _:b27 |
| 185 | ]) ; | 144 | ]) ; |
| 186 | - sp:where ([ sp:object | 145 | + sp:where ([ sp:object _:b32 ; |
| 187 | - [ sp:varName "nameWellBore"^^xsd:string | ||
| 188 | - ] ; | ||
| 189 | sp:predicate ep-spin-lib:nameWellbore ; | 146 | sp:predicate ep-spin-lib:nameWellbore ; |
| 190 | sp:subject spin:_this | 147 | sp:subject spin:_this |
| 191 | - ] [ sp:object | 148 | + ] [ sp:object _:b33 ; |
| 192 | - [ sp:varName "dTimStart"^^xsd:string | ||
| 193 | - ] ; | ||
| 194 | sp:predicate ddr:dTimStart ; | 149 | sp:predicate ddr:dTimStart ; |
| 195 | sp:subject spin:_this | 150 | sp:subject spin:_this |
| 196 | - ] [ sp:object | 151 | + ] [ sp:object _:b34 ; |
| 197 | - [ sp:varName "dailytemporalPartOfAWellBore"^^xsd:string | ||
| 198 | - ] ; | ||
| 199 | - sp:predicate ep-activity:onWellBore ; | ||
| 200 | - sp:subject | ||
| 201 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | ||
| 202 | - ] | ||
| 203 | - ] [ sp:object | ||
| 204 | - [ sp:varName "coreInfo"^^xsd:string | ||
| 205 | - ] ; | ||
| 206 | sp:predicate ddr:coreInfoRef ; | 152 | sp:predicate ddr:coreInfoRef ; |
| 207 | sp:subject spin:_this | 153 | sp:subject spin:_this |
| 208 | ] [ sp:object | 154 | ] [ sp:object |
| 209 | [ sp:varName "dTimCore"^^xsd:string | 155 | [ sp:varName "dTimCore"^^xsd:string |
| 210 | ] ; | 156 | ] ; |
| 211 | sp:predicate ddr:dTim ; | 157 | sp:predicate ddr:dTim ; |
| 212 | - sp:subject | 158 | + sp:subject _:b34 |
| 213 | - [ sp:varName "coreInfo"^^xsd:string | 159 | + ] [ sp:object _:b6 ; |
| 214 | - ] | ||
| 215 | - ] [ sp:object | ||
| 216 | - [ sp:varName "coreNumber"^^xsd:string | ||
| 217 | - ] ; | ||
| 218 | sp:predicate ddr:coreNumber ; | 160 | sp:predicate ddr:coreNumber ; |
| 219 | - sp:subject | 161 | + sp:subject _:b34 |
| 220 | - [ sp:varName "coreInfo"^^xsd:string | 162 | + ] [ sp:object _:b35 ; |
| 221 | - ] | ||
| 222 | - ] [ sp:object | ||
| 223 | - [ sp:varName "mdTop"^^xsd:string | ||
| 224 | - ] ; | ||
| 225 | sp:predicate ddr:mdTopRef ; | 163 | sp:predicate ddr:mdTopRef ; |
| 226 | - sp:subject | 164 | + sp:subject _:b34 |
| 227 | - [ sp:varName "coreInfo"^^xsd:string | 165 | + ] [ sp:object _:b36 ; |
| 228 | - ] | ||
| 229 | - ] [ sp:object | ||
| 230 | - [ sp:varName "uomMdTop"^^xsd:string | ||
| 231 | - ] ; | ||
| 232 | sp:predicate ddr:uomRef ; | 166 | sp:predicate ddr:uomRef ; |
| 233 | - sp:subject | 167 | + sp:subject _:b35 |
| 234 | - [ sp:varName "mdTop"^^xsd:string | 168 | + ] [ sp:object _:b8 ; |
| 235 | - ] | ||
| 236 | - ] [ sp:object | ||
| 237 | - [ sp:varName "realMdTop"^^xsd:string | ||
| 238 | - ] ; | ||
| 239 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 169 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 240 | - sp:subject | 170 | + sp:subject _:b35 |
| 241 | - [ sp:varName "mdTop"^^xsd:string | 171 | + ] [ sp:object _:b37 ; |
| 242 | - ] | ||
| 243 | - ] [ sp:object | ||
| 244 | - [ sp:varName "mdBottom"^^xsd:string | ||
| 245 | - ] ; | ||
| 246 | sp:predicate ddr:mdBottomRef ; | 172 | sp:predicate ddr:mdBottomRef ; |
| 247 | - sp:subject | 173 | + sp:subject _:b34 |
| 248 | - [ sp:varName "coreInfo"^^xsd:string | 174 | + ] [ sp:object _:b38 ; |
| 249 | - ] | ||
| 250 | - ] [ sp:object | ||
| 251 | - [ sp:varName "uomMdBottom"^^xsd:string | ||
| 252 | - ] ; | ||
| 253 | sp:predicate ddr:uomRef ; | 175 | sp:predicate ddr:uomRef ; |
| 254 | - sp:subject | 176 | + sp:subject _:b37 |
| 255 | - [ sp:varName "mdBottom"^^xsd:string | 177 | + ] [ sp:object _:b11 ; |
| 256 | - ] | ||
| 257 | - ] [ sp:object | ||
| 258 | - [ sp:varName "realMdBottom"^^xsd:string | ||
| 259 | - ] ; | ||
| 260 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 178 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 261 | - sp:subject | 179 | + sp:subject _:b37 |
| 262 | - [ sp:varName "mdBottom"^^xsd:string | ||
| 263 | - ] | ||
| 264 | ] [ rdf:type sp:Optional ; | 180 | ] [ rdf:type sp:Optional ; |
| 265 | - sp:elements ([ sp:object | 181 | + sp:elements ([ sp:object _:b39 ; |
| 266 | - [ sp:varName "tvdTop"^^xsd:string | ||
| 267 | - ] ; | ||
| 268 | sp:predicate ddr:tvdTopRef ; | 182 | sp:predicate ddr:tvdTopRef ; |
| 269 | - sp:subject | 183 | + sp:subject _:b34 |
| 270 | - [ sp:varName "coreInfo"^^xsd:string | 184 | + ] [ sp:object _:b40 ; |
| 271 | - ] | ||
| 272 | - ] [ sp:object | ||
| 273 | - [ sp:varName "uomTvdTop"^^xsd:string | ||
| 274 | - ] ; | ||
| 275 | sp:predicate ddr:uomRef ; | 185 | sp:predicate ddr:uomRef ; |
| 276 | - sp:subject | 186 | + sp:subject _:b39 |
| 277 | - [ sp:varName "tvdTop"^^xsd:string | 187 | + ] [ sp:object _:b14 ; |
| 278 | - ] | ||
| 279 | - ] [ sp:object | ||
| 280 | - [ sp:varName "realTvdTop"^^xsd:string | ||
| 281 | - ] ; | ||
| 282 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 188 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 283 | - sp:subject | 189 | + sp:subject _:b39 |
| 284 | - [ sp:varName "tvdTop"^^xsd:string | ||
| 285 | - ] | ||
| 286 | ]) | 190 | ]) |
| 287 | ] [ rdf:type sp:Optional ; | 191 | ] [ rdf:type sp:Optional ; |
| 288 | - sp:elements ([ sp:object | 192 | + sp:elements ([ sp:object _:b41 ; |
| 289 | - [ sp:varName "tvdBottom"^^xsd:string | ||
| 290 | - ] ; | ||
| 291 | sp:predicate ddr:tvdBottomRef ; | 193 | sp:predicate ddr:tvdBottomRef ; |
| 292 | - sp:subject | 194 | + sp:subject _:b34 |
| 293 | - [ sp:varName "coreInfo"^^xsd:string | 195 | + ] [ sp:object _:b42 ; |
| 294 | - ] | ||
| 295 | - ] [ sp:object | ||
| 296 | - [ sp:varName "uomTvdBottom"^^xsd:string | ||
| 297 | - ] ; | ||
| 298 | sp:predicate ddr:uomRef ; | 196 | sp:predicate ddr:uomRef ; |
| 299 | - sp:subject | 197 | + sp:subject _:b41 |
| 300 | - [ sp:varName "tvdBottom"^^xsd:string | 198 | + ] [ sp:object _:b17 ; |
| 301 | - ] | ||
| 302 | - ] [ sp:object | ||
| 303 | - [ sp:varName "realTvdBottom"^^xsd:string | ||
| 304 | - ] ; | ||
| 305 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 199 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 306 | - sp:subject | 200 | + sp:subject _:b41 |
| 307 | - [ sp:varName "tvdBottom"^^xsd:string | ||
| 308 | - ] | ||
| 309 | ]) | 201 | ]) |
| 310 | - ] [ sp:object | 202 | + ] [ sp:object _:b43 ; |
| 311 | - [ sp:varName "lenRecovered"^^xsd:string | ||
| 312 | - ] ; | ||
| 313 | sp:predicate ddr:lenRecoveredRef ; | 203 | sp:predicate ddr:lenRecoveredRef ; |
| 314 | - sp:subject | 204 | + sp:subject _:b34 |
| 315 | - [ sp:varName "coreInfo"^^xsd:string | 205 | + ] [ sp:object _:b44 ; |
| 316 | - ] | ||
| 317 | - ] [ sp:object | ||
| 318 | - [ sp:varName "uomRecovered"^^xsd:string | ||
| 319 | - ] ; | ||
| 320 | sp:predicate ddr:uomRef ; | 206 | sp:predicate ddr:uomRef ; |
| 321 | - sp:subject | 207 | + sp:subject _:b43 |
| 322 | - [ sp:varName "lenRecovered"^^xsd:string | 208 | + ] [ sp:object _:b21 ; |
| 323 | - ] | ||
| 324 | - ] [ sp:object | ||
| 325 | - [ sp:varName "realRecovered"^^xsd:string | ||
| 326 | - ] ; | ||
| 327 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 209 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 328 | - sp:subject | 210 | + sp:subject _:b43 |
| 329 | - [ sp:varName "lenRecovered"^^xsd:string | 211 | + ] [ sp:object _:b45 ; |
| 330 | - ] | ||
| 331 | - ] [ sp:object | ||
| 332 | - [ sp:varName "recoverPc"^^xsd:string | ||
| 333 | - ] ; | ||
| 334 | sp:predicate ddr:recoverPcRef ; | 212 | sp:predicate ddr:recoverPcRef ; |
| 335 | - sp:subject | 213 | + sp:subject _:b34 |
| 336 | - [ sp:varName "coreInfo"^^xsd:string | 214 | + ] [ sp:object _:b46 ; |
| 337 | - ] | ||
| 338 | - ] [ sp:object | ||
| 339 | - [ sp:varName "uomPc"^^xsd:string | ||
| 340 | - ] ; | ||
| 341 | sp:predicate ddr:uomRef ; | 215 | sp:predicate ddr:uomRef ; |
| 342 | - sp:subject | 216 | + sp:subject _:b45 |
| 343 | - [ sp:varName "recoverPc"^^xsd:string | 217 | + ] [ sp:object _:b24 ; |
| 344 | - ] | ||
| 345 | - ] [ sp:object | ||
| 346 | - [ sp:varName "realPc"^^xsd:string | ||
| 347 | - ] ; | ||
| 348 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 218 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 349 | - sp:subject | 219 | + sp:subject _:b45 |
| 350 | - [ sp:varName "recoverPc"^^xsd:string | 220 | + ] [ sp:object _:b47 ; |
| 351 | - ] | ||
| 352 | - ] [ sp:object | ||
| 353 | - [ sp:varName "lenBarrel"^^xsd:string | ||
| 354 | - ] ; | ||
| 355 | sp:predicate ddr:lenBarrelRef ; | 221 | sp:predicate ddr:lenBarrelRef ; |
| 356 | - sp:subject | 222 | + sp:subject _:b34 |
| 357 | - [ sp:varName "coreInfo"^^xsd:string | 223 | + ] [ sp:object _:b48 ; |
| 358 | - ] | ||
| 359 | - ] [ sp:object | ||
| 360 | - [ sp:varName "uomBarrel"^^xsd:string | ||
| 361 | - ] ; | ||
| 362 | sp:predicate ddr:uomRef ; | 224 | sp:predicate ddr:uomRef ; |
| 363 | - sp:subject | 225 | + sp:subject _:b47 |
| 364 | - [ sp:varName "lenBarrel"^^xsd:string | 226 | + ] [ sp:object _:b29 ; |
| 365 | - ] | ||
| 366 | - ] [ sp:object | ||
| 367 | - [ sp:varName "realBarrel"^^xsd:string | ||
| 368 | - ] ; | ||
| 369 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; | 227 | sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; |
| 370 | - sp:subject | 228 | + sp:subject _:b47 |
| 371 | - [ sp:varName "lenBarrel"^^xsd:string | ||
| 372 | - ] | ||
| 373 | ] [ rdf:type sp:Optional ; | 229 | ] [ rdf:type sp:Optional ; |
| 374 | - sp:elements ([ sp:object | 230 | + sp:elements ([ sp:object _:b49 ; |
| 375 | - [ sp:varName "enumInnerBarrelType"^^xsd:string | ||
| 376 | - ] ; | ||
| 377 | sp:predicate ddr:innerBarrelTypeRef ; | 231 | sp:predicate ddr:innerBarrelTypeRef ; |
| 378 | - sp:subject | 232 | + sp:subject _:b34 |
| 379 | - [ sp:varName "coreInfo"^^xsd:string | ||
| 380 | - ] | ||
| 381 | ]) | 233 | ]) |
| 382 | - ] [ sp:object | 234 | + ] [ sp:object _:b26 ; |
| 383 | - [ sp:varName "coreDescription"^^xsd:string | ||
| 384 | - ] ; | ||
| 385 | sp:predicate ddr:coreDescription ; | 235 | sp:predicate ddr:coreDescription ; |
| 386 | - sp:subject | 236 | + sp:subject _:b34 |
| 387 | - [ sp:varName "coreInfo"^^xsd:string | ||
| 388 | - ] | ||
| 389 | ] [ rdf:type sp:Bind ; | 237 | ] [ rdf:type sp:Bind ; |
| 390 | sp:expression | 238 | sp:expression |
| 391 | [ rdf:type ep-spin-lib:normalizeString ; | 239 | [ rdf:type ep-spin-lib:normalizeString ; |
| 392 | - sp:arg1 [ sp:varName "nameWellBore"^^xsd:string | 240 | + sp:arg1 _:b32 |
| 393 | - ] | ||
| 394 | ] ; | 241 | ] ; |
| 395 | - sp:variable | 242 | + sp:variable _:b50 |
| 396 | - [ sp:varName "normalizedWellBoreName"^^xsd:string | ||
| 397 | - ] | ||
| 398 | ] [ rdf:type sp:Bind ; | 243 | ] [ rdf:type sp:Bind ; |
| 399 | sp:expression | 244 | sp:expression |
| 400 | [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; | 245 | [ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ; |
| 401 | - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string | 246 | + sp:arg1 _:b50 ; |
| 402 | - ] ; | 247 | + sp:arg2 _:b33 |
| 403 | - sp:arg2 [ sp:varName "dTimStart"^^xsd:string | ||
| 404 | - ] | ||
| 405 | ] ; | 248 | ] ; |
| 406 | - sp:variable | 249 | + sp:variable _:b2 |
| 407 | - [ sp:varName "dailyDrillingActivity"^^xsd:string | ||
| 408 | - ] | ||
| 409 | ] [ rdf:type sp:Bind ; | 250 | ] [ rdf:type sp:Bind ; |
| 410 | sp:expression | 251 | sp:expression |
| 411 | [ rdf:type afn:localname ; | 252 | [ rdf:type afn:localname ; |
| 412 | - sp:arg1 [ sp:varName "coreInfo"^^xsd:string | 253 | + sp:arg1 _:b34 |
| 413 | - ] | ||
| 414 | ] ; | 254 | ] ; |
| 415 | - sp:variable | 255 | + sp:variable _:b51 |
| 416 | - [ sp:varName "localname"^^xsd:string | ||
| 417 | - ] | ||
| 418 | ] [ rdf:type sp:Bind ; | 256 | ] [ rdf:type sp:Bind ; |
| 419 | sp:expression | 257 | sp:expression |
| 420 | [ rdf:type ep-spin-lib:buildExtractAWellCoreURI ; | 258 | [ rdf:type ep-spin-lib:buildExtractAWellCoreURI ; |
| 421 | - sp:arg1 [ sp:varName "normalizedWellBoreName"^^xsd:string | 259 | + sp:arg1 _:b50 ; |
| 422 | - ] ; | 260 | + sp:arg2 _:b33 ; |
| 423 | - sp:arg2 [ sp:varName "dTimStart"^^xsd:string | 261 | + sp:arg3 _:b51 |
| 424 | - ] ; | ||
| 425 | - sp:arg3 [ sp:varName "localname"^^xsd:string | ||
| 426 | - ] | ||
| 427 | ] ; | 262 | ] ; |
| 428 | - sp:variable | 263 | + sp:variable _:b1 |
| 429 | - [ sp:varName "extractAWellCore"^^xsd:string | ||
| 430 | - ] | ||
| 431 | ] [ rdf:type sp:Bind ; | 264 | ] [ rdf:type sp:Bind ; |
| 432 | sp:expression | 265 | sp:expression |
| 433 | [ rdf:type ep-spin-lib:selectInnerBarrelType ; | 266 | [ rdf:type ep-spin-lib:selectInnerBarrelType ; |
| 434 | - sp:arg1 [ sp:varName "enumInnerBarrelType"^^xsd:string | 267 | + sp:arg1 _:b49 |
| 435 | - ] | ||
| 436 | ] ; | 268 | ] ; |
| 437 | - sp:variable | 269 | + sp:variable _:b31 |
| 438 | - [ sp:varName "innerBarrelType"^^xsd:string | ||
| 439 | - ] | ||
| 440 | ] [ rdf:type sp:Bind ; | 270 | ] [ rdf:type sp:Bind ; |
| 441 | sp:expression | 271 | sp:expression |
| 442 | [ rdf:type ep-spin-lib:selectLengthScale ; | 272 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 443 | - sp:arg1 [ sp:varName "uomMdTop"^^xsd:string | 273 | + sp:arg1 _:b36 |
| 444 | - ] | ||
| 445 | ] ; | 274 | ] ; |
| 446 | - sp:variable | 275 | + sp:variable _:b9 |
| 447 | - [ sp:varName "lengthScaleMdTop"^^xsd:string | ||
| 448 | - ] | ||
| 449 | ] [ rdf:type sp:Bind ; | 276 | ] [ rdf:type sp:Bind ; |
| 450 | sp:expression | 277 | sp:expression |
| 451 | [ rdf:type ep-spin-lib:selectLengthScale ; | 278 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 452 | - sp:arg1 [ sp:varName "uomMdBottom"^^xsd:string | 279 | + sp:arg1 _:b38 |
| 453 | - ] | ||
| 454 | ] ; | 280 | ] ; |
| 455 | - sp:variable | 281 | + sp:variable _:b12 |
| 456 | - [ sp:varName "lengthScaleMdBottom"^^xsd:string | ||
| 457 | - ] | ||
| 458 | ] [ rdf:type sp:Bind ; | 282 | ] [ rdf:type sp:Bind ; |
| 459 | sp:expression | 283 | sp:expression |
| 460 | [ rdf:type ep-spin-lib:selectLengthScale ; | 284 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 461 | - sp:arg1 [ sp:varName "uomTvdTop"^^xsd:string | 285 | + sp:arg1 _:b40 |
| 462 | - ] | ||
| 463 | ] ; | 286 | ] ; |
| 464 | - sp:variable | 287 | + sp:variable _:b15 |
| 465 | - [ sp:varName "lengthScaleTvdTop"^^xsd:string | ||
| 466 | - ] | ||
| 467 | ] [ rdf:type sp:Bind ; | 288 | ] [ rdf:type sp:Bind ; |
| 468 | sp:expression | 289 | sp:expression |
| 469 | [ rdf:type ep-spin-lib:selectLengthScale ; | 290 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 470 | - sp:arg1 [ sp:varName "uomTvdBottom"^^xsd:string | 291 | + sp:arg1 _:b42 |
| 471 | - ] | ||
| 472 | ] ; | 292 | ] ; |
| 473 | - sp:variable | 293 | + sp:variable _:b18 |
| 474 | - [ sp:varName "lengthScaleTvdBottom"^^xsd:string | ||
| 475 | - ] | ||
| 476 | ] [ rdf:type sp:Bind ; | 294 | ] [ rdf:type sp:Bind ; |
| 477 | sp:expression | 295 | sp:expression |
| 478 | [ rdf:type ep-spin-lib:selectLengthScale ; | 296 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 479 | - sp:arg1 [ sp:varName "uomRecovered"^^xsd:string | 297 | + sp:arg1 _:b44 |
| 480 | - ] | ||
| 481 | ] ; | 298 | ] ; |
| 482 | - sp:variable | 299 | + sp:variable _:b22 |
| 483 | - [ sp:varName "lengthScaleRecovered"^^xsd:string | ||
| 484 | - ] | ||
| 485 | ] [ rdf:type sp:Bind ; | 300 | ] [ rdf:type sp:Bind ; |
| 486 | sp:expression | 301 | sp:expression |
| 487 | [ rdf:type ep-spin-lib:selectLengthScale ; | 302 | [ rdf:type ep-spin-lib:selectLengthScale ; |
| 488 | - sp:arg1 [ sp:varName "uomBarrel"^^xsd:string | 303 | + sp:arg1 _:b48 |
| 489 | - ] | ||
| 490 | ] ; | 304 | ] ; |
| 491 | - sp:variable | 305 | + sp:variable _:b30 |
| 492 | - [ sp:varName "lengthScaleBarrel"^^xsd:string | ||
| 493 | - ] | ||
| 494 | ] [ rdf:type sp:Bind ; | 306 | ] [ rdf:type sp:Bind ; |
| 495 | sp:expression | 307 | sp:expression |
| 496 | [ rdf:type ep-spin-lib:selectSpecificVolumeScale ; | 308 | [ rdf:type ep-spin-lib:selectSpecificVolumeScale ; |
| 497 | - sp:arg1 [ sp:varName "uomPc"^^xsd:string | 309 | + sp:arg1 _:b46 |
| 310 | + ] ; | ||
| 311 | + sp:variable _:b25 | ||
| 312 | + ] [ rdf:type sp:Bind ; | ||
| 313 | + sp:expression | ||
| 314 | + [ rdf:type rhspin:wellBoreByName ; | ||
| 315 | + arg:wellBoreName | ||
| 316 | + [ rdf:type xsd:string ; | ||
| 317 | + sp:arg1 _:b32 | ||
| 498 | ] | 318 | ] |
| 499 | ] ; | 319 | ] ; |
| 500 | - sp:variable | 320 | + sp:variable _:b5 |
| 501 | - [ sp:varName "specificVolumeScale"^^xsd:string | ||
| 502 | - ] | ||
| 503 | ]) | 321 | ]) |
| 504 | ] . | 322 | ] . |
| 323 | + | ||
| 324 | +_:b32 | ||
| 325 | + sp:varName "nameWellBore"^^xsd:string . | ||
| 326 | + | ||
| 327 | +_:b33 | ||
| 328 | + sp:varName "dTimStart"^^xsd:string . | ||
| 329 | + | ||
| 330 | +_:b34 | ||
| 331 | + sp:varName "coreInfo"^^xsd:string . | ||
| 332 | + | ||
| 333 | +_:b6 sp:varName "coreNumber"^^xsd:string . | ||
| 334 | + | ||
| 335 | +_:b35 | ||
| 336 | + sp:varName "mdTop"^^xsd:string . | ||
| 337 | + | ||
| 338 | +_:b36 | ||
| 339 | + sp:varName "uomMdTop"^^xsd:string . | ||
| 340 | + | ||
| 341 | +_:b8 sp:varName "realMdTop"^^xsd:string . | ||
| 342 | + | ||
| 343 | +_:b37 | ||
| 344 | + sp:varName "mdBottom"^^xsd:string . | ||
| 345 | + | ||
| 346 | +_:b38 | ||
| 347 | + sp:varName "uomMdBottom"^^xsd:string . | ||
| 348 | + | ||
| 349 | +_:b11 | ||
| 350 | + sp:varName "realMdBottom"^^xsd:string . | ||
| 351 | + | ||
| 352 | +_:b39 | ||
| 353 | + sp:varName "tvdTop"^^xsd:string . | ||
| 354 | + | ||
| 355 | +_:b40 | ||
| 356 | + sp:varName "uomTvdTop"^^xsd:string . | ||
| 357 | + | ||
| 358 | +_:b14 | ||
| 359 | + sp:varName "realTvdTop"^^xsd:string . | ||
| 360 | + | ||
| 361 | +_:b41 | ||
| 362 | + sp:varName "tvdBottom"^^xsd:string . | ||
| 363 | + | ||
| 364 | +_:b42 | ||
| 365 | + sp:varName "uomTvdBottom"^^xsd:string . | ||
| 366 | + | ||
| 367 | +_:b17 | ||
| 368 | + sp:varName "realTvdBottom"^^xsd:string . | ||
| 369 | + | ||
| 370 | +_:b43 | ||
| 371 | + sp:varName "lenRecovered"^^xsd:string . | ||
| 372 | + | ||
| 373 | +_:b44 | ||
| 374 | + sp:varName "uomRecovered"^^xsd:string . | ||
| 375 | + | ||
| 376 | +_:b21 | ||
| 377 | + sp:varName "realRecovered"^^xsd:string . | ||
| 378 | + | ||
| 379 | +_:b45 | ||
| 380 | + sp:varName "recoverPc"^^xsd:string . | ||
| 381 | + | ||
| 382 | +_:b46 | ||
| 383 | + sp:varName "uomPc"^^xsd:string . | ||
| 384 | + | ||
| 385 | +_:b24 | ||
| 386 | + sp:varName "realPc"^^xsd:string . | ||
| 387 | + | ||
| 388 | +_:b47 | ||
| 389 | + sp:varName "lenBarrel"^^xsd:string . | ||
| 390 | + | ||
| 391 | +_:b48 | ||
| 392 | + sp:varName "uomBarrel"^^xsd:string . | ||
| 393 | + | ||
| 394 | +_:b29 | ||
| 395 | + sp:varName "realBarrel"^^xsd:string . | ||
| 396 | + | ||
| 397 | +_:b49 | ||
| 398 | + sp:varName "enumInnerBarrelType"^^xsd:string . | ||
| 399 | + | ||
| 400 | +_:b26 | ||
| 401 | + sp:varName "coreDescription"^^xsd:string . | ||
| 402 | + | ||
| 403 | +_:b50 | ||
| 404 | + sp:varName "normalizedWellBoreName"^^xsd:string . | ||
| 405 | + | ||
| 406 | +_:b2 sp:varName "dailyDrillingActivity"^^xsd:string . | ||
| 407 | + | ||
| 408 | +_:b51 | ||
| 409 | + sp:varName "localname"^^xsd:string . | ||
| 410 | + | ||
| 411 | +_:b1 sp:varName "extractAWellCore"^^xsd:string . | ||
| 412 | + | ||
| 413 | +_:b31 | ||
| 414 | + sp:varName "innerBarrelType"^^xsd:string . | ||
| 415 | + | ||
| 416 | +_:b9 sp:varName "lengthScaleMdTop"^^xsd:string . | ||
| 417 | + | ||
| 418 | +_:b12 | ||
| 419 | + sp:varName "lengthScaleMdBottom"^^xsd:string . | ||
| 420 | + | ||
| 421 | +_:b15 | ||
| 422 | + sp:varName "lengthScaleTvdTop"^^xsd:string . | ||
| 423 | + | ||
| 424 | +_:b18 | ||
| 425 | + sp:varName "lengthScaleTvdBottom"^^xsd:string . | ||
| 426 | + | ||
| 427 | +_:b22 | ||
| 428 | + sp:varName "lengthScaleRecovered"^^xsd:string . | ||
| 429 | + | ||
| 430 | +_:b30 | ||
| 431 | + sp:varName "lengthScaleBarrel"^^xsd:string . | ||
| 432 | + | ||
| 433 | +_:b25 | ||
| 434 | + sp:varName "specificVolumeScale"^^xsd:string . | ||
| 435 | + | ||
| 436 | +_:b5 sp:varName "wellBore"^^xsd:string . | ... | ... |
This diff could not be displayed because it is too large.
| ... | @@ -40,8 +40,8 @@ | ... | @@ -40,8 +40,8 @@ |
| 40 | <rhswp:NameValuePair arg:name="Penetration Rate m/h:" arg:value="{# SELECT ?penRateVal WHERE {?statusActivity ep-activity:finalRateOfDrilling ?penRate . ?penRate ep-core:metre_hour-1 ?penRateVal}}" /> | 40 | <rhswp:NameValuePair arg:name="Penetration Rate m/h:" arg:value="{# SELECT ?penRateVal WHERE {?statusActivity ep-activity:finalRateOfDrilling ?penRate . ?penRate ep-core:metre_hour-1 ?penRateVal}}" /> |
| 41 | <rhswp:NameValuePair arg:name="Pressure Test Type:" arg:value="{# SELECT ?pTestActTypeText WHERE {?statusActivity ep-core:hasPart ?pTestAct . ?pTestAct a ?pTestActType . ?pTestActType rdfs:subClassOf ep-activity:WellBorePressureTest . ?pTestActType rdfs:label ?pTestActTypeText}}" /> | 41 | <rhswp:NameValuePair arg:name="Pressure Test Type:" arg:value="{# SELECT ?pTestActTypeText WHERE {?statusActivity ep-core:hasPart ?pTestAct . ?pTestAct a ?pTestActType . ?pTestActType rdfs:subClassOf ep-activity:WellBorePressureTest . ?pTestActType rdfs:label ?pTestActTypeText}}" /> |
| 42 | <rhswp:NameValuePair arg:name="Depth At Formation Strength mMD:" arg:value="{# SELECT ?rockFormDepthMmdVal WHERE {?statusActivityWb ep-core:hasPart ?rockFormation . ?rockFormation a ep-well:SurroundingRockFormation . ?rockFormation ep-well:measuredDepth ?rockFormDepthMmd . ?rockFormDepthMmd ep-core:metre ?rockFormDepthMmdVal}}" /> | 42 | <rhswp:NameValuePair arg:name="Depth At Formation Strength mMD:" arg:value="{# SELECT ?rockFormDepthMmdVal WHERE {?statusActivityWb ep-core:hasPart ?rockFormation . ?rockFormation a ep-well:SurroundingRockFormation . ?rockFormation ep-well:measuredDepth ?rockFormDepthMmd . ?rockFormDepthMmd ep-core:metre ?rockFormDepthMmdVal}}" /> |
| 43 | - <rhswp:NameValuePair arg:name="Dia Last Casing In:" arg:value="{# SELECT ?lastCasingDiaVal WHERE {?statusActivityWb ep-core:hasPart ?lastCasing . ?lastCasing a ep-eqt:LastCasingOfAWellBore . ?lastCasing ep-eqt:outsideDiameterOfATubular ?lastCasingDia . ?lastCasingDia ep-core:inch ?lastCasingDiaVal}}" /> | 43 | + <rhswp:NameValuePair arg:name="Dia Last Casing In:" arg:value="{# SELECT ?lastCasingDiaVal WHERE {?statusActivityWb ep-core:hasPart ?lastCasing . ?lastCasing a ep-eqt:LastCasingOfAWellBore . ?lastCasing ep-core:temporalPartOf ?casing . ?casing a ?pipeOutsideDiameterAPI_5CTClass . ?pipeOutsideDiameterAPI_5CTClass a ep-eqt:PipeOutsideDiameterAPI_5CTClass . ?pipeOutsideDiameterAPI_5CTClass rdfs:label ?lastCasingDiaVal}}" /> |
| 44 | - <rhswp:NameValuePair arg:name="Depth At Last Casing MTVD:" arg:value="{# SELECT ?lastCasingDepthTvdVal WHERE {?statusActivityWb ep-core:hasPart ?lastCasing . ?lastCasing a ep-eqt:LastCasingOfAWellBore . ?lastCasing ep-well:trueVerticalDepth ?lastCasingDepthTvd . ?lastCasingDepthTvd ep-core:metre ?lastCasingDepthTvdVal}}" /> | 44 | + <rhswp:NameValuePair arg:name="Depth At Last Casing MTVD:" arg:value="{# SELECT ?lastCasingDepthTvdVal WHERE {?statusActivityWb ep-core:hasPart ?lastCasing . ?lastCasing a ep-eqt:LastCasingOfAWellBore . ?lastCasing ep-core:temporalPartOf ?casing . ?casing ep-well:trueVerticalDepthToTheBottomOfAPartOfAWellBore ?lastCasingDepthTvd . ?lastCasingDepthTvd ep-core:metre ?lastCasingDepthTvdVal}}" /> |
| 45 | </td> | 45 | </td> |
| 46 | <td class="ddrSummaryRight"> | 46 | <td class="ddrSummaryRight"> |
| 47 | 47 | ||
| ... | @@ -61,10 +61,10 @@ | ... | @@ -61,10 +61,10 @@ |
| 61 | <rhswp:NameValuePair arg:name="Depth mMD:" arg:value="{# SELECT ?buttHoleMDVal WHERE {?statusActivityWb ep-well:finalBottomHoleMeasuredDepth ?buttHoleMD . ?buttHoleMD ep-core:metre ?buttHoleMDVal}}" /> | 61 | <rhswp:NameValuePair arg:name="Depth mMD:" arg:value="{# SELECT ?buttHoleMDVal WHERE {?statusActivityWb ep-well:finalBottomHoleMeasuredDepth ?buttHoleMD . ?buttHoleMD ep-core:metre ?buttHoleMDVal}}" /> |
| 62 | <rhswp:NameValuePair arg:name="Depth mTVD:" arg:value="{# SELECT ?buttHoleTVDVal WHERE {?statusActivityWb ep-well:finalBottomHoleTrueVerticalDepth ?buttHoleTVD . ?buttHoleTVD ep-core:metre ?buttHoleTVDVal}}" /> | 62 | <rhswp:NameValuePair arg:name="Depth mTVD:" arg:value="{# SELECT ?buttHoleTVDVal WHERE {?statusActivityWb ep-well:finalBottomHoleTrueVerticalDepth ?buttHoleTVD . ?buttHoleTVD ep-core:metre ?buttHoleTVDVal}}" /> |
| 63 | <rhswp:NameValuePair arg:name="Dist Drilled m:" arg:value="{# SELECT ?distDrilledVal WHERE {?statusActivity ep-activity:distanceDrilled ?distDrilled . ?distDrilled ep-core:metre ?distDrilledVal}}" /> | 63 | <rhswp:NameValuePair arg:name="Dist Drilled m:" arg:value="{# SELECT ?distDrilledVal WHERE {?statusActivity ep-activity:distanceDrilled ?distDrilled . ?distDrilled ep-core:metre ?distDrilledVal}}" /> |
| 64 | - <rhswp:NameValuePair arg:name="Hole Dia in:" arg:value="{# SELECT ?holeDiaVal WHERE {?statusActivityWb ep-core:hasPart ?lowerPartWb . ?lowerPartWb a ep-well:LowerPartOfAWellBore . ?lowerPartWb ep-well:nominalInsideDiameterOfBoreHole ?holeDia . ?holeDia ep-core:inch ?holeDiaVal}}" /> | 64 | + <rhswp:NameValuePair arg:name="Hole Dia in:" arg:value="{# SELECT ?holeDiaVal WHERE {?lowerPartWb ep-core:spatialPartOf ?statusActivityWb . ?lowerPartWb a ep-well:LowerPartOfAWellBore . ?lowerPartWb ep-core:temporalPartOf ?partOfAWellBoreSizeSection . ?partOfAWellBoreSizeSection ep-core:spatialPartOf ?wellBoreSizeSection . ?wellBoreSizeSection a ?wellBoreSizeClass . ?wellBoreSizeClass a ep-well:ClassOfWellBoreSectionBySize . ?wellBoreSizeClass rdfs:label ?holeDiaVal }}" /> |
| 65 | <rhswp:NameValuePair arg:name="Formation Strength g/cm3:" arg:value="{# SELECT ?rockFormStrengthVal WHERE {?statusActivityWb ep-core:hasPart ?rockFormation . ?rockFormation a ep-well:SurroundingRockFormation . ?rockFormation ep-well:strengthOfRockFormation ?rockFormStrength . ?rockFormStrength ep-core:gram_cm-3 ?rockFormStrengthVal}}" /> | 65 | <rhswp:NameValuePair arg:name="Formation Strength g/cm3:" arg:value="{# SELECT ?rockFormStrengthVal WHERE {?statusActivityWb ep-core:hasPart ?rockFormation . ?rockFormation a ep-well:SurroundingRockFormation . ?rockFormation ep-well:strengthOfRockFormation ?rockFormStrength . ?rockFormStrength ep-core:gram_cm-3 ?rockFormStrengthVal}}" /> |
| 66 | <rhswp:NameValuePair arg:name="Depth At Formation Strength mTVD:" arg:value="{# SELECT ?rockFormDepthTvdVal WHERE {?statusActivityWb ep-core:hasPart ?rockFormation . ?rockFormation a ep-well:SurroundingRockFormation . ?rockFormation ep-well:trueVerticalDepth ?rockFormDepthTvd . ?rockFormDepthTvd ep-core:metre ?rockFormDepthTvdVal}}" /> | 66 | <rhswp:NameValuePair arg:name="Depth At Formation Strength mTVD:" arg:value="{# SELECT ?rockFormDepthTvdVal WHERE {?statusActivityWb ep-core:hasPart ?rockFormation . ?rockFormation a ep-well:SurroundingRockFormation . ?rockFormation ep-well:trueVerticalDepth ?rockFormDepthTvd . ?rockFormDepthTvd ep-core:metre ?rockFormDepthTvdVal}}" /> |
| 67 | - <rhswp:NameValuePair arg:name="Depth At Last Casing mMD:" arg:value="{# SELECT ?lastCasingDepthMmdVal WHERE {?statusActivityWb ep-core:hasPart ?lastCasing . ?lastCasing a ep-eqt:LastCasingOfAWellBore . ?lastCasing ep-well:measuredDepth ?lastCasingDepthMmd . ?lastCasingDepthMmd ep-core:metre ?lastCasingDepthMmdVal}}" /> | 67 | + <rhswp:NameValuePair arg:name="Depth At Last Casing mMD:" arg:value="{# SELECT ?lastCasingDepthMmdVal WHERE {?statusActivityWb ep-core:hasPart ?lastCasing . ?lastCasing a ep-eqt:LastCasingOfAWellBore . ?lastCasing ep-core:temporalPartOf ?casing . ?casing ep-well:measuredDepthToTheBottomOfAPartOfAWellBore ?lastCasingDepthMmd . ?lastCasingDepthMmd ep-core:metre ?lastCasingDepthMmdVal}}" /> |
| 68 | </td> | 68 | </td> |
| 69 | </tr></table> | 69 | </tr></table> |
| 70 | <hr /> | 70 | <hr /> | ... | ... |
-
Please register or login to post a comment