David Leal

Tidying of MPR schemas (and a very minor change to DDR core, equipment and well …

…- moving classes between schemas without changing namespace).
...@@ -505,3 +505,9 @@ ep-core:week ...@@ -505,3 +505,9 @@ ep-core:week
505 rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; 505 rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
506 rdfs:domain ep-core:TimeDuration ; 506 rdfs:domain ep-core:TimeDuration ;
507 rdfs:label "week"^^xsd:string . 507 rdfs:label "week"^^xsd:string .
508 +
509 +ep-core:Mass
510 + rdf:type ep-core:PropertySpace , rdfs:Class ;
511 + rdfs:label "mass"^^xsd:string ;
512 + rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial .
513 +
......
...@@ -19,6 +19,9 @@ ...@@ -19,6 +19,9 @@
19 ep-core:PhysicalThing 19 ep-core:PhysicalThing
20 rdfs:comment "Equivalent to ISO 15926-2 Possible Individual - DL"^^xsd:string . 20 rdfs:comment "Equivalent to ISO 15926-2 Possible Individual - DL"^^xsd:string .
21 21
22 +ep-eqt:Equipment
23 + rdfs:subClassOf ep-core:PhysicalObject .
24 +
22 ep-eqt:BlowOutPreventer 25 ep-eqt:BlowOutPreventer
23 rdf:type owl:Class ; 26 rdf:type owl:Class ;
24 rdfs:label "blow out preventer"^^xsd:string ; 27 rdfs:label "blow out preventer"^^xsd:string ;
......
...@@ -10,8 +10,6 @@ ...@@ -10,8 +10,6 @@
10 @prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> . 10 @prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> .
11 @prefix ep-prodact: <http://www.reportinghub.no/ep/schema/production-activity#> . 11 @prefix ep-prodact: <http://www.reportinghub.no/ep/schema/production-activity#> .
12 @prefix ep-prodcore: <http://www.reportinghub.no/ep/schema/production-core#> . 12 @prefix ep-prodcore: <http://www.reportinghub.no/ep/schema/production-core#> .
13 -@prefix ep-prodwell: <http://www.reportinghub.no/ep/schema/production-well#> .
14 -@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> .
15 @prefix owl: <http://www.w3.org/2002/07/owl#> . 13 @prefix owl: <http://www.w3.org/2002/07/owl#> .
16 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 14 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
17 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 15 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
...@@ -19,16 +17,16 @@ ...@@ -19,16 +17,16 @@
19 17
20 <http://www.reportinghub.no/ep/schema/1.0/flow> 18 <http://www.reportinghub.no/ep/schema/1.0/flow>
21 rdf:type owl:Ontology ; 19 rdf:type owl:Ontology ;
22 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/production-core> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> ; 20 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.reportinghub.no/ep/schema/1.0/production-core> , <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/facility> ;
23 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 21 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
24 22
25 ep-flow:AllocatedFlow 23 ep-flow:AllocatedFlow
26 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 24 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
27 rdfs:label "allocated flow"^^xsd:string ; 25 rdfs:label "allocated flow"^^xsd:string ;
28 rdfs:subClassOf ep-flow:WholeLifeFlow . 26 rdfs:subClassOf ep-flow:WholeLifeFlow .
29 27
30 ep-flow:BudgetFlow 28 ep-flow:BudgetFlow
31 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 29 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
32 rdfs:label "budget flow"^^xsd:string ; 30 rdfs:label "budget flow"^^xsd:string ;
33 rdfs:subClassOf ep-flow:WholeLifeFlow . 31 rdfs:subClassOf ep-flow:WholeLifeFlow .
34 32
...@@ -37,83 +35,73 @@ ep-flow:ClassOfMaterialWithMassCriterion ...@@ -37,83 +35,73 @@ ep-flow:ClassOfMaterialWithMassCriterion
37 rdfs:label "class of material with mass criterion"^^xsd:string ; 35 rdfs:label "class of material with mass criterion"^^xsd:string ;
38 rdfs:subClassOf owl:Class . 36 rdfs:subClassOf owl:Class .
39 37
40 -ep-flow:Condensate-grossFlow
41 - rdf:type ep-flow:ProductMaterialType , owl:Class ;
42 - rdfs:label "condensate - gross flow"^^xsd:string ;
43 - rdfs:subClassOf ep-flow:WholeLifeFlow .
44 -
45 -ep-flow:Condensate-netFlow
46 - rdf:type ep-flow:ProductMaterialType , owl:Class ;
47 - rdfs:label "condensate - net flow"^^xsd:string ;
48 - rdfs:subClassOf ep-flow:WholeLifeFlow .
49 -
50 ep-flow:ConstraintFlow 38 ep-flow:ConstraintFlow
51 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 39 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
52 rdfs:label "constraint flow"^^xsd:string ; 40 rdfs:label "constraint flow"^^xsd:string ;
53 rdfs:subClassOf ep-flow:WholeLifeFlow . 41 rdfs:subClassOf ep-flow:WholeLifeFlow .
54 42
55 ep-flow:ConstraintFlow-fixed 43 ep-flow:ConstraintFlow-fixed
56 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 44 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
57 rdfs:label "constraint flow - fixed"^^xsd:string ; 45 rdfs:label "constraint flow - fixed"^^xsd:string ;
58 rdfs:subClassOf ep-flow:ConstraintFlow . 46 rdfs:subClassOf ep-flow:ConstraintFlow .
59 47
60 ep-flow:ConstraintFlow-maximum 48 ep-flow:ConstraintFlow-maximum
61 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 49 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
62 rdfs:label "constraint flow - maximum"^^xsd:string ; 50 rdfs:label "constraint flow - maximum"^^xsd:string ;
63 rdfs:subClassOf ep-flow:ConstraintFlow . 51 rdfs:subClassOf ep-flow:ConstraintFlow .
64 52
65 ep-flow:ConstraintFlow-minimum 53 ep-flow:ConstraintFlow-minimum
66 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 54 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
67 rdfs:label "constraint flow - minimum"^^xsd:string ; 55 rdfs:label "constraint flow - minimum"^^xsd:string ;
68 rdfs:subClassOf ep-flow:ConstraintFlow . 56 rdfs:subClassOf ep-flow:ConstraintFlow .
69 57
70 ep-flow:Consume 58 ep-flow:Consume
71 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 59 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
72 rdfs:label "consume"^^xsd:string ; 60 rdfs:label "consume"^^xsd:string ;
73 rdfs:subClassOf ep-flow:WholeLifeFlow . 61 rdfs:subClassOf ep-flow:WholeLifeFlow .
74 62
75 ep-flow:Consume-HPflare 63 ep-flow:Consume-HPflare
76 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 64 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
77 rdfs:label "consume - HP flare"^^xsd:string ; 65 rdfs:label "consume - HP flare"^^xsd:string ;
78 rdfs:subClassOf ep-flow:Consume-flare . 66 rdfs:subClassOf ep-flow:Consume-flare .
79 67
80 ep-flow:Consume-LPflare 68 ep-flow:Consume-LPflare
81 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 69 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
82 rdfs:label "consume - LP flare"^^xsd:string ; 70 rdfs:label "consume - LP flare"^^xsd:string ;
83 rdfs:subClassOf ep-flow:Consume-flare . 71 rdfs:subClassOf ep-flow:Consume-flare .
84 72
85 ep-flow:Consume-blackstart 73 ep-flow:Consume-blackstart
86 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 74 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
87 rdfs:label "consume - blackstart"^^xsd:string ; 75 rdfs:label "consume - blackstart"^^xsd:string ;
88 rdfs:subClassOf ep-flow:Consume . 76 rdfs:subClassOf ep-flow:Consume .
89 77
90 ep-flow:Consume-compressor 78 ep-flow:Consume-compressor
91 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 79 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
92 rdfs:label "consume - compressor"^^xsd:string ; 80 rdfs:label "consume - compressor"^^xsd:string ;
93 rdfs:subClassOf ep-flow:Consume . 81 rdfs:subClassOf ep-flow:Consume .
94 82
95 ep-flow:Consume-emitted 83 ep-flow:Consume-emitted
96 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 84 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
97 rdfs:label "consume - emitted"^^xsd:string ; 85 rdfs:label "consume - emitted"^^xsd:string ;
98 rdfs:subClassOf ep-flow:Consume . 86 rdfs:subClassOf ep-flow:Consume .
99 87
100 ep-flow:Consume-flare 88 ep-flow:Consume-flare
101 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 89 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
102 rdfs:label "consume - flare"^^xsd:string ; 90 rdfs:label "consume - flare"^^xsd:string ;
103 rdfs:subClassOf ep-flow:Consume . 91 rdfs:subClassOf ep-flow:Consume .
104 92
105 ep-flow:Consume-fuel 93 ep-flow:Consume-fuel
106 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 94 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
107 rdfs:label "consume - fuel"^^xsd:string ; 95 rdfs:label "consume - fuel"^^xsd:string ;
108 rdfs:subClassOf ep-flow:Consume . 96 rdfs:subClassOf ep-flow:Consume .
109 97
110 ep-flow:Consume-noncompressor 98 ep-flow:Consume-noncompressor
111 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 99 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
112 rdfs:label "consume - non-compressor"^^xsd:string ; 100 rdfs:label "consume - non-compressor"^^xsd:string ;
113 rdfs:subClassOf ep-flow:Consume . 101 rdfs:subClassOf ep-flow:Consume .
114 102
115 ep-flow:Consume-venting 103 ep-flow:Consume-venting
116 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 104 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
117 rdfs:label "consume - venting"^^xsd:string ; 105 rdfs:label "consume - venting"^^xsd:string ;
118 rdfs:subClassOf ep-flow:Consume . 106 rdfs:subClassOf ep-flow:Consume .
119 107
...@@ -123,17 +111,17 @@ ep-flow:DailyProductionFlow ...@@ -123,17 +111,17 @@ ep-flow:DailyProductionFlow
123 rdfs:subClassOf ep-flow:ProductionFlow . 111 rdfs:subClassOf ep-flow:ProductionFlow .
124 112
125 ep-flow:DerivedFlow 113 ep-flow:DerivedFlow
126 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 114 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
127 rdfs:label "derived flow"^^xsd:string ; 115 rdfs:label "derived flow"^^xsd:string ;
128 rdfs:subClassOf ep-flow:WholeLifeFlow . 116 rdfs:subClassOf ep-flow:WholeLifeFlow .
129 117
130 ep-flow:DerivedFlow-difference 118 ep-flow:DerivedFlow-difference
131 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 119 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
132 rdfs:label "derived flow - difference"^^xsd:string ; 120 rdfs:label "derived flow - difference"^^xsd:string ;
133 rdfs:subClassOf ep-flow:DerivedFlow . 121 rdfs:subClassOf ep-flow:DerivedFlow .
134 122
135 ep-flow:DifferenceFlow 123 ep-flow:DifferenceFlow
136 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 124 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
137 rdfs:label "difference flow"^^xsd:string ; 125 rdfs:label "difference flow"^^xsd:string ;
138 rdfs:subClassOf ep-flow:WholeLifeFlow . 126 rdfs:subClassOf ep-flow:WholeLifeFlow .
139 127
...@@ -143,27 +131,27 @@ ep-flow:ElectricPowerFlow ...@@ -143,27 +131,27 @@ ep-flow:ElectricPowerFlow
143 rdfs:subClassOf ep-flow:Flow . 131 rdfs:subClassOf ep-flow:Flow .
144 132
145 ep-flow:EstimatedFlow 133 ep-flow:EstimatedFlow
146 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 134 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
147 rdfs:label "estimated flow"^^xsd:string ; 135 rdfs:label "estimated flow"^^xsd:string ;
148 rdfs:subClassOf ep-flow:WholeLifeFlow . 136 rdfs:subClassOf ep-flow:WholeLifeFlow .
149 137
150 ep-flow:Export 138 ep-flow:Export
151 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 139 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
152 rdfs:label "export"^^xsd:string ; 140 rdfs:label "export"^^xsd:string ;
153 rdfs:subClassOf ep-flow:WholeLifeFlow . 141 rdfs:subClassOf ep-flow:WholeLifeFlow .
154 142
155 ep-flow:Export-nominated 143 ep-flow:Export-nominated
156 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 144 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
157 rdfs:label "export nominated"^^xsd:string ; 145 rdfs:label "export nominated"^^xsd:string ;
158 rdfs:subClassOf ep-flow:Export . 146 rdfs:subClassOf ep-flow:Export .
159 147
160 ep-flow:Export-requested 148 ep-flow:Export-requested
161 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 149 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
162 rdfs:label "export requested"^^xsd:string ; 150 rdfs:label "export requested"^^xsd:string ;
163 rdfs:subClassOf ep-flow:Export . 151 rdfs:subClassOf ep-flow:Export .
164 152
165 ep-flow:Export-shortfall 153 ep-flow:Export-shortfall
166 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 154 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
167 rdfs:label "export shortfall"^^xsd:string ; 155 rdfs:label "export shortfall"^^xsd:string ;
168 rdfs:subClassOf ep-flow:Export . 156 rdfs:subClassOf ep-flow:Export .
169 157
...@@ -173,42 +161,42 @@ ep-flow:Flow ...@@ -173,42 +161,42 @@ ep-flow:Flow
173 rdfs:subClassOf ep-core:PhysicalThing . 161 rdfs:subClassOf ep-core:PhysicalThing .
174 162
175 ep-flow:FlowAtInstant 163 ep-flow:FlowAtInstant
176 - rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ; 164 + rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
177 rdfs:label "flow at instant"^^xsd:string ; 165 rdfs:label "flow at instant"^^xsd:string ;
178 rdfs:subClassOf ep-flow:Flow . 166 rdfs:subClassOf ep-flow:Flow .
179 167
180 ep-flow:FlowDuringDay 168 ep-flow:FlowDuringDay
181 - rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ; 169 + rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
182 rdfs:label "flow during day"^^xsd:string ; 170 rdfs:label "flow during day"^^xsd:string ;
183 rdfs:subClassOf ep-flow:FlowDuringPeriod . 171 rdfs:subClassOf ep-flow:FlowDuringPeriod .
184 172
185 ep-flow:FlowDuringMonth 173 ep-flow:FlowDuringMonth
186 - rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ; 174 + rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
187 rdfs:label "flow during month"^^xsd:string ; 175 rdfs:label "flow during month"^^xsd:string ;
188 rdfs:subClassOf ep-flow:FlowDuringPeriod . 176 rdfs:subClassOf ep-flow:FlowDuringPeriod .
189 177
190 ep-flow:FlowDuringMonthToDate 178 ep-flow:FlowDuringMonthToDate
191 - rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ; 179 + rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
192 rdfs:label "flow during month to date"^^xsd:string ; 180 rdfs:label "flow during month to date"^^xsd:string ;
193 rdfs:subClassOf ep-flow:FlowDuringPeriod . 181 rdfs:subClassOf ep-flow:FlowDuringPeriod .
194 182
195 ep-flow:FlowDuringPeriod 183 ep-flow:FlowDuringPeriod
196 - rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ; 184 + rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
197 rdfs:label "flow during period"^^xsd:string ; 185 rdfs:label "flow during period"^^xsd:string ;
198 rdfs:subClassOf ep-flow:Flow . 186 rdfs:subClassOf ep-flow:Flow .
199 187
200 ep-flow:FlowDuringWeek 188 ep-flow:FlowDuringWeek
201 - rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ; 189 + rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
202 rdfs:label "flow during week"^^xsd:string ; 190 rdfs:label "flow during week"^^xsd:string ;
203 rdfs:subClassOf ep-flow:FlowDuringPeriod . 191 rdfs:subClassOf ep-flow:FlowDuringPeriod .
204 192
205 ep-flow:FlowDuringYear 193 ep-flow:FlowDuringYear
206 - rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ; 194 + rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ;
207 rdfs:label "flow during year"^^xsd:string ; 195 rdfs:label "flow during year"^^xsd:string ;
208 rdfs:subClassOf ep-flow:FlowDuringPeriod . 196 rdfs:subClassOf ep-flow:FlowDuringPeriod .
209 197
210 ep-flow:FlowDuringYearToDate 198 ep-flow:FlowDuringYearToDate
211 - rdf:type owl:Class , ep-flow:TemporalPartOfAFlowDurationType ; 199 + rdf:type ep-flow:TemporalPartOfAFlowDurationType , owl:Class ;
212 rdfs:label "flow during year to date"^^xsd:string ; 200 rdfs:label "flow during year to date"^^xsd:string ;
213 rdfs:subClassOf ep-flow:FlowDuringPeriod . 201 rdfs:subClassOf ep-flow:FlowDuringPeriod .
214 202
...@@ -218,132 +206,122 @@ ep-flow:FlowOfLiquid ...@@ -218,132 +206,122 @@ ep-flow:FlowOfLiquid
218 rdfs:subClassOf ep-core:PhysicalThing . 206 rdfs:subClassOf ep-core:PhysicalThing .
219 207
220 ep-flow:ForecastFlow 208 ep-flow:ForecastFlow
221 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 209 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
222 rdfs:label "forecast flow"^^xsd:string ; 210 rdfs:label "forecast flow"^^xsd:string ;
223 rdfs:subClassOf ep-flow:WholeLifeFlow . 211 rdfs:subClassOf ep-flow:WholeLifeFlow .
224 212
225 ep-flow:ForecastFlow-declineCurve 213 ep-flow:ForecastFlow-declineCurve
226 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 214 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
227 rdfs:label "forecast flow - decline curve"^^xsd:string ; 215 rdfs:label "forecast flow - decline curve"^^xsd:string ;
228 rdfs:subClassOf ep-flow:ForecastFlow . 216 rdfs:subClassOf ep-flow:ForecastFlow .
229 217
230 ep-flow:ForecastFlow-standard 218 ep-flow:ForecastFlow-standard
231 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 219 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
232 rdfs:label "forecast flow - standard"^^xsd:string ; 220 rdfs:label "forecast flow - standard"^^xsd:string ;
233 rdfs:subClassOf ep-flow:ForecastFlow . 221 rdfs:subClassOf ep-flow:ForecastFlow .
234 222
235 ep-flow:Gaslift 223 ep-flow:Gaslift
236 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 224 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
237 rdfs:label "gas lift"^^xsd:string ; 225 rdfs:label "gas lift"^^xsd:string ;
238 rdfs:subClassOf ep-flow:WholeLifeFlow . 226 rdfs:subClassOf ep-flow:WholeLifeFlow .
239 227
240 ep-flow:GrossProductFlow 228 ep-flow:GrossProductFlow
241 - rdf:type ep-flow:ProductFlowGrossOrNetType , owl:Class ; 229 + rdf:type owl:Class , ep-flow:ProductFlowGrossOrNetType ;
242 rdfs:label "gross product flow"^^xsd:string ; 230 rdfs:label "gross product flow"^^xsd:string ;
243 rdfs:subClassOf ep-flow:ProductFlow . 231 rdfs:subClassOf ep-flow:ProductFlow .
244 232
245 ep-flow:HydrocarbonAccounting 233 ep-flow:HydrocarbonAccounting
246 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 234 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
247 rdfs:label "hydrocarbon accounting"^^xsd:string ; 235 rdfs:label "hydrocarbon accounting"^^xsd:string ;
248 rdfs:subClassOf ep-flow:WholeLifeFlow . 236 rdfs:subClassOf ep-flow:WholeLifeFlow .
249 237
250 ep-flow:Import 238 ep-flow:Import
251 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 239 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
252 rdfs:label "import"^^xsd:string ; 240 rdfs:label "import"^^xsd:string ;
253 rdfs:subClassOf ep-flow:WholeLifeFlow . 241 rdfs:subClassOf ep-flow:WholeLifeFlow .
254 242
255 ep-flow:Injection 243 ep-flow:Injection
256 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 244 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
257 rdfs:label "injection"^^xsd:string ; 245 rdfs:label "injection"^^xsd:string ;
258 rdfs:subClassOf ep-flow:WholeLifeFlow . 246 rdfs:subClassOf ep-flow:WholeLifeFlow .
259 247
260 ep-flow:Inventory 248 ep-flow:Inventory
261 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 249 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
262 rdfs:label "inventory"^^xsd:string ; 250 rdfs:label "inventory"^^xsd:string ;
263 rdfs:subClassOf ep-core:PhysicalObject . 251 rdfs:subClassOf ep-core:PhysicalObject .
264 252
265 ep-flow:MassAdjustedFlow 253 ep-flow:MassAdjustedFlow
266 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 254 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
267 rdfs:label "mass adjusted flow"^^xsd:string ; 255 rdfs:label "mass adjusted flow"^^xsd:string ;
268 rdfs:subClassOf ep-flow:WholeLifeFlow . 256 rdfs:subClassOf ep-flow:WholeLifeFlow .
269 257
270 ep-flow:MeasuredFlow 258 ep-flow:MeasuredFlow
271 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 259 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
272 rdfs:label "measured flow"^^xsd:string ; 260 rdfs:label "measured flow"^^xsd:string ;
273 rdfs:subClassOf ep-flow:WholeLifeFlow . 261 rdfs:subClassOf ep-flow:WholeLifeFlow .
274 262
275 ep-flow:MeasuredFlow-fiscal 263 ep-flow:MeasuredFlow-fiscal
276 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 264 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
277 rdfs:label "measured flow - fiscal"^^xsd:string ; 265 rdfs:label "measured flow - fiscal"^^xsd:string ;
278 rdfs:subClassOf ep-flow:MeasuredFlow . 266 rdfs:subClassOf ep-flow:MeasuredFlow .
279 267
280 ep-flow:MeasuredFlow-raw 268 ep-flow:MeasuredFlow-raw
281 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 269 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
282 rdfs:label "measured flow - raw"^^xsd:string ; 270 rdfs:label "measured flow - raw"^^xsd:string ;
283 rdfs:subClassOf ep-flow:MeasuredFlow . 271 rdfs:subClassOf ep-flow:MeasuredFlow .
284 272
285 ep-flow:MeasuredFlow-recalibrated 273 ep-flow:MeasuredFlow-recalibrated
286 - rdf:type ep-flow:ProductionFlowDefinitionSubType , owl:Class ; 274 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionSubType ;
287 rdfs:label "measured flow - recalibrated"^^xsd:string ; 275 rdfs:label "measured flow - recalibrated"^^xsd:string ;
288 rdfs:subClassOf ep-flow:MeasuredFlow . 276 rdfs:subClassOf ep-flow:MeasuredFlow .
289 277
290 ep-flow:MeteredFlowFiscal 278 ep-flow:MeteredFlowFiscal
291 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 279 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
292 rdfs:label "metered flow fiscal"^^xsd:string ; 280 rdfs:label "metered flow fiscal"^^xsd:string ;
293 rdfs:subClassOf ep-flow:WholeLifeFlow . 281 rdfs:subClassOf ep-flow:WholeLifeFlow .
294 282
295 ep-flow:NetProductFlow 283 ep-flow:NetProductFlow
296 - rdf:type ep-flow:ProductFlowGrossOrNetType , owl:Class ; 284 + rdf:type owl:Class , ep-flow:ProductFlowGrossOrNetType ;
297 rdfs:label "net product flow"^^xsd:string ; 285 rdfs:label "net product flow"^^xsd:string ;
298 rdfs:subClassOf ep-flow:ProductFlow . 286 rdfs:subClassOf ep-flow:ProductFlow .
299 287
300 ep-flow:NominatedFlow 288 ep-flow:NominatedFlow
301 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 289 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
302 rdfs:label "nominated flow"^^xsd:string ; 290 rdfs:label "nominated flow"^^xsd:string ;
303 rdfs:subClassOf ep-flow:WholeLifeFlow . 291 rdfs:subClassOf ep-flow:WholeLifeFlow .
304 292
305 ep-flow:ObjectThatLastsOneDay 293 ep-flow:ObjectThatLastsOneDay
306 - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; 294 + rdf:type ep-flow:TemporalPartDurationType , owl:Class ;
307 rdfs:label "object that lasts one day"^^xsd:string ; 295 rdfs:label "object that lasts one day"^^xsd:string ;
308 rdfs:subClassOf ep-core:PhysicalObject . 296 rdfs:subClassOf ep-core:PhysicalObject .
309 297
310 ep-flow:ObjectThatLastsOneMonth 298 ep-flow:ObjectThatLastsOneMonth
311 - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; 299 + rdf:type ep-flow:TemporalPartDurationType , owl:Class ;
312 rdfs:label "object that lasts one month"^^xsd:string ; 300 rdfs:label "object that lasts one month"^^xsd:string ;
313 rdfs:subClassOf ep-core:PhysicalObject . 301 rdfs:subClassOf ep-core:PhysicalObject .
314 302
315 ep-flow:ObjectThatLastsOneWeek 303 ep-flow:ObjectThatLastsOneWeek
316 - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; 304 + rdf:type ep-flow:TemporalPartDurationType , owl:Class ;
317 rdfs:label "object that lasts one week"^^xsd:string ; 305 rdfs:label "object that lasts one week"^^xsd:string ;
318 rdfs:subClassOf ep-core:PhysicalObject . 306 rdfs:subClassOf ep-core:PhysicalObject .
319 307
320 ep-flow:ObjectThatLastsOneYear 308 ep-flow:ObjectThatLastsOneYear
321 - rdf:type owl:Class , ep-flow:TemporalPartDurationType ; 309 + rdf:type ep-flow:TemporalPartDurationType , owl:Class ;
322 rdfs:label "object that lasts one year"^^xsd:string ; 310 rdfs:label "object that lasts one year"^^xsd:string ;
323 rdfs:subClassOf ep-core:PhysicalObject . 311 rdfs:subClassOf ep-core:PhysicalObject .
324 312
325 -ep-flow:Oil-grossFlow
326 - rdf:type ep-flow:ProductMaterialType , owl:Class ;
327 - rdfs:label "oil - gross flow"^^xsd:string ;
328 - rdfs:subClassOf ep-flow:WholeLifeFlow .
329 -
330 -ep-flow:Oil-netFlow
331 - rdf:type ep-flow:ProductMaterialType , owl:Class ;
332 - rdfs:label "oil - net flow"^^xsd:string ;
333 - rdfs:subClassOf ep-flow:WholeLifeFlow .
334 -
335 ep-flow:Overboard 313 ep-flow:Overboard
336 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 314 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
337 rdfs:label "overboard"^^xsd:string ; 315 rdfs:label "overboard"^^xsd:string ;
338 rdfs:subClassOf ep-flow:WholeLifeFlow . 316 rdfs:subClassOf ep-flow:WholeLifeFlow .
339 317
340 ep-flow:PotentialFlow 318 ep-flow:PotentialFlow
341 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 319 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
342 rdfs:label "potential flow"^^xsd:string ; 320 rdfs:label "potential flow"^^xsd:string ;
343 rdfs:subClassOf ep-flow:WholeLifeFlow . 321 rdfs:subClassOf ep-flow:WholeLifeFlow .
344 322
345 ep-flow:ProcessedFlow 323 ep-flow:ProcessedFlow
346 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 324 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
347 rdfs:label "processed flow"^^xsd:string ; 325 rdfs:label "processed flow"^^xsd:string ;
348 rdfs:subClassOf ep-flow:WholeLifeFlow . 326 rdfs:subClassOf ep-flow:WholeLifeFlow .
349 327
...@@ -368,27 +346,27 @@ ep-flow:ProductInventory ...@@ -368,27 +346,27 @@ ep-flow:ProductInventory
368 rdfs:subClassOf ep-flow:Inventory . 346 rdfs:subClassOf ep-flow:Inventory .
369 347
370 ep-flow:ProductInventoryAdjustedClosingBalance 348 ep-flow:ProductInventoryAdjustedClosingBalance
371 - rdf:type owl:Class , ep-flow:ProductInventoryType ; 349 + rdf:type ep-flow:ProductInventoryType , owl:Class ;
372 rdfs:label "product inventory adjusted closing balance"^^xsd:string ; 350 rdfs:label "product inventory adjusted closing balance"^^xsd:string ;
373 rdfs:subClassOf ep-flow:ProductInventory . 351 rdfs:subClassOf ep-flow:ProductInventory .
374 352
375 ep-flow:ProductInventoryClosingBalance 353 ep-flow:ProductInventoryClosingBalance
376 - rdf:type owl:Class , ep-flow:ProductInventoryType ; 354 + rdf:type ep-flow:ProductInventoryType , owl:Class ;
377 rdfs:label "product inventory closing balance"^^xsd:string ; 355 rdfs:label "product inventory closing balance"^^xsd:string ;
378 rdfs:subClassOf ep-flow:ProductInventory . 356 rdfs:subClassOf ep-flow:ProductInventory .
379 357
380 ep-flow:ProductInventoryClosingStorageBalance 358 ep-flow:ProductInventoryClosingStorageBalance
381 - rdf:type owl:Class , ep-flow:ProductInventoryType ; 359 + rdf:type ep-flow:ProductInventoryType , owl:Class ;
382 rdfs:label "product inventory closing storage balance"^^xsd:string ; 360 rdfs:label "product inventory closing storage balance"^^xsd:string ;
383 rdfs:subClassOf ep-flow:ProductInventory . 361 rdfs:subClassOf ep-flow:ProductInventory .
384 362
385 ep-flow:ProductInventoryOpFlex 363 ep-flow:ProductInventoryOpFlex
386 - rdf:type owl:Class , ep-flow:ProductInventoryType ; 364 + rdf:type ep-flow:ProductInventoryType , owl:Class ;
387 rdfs:label "product inventory opFlex"^^xsd:string ; 365 rdfs:label "product inventory opFlex"^^xsd:string ;
388 rdfs:subClassOf ep-flow:ProductInventory . 366 rdfs:subClassOf ep-flow:ProductInventory .
389 367
390 ep-flow:ProductInventoryOpeningBalance 368 ep-flow:ProductInventoryOpeningBalance
391 - rdf:type owl:Class , ep-flow:ProductInventoryType ; 369 + rdf:type ep-flow:ProductInventoryType , owl:Class ;
392 rdfs:label "product inventory opening balance"^^xsd:string ; 370 rdfs:label "product inventory opening balance"^^xsd:string ;
393 rdfs:subClassOf ep-flow:ProductInventory . 371 rdfs:subClassOf ep-flow:ProductInventory .
394 372
...@@ -403,7 +381,7 @@ ep-flow:ProductMaterialType ...@@ -403,7 +381,7 @@ ep-flow:ProductMaterialType
403 rdfs:subClassOf owl:Class . 381 rdfs:subClassOf owl:Class .
404 382
405 ep-flow:Production 383 ep-flow:Production
406 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 384 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
407 rdfs:label "production"^^xsd:string ; 385 rdfs:label "production"^^xsd:string ;
408 rdfs:subClassOf ep-flow:WholeLifeFlow . 386 rdfs:subClassOf ep-flow:WholeLifeFlow .
409 387
...@@ -438,37 +416,37 @@ ep-flow:ProductionInventory ...@@ -438,37 +416,37 @@ ep-flow:ProductionInventory
438 rdfs:subClassOf ep-flow:Inventory . 416 rdfs:subClassOf ep-flow:Inventory .
439 417
440 ep-flow:ProductionInventoryAllocatedMaterial 418 ep-flow:ProductionInventoryAllocatedMaterial
441 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 419 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
442 rdfs:label "production inventory allocated material"^^xsd:string ; 420 rdfs:label "production inventory allocated material"^^xsd:string ;
443 rdfs:subClassOf ep-flow:ProductionInventory . 421 rdfs:subClassOf ep-flow:ProductionInventory .
444 422
445 ep-flow:ProductionInventoryBudgetMaterial 423 ep-flow:ProductionInventoryBudgetMaterial
446 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 424 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
447 rdfs:label "production inventory budget material"^^xsd:string ; 425 rdfs:label "production inventory budget material"^^xsd:string ;
448 rdfs:subClassOf ep-flow:ProductionInventory . 426 rdfs:subClassOf ep-flow:ProductionInventory .
449 427
450 ep-flow:ProductionInventoryConstraintMaterial 428 ep-flow:ProductionInventoryConstraintMaterial
451 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 429 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
452 rdfs:label "production inventory constraint material"^^xsd:string ; 430 rdfs:label "production inventory constraint material"^^xsd:string ;
453 rdfs:subClassOf ep-flow:ProductionInventory . 431 rdfs:subClassOf ep-flow:ProductionInventory .
454 432
455 ep-flow:ProductionInventoryDerivedMaterial 433 ep-flow:ProductionInventoryDerivedMaterial
456 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 434 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
457 rdfs:label "production inventory derived material"^^xsd:string ; 435 rdfs:label "production inventory derived material"^^xsd:string ;
458 rdfs:subClassOf ep-flow:ProductionInventory . 436 rdfs:subClassOf ep-flow:ProductionInventory .
459 437
460 ep-flow:ProductionInventoryDifferenceMaterial 438 ep-flow:ProductionInventoryDifferenceMaterial
461 - rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ; 439 + rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ;
462 rdfs:label "production inventory difference material"^^xsd:string ; 440 rdfs:label "production inventory difference material"^^xsd:string ;
463 rdfs:subClassOf ep-flow:ProductionInventory . 441 rdfs:subClassOf ep-flow:ProductionInventory .
464 442
465 ep-flow:ProductionInventoryEstimatedMaterial 443 ep-flow:ProductionInventoryEstimatedMaterial
466 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 444 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
467 rdfs:label "production inventory estimated material"^^xsd:string ; 445 rdfs:label "production inventory estimated material"^^xsd:string ;
468 rdfs:subClassOf ep-flow:ProductionInventory . 446 rdfs:subClassOf ep-flow:ProductionInventory .
469 447
470 ep-flow:ProductionInventoryForecastMaterial 448 ep-flow:ProductionInventoryForecastMaterial
471 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 449 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
472 rdfs:label "production inventory forecast material"^^xsd:string ; 450 rdfs:label "production inventory forecast material"^^xsd:string ;
473 rdfs:subClassOf ep-flow:ProductionInventory . 451 rdfs:subClassOf ep-flow:ProductionInventory .
474 452
...@@ -478,47 +456,47 @@ ep-flow:ProductionInventoryMaterialType ...@@ -478,47 +456,47 @@ ep-flow:ProductionInventoryMaterialType
478 rdfs:subClassOf owl:Class . 456 rdfs:subClassOf owl:Class .
479 457
480 ep-flow:ProductionInventoryMeasuredMaterial 458 ep-flow:ProductionInventoryMeasuredMaterial
481 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 459 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
482 rdfs:label "production inventory measured material"^^xsd:string ; 460 rdfs:label "production inventory measured material"^^xsd:string ;
483 rdfs:subClassOf ep-flow:ProductionInventory . 461 rdfs:subClassOf ep-flow:ProductionInventory .
484 462
485 ep-flow:ProductionInventoryNominatedMaterial 463 ep-flow:ProductionInventoryNominatedMaterial
486 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 464 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
487 rdfs:label "production inventory nominated material"^^xsd:string ; 465 rdfs:label "production inventory nominated material"^^xsd:string ;
488 rdfs:subClassOf ep-flow:ProductionInventory . 466 rdfs:subClassOf ep-flow:ProductionInventory .
489 467
490 ep-flow:ProductionInventoryPotentialMaterial 468 ep-flow:ProductionInventoryPotentialMaterial
491 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 469 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
492 rdfs:label "production inventory potential material"^^xsd:string ; 470 rdfs:label "production inventory potential material"^^xsd:string ;
493 rdfs:subClassOf ep-flow:ProductionInventory . 471 rdfs:subClassOf ep-flow:ProductionInventory .
494 472
495 ep-flow:ProductionInventoryProcessedMaterial 473 ep-flow:ProductionInventoryProcessedMaterial
496 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 474 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
497 rdfs:label "production inventory processed material"^^xsd:string ; 475 rdfs:label "production inventory processed material"^^xsd:string ;
498 rdfs:subClassOf ep-flow:ProductionInventory . 476 rdfs:subClassOf ep-flow:ProductionInventory .
499 477
500 ep-flow:ProductionInventoryQuotaMaterial 478 ep-flow:ProductionInventoryQuotaMaterial
501 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 479 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
502 rdfs:label "production inventory quota material"^^xsd:string ; 480 rdfs:label "production inventory quota material"^^xsd:string ;
503 rdfs:subClassOf ep-flow:ProductionInventory . 481 rdfs:subClassOf ep-flow:ProductionInventory .
504 482
505 ep-flow:ProductionInventoryRecommendedMaterial 483 ep-flow:ProductionInventoryRecommendedMaterial
506 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 484 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
507 rdfs:label "production inventory recommended material"^^xsd:string ; 485 rdfs:label "production inventory recommended material"^^xsd:string ;
508 rdfs:subClassOf ep-flow:ProductionInventory . 486 rdfs:subClassOf ep-flow:ProductionInventory .
509 487
510 ep-flow:ProductionInventorySaleableMaterial 488 ep-flow:ProductionInventorySaleableMaterial
511 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 489 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
512 rdfs:label "production inventory saleable material"^^xsd:string ; 490 rdfs:label "production inventory saleable material"^^xsd:string ;
513 rdfs:subClassOf ep-flow:ProductionInventory . 491 rdfs:subClassOf ep-flow:ProductionInventory .
514 492
515 ep-flow:ProductionInventorySimulatedMaterial 493 ep-flow:ProductionInventorySimulatedMaterial
516 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 494 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
517 rdfs:label "production inventory simulated material"^^xsd:string ; 495 rdfs:label "production inventory simulated material"^^xsd:string ;
518 rdfs:subClassOf ep-flow:ProductionInventory . 496 rdfs:subClassOf ep-flow:ProductionInventory .
519 497
520 ep-flow:ProductionInventoryTargetMaterial 498 ep-flow:ProductionInventoryTargetMaterial
521 - rdf:type ep-flow:ProductionInventoryMaterialType , owl:Class ; 499 + rdf:type owl:Class , ep-flow:ProductionInventoryMaterialType ;
522 rdfs:label "production inventory target material"^^xsd:string ; 500 rdfs:label "production inventory target material"^^xsd:string ;
523 rdfs:subClassOf ep-flow:ProductionInventory . 501 rdfs:subClassOf ep-flow:ProductionInventory .
524 502
...@@ -548,46 +526,47 @@ ep-flow:ProductionTestWellHeadFlow ...@@ -548,46 +526,47 @@ ep-flow:ProductionTestWellHeadFlow
548 rdfs:subClassOf ep-flow:WholeLifeFlow . 526 rdfs:subClassOf ep-flow:WholeLifeFlow .
549 527
550 ep-flow:QuotaFlow 528 ep-flow:QuotaFlow
551 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 529 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
552 rdfs:label "quota flow"^^xsd:string ; 530 rdfs:label "quota flow"^^xsd:string ;
553 rdfs:subClassOf ep-flow:WholeLifeFlow . 531 rdfs:subClassOf ep-flow:WholeLifeFlow .
554 532
555 ep-flow:RecommendedFlow 533 ep-flow:RecommendedFlow
556 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 534 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
557 rdfs:label "recommended flow"^^xsd:string ; 535 rdfs:label "recommended flow"^^xsd:string ;
558 rdfs:subClassOf ep-flow:WholeLifeFlow . 536 rdfs:subClassOf ep-flow:WholeLifeFlow .
559 537
560 ep-flow:Sale 538 ep-flow:Sale
561 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 539 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
562 rdfs:label "sale"^^xsd:string ; 540 rdfs:label "sale"^^xsd:string ;
563 rdfs:subClassOf ep-flow:WholeLifeFlow . 541 rdfs:subClassOf ep-flow:WholeLifeFlow .
564 542
565 ep-flow:SaleableFlow 543 ep-flow:SaleableFlow
566 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 544 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
567 rdfs:label "saleable flow"^^xsd:string ; 545 rdfs:label "saleable flow"^^xsd:string ;
568 rdfs:subClassOf ep-flow:WholeLifeFlow . 546 rdfs:subClassOf ep-flow:WholeLifeFlow .
569 547
570 ep-flow:SampleOfMaterial 548 ep-flow:SampleOfMaterial
571 - rdfs:label "sample of material"^^xsd:string ; 549 + rdf:type owl:Class ;
550 + rdfs:label "(temporal part of a) sample of material"^^xsd:string , "sample of material"^^xsd:string ;
572 rdfs:subClassOf ep-material:QuantityOfMaterial . 551 rdfs:subClassOf ep-material:QuantityOfMaterial .
573 552
574 ep-flow:SimulatedFlow 553 ep-flow:SimulatedFlow
575 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 554 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
576 rdfs:label "simulated flow"^^xsd:string ; 555 rdfs:label "simulated flow"^^xsd:string ;
577 rdfs:subClassOf ep-flow:WholeLifeFlow . 556 rdfs:subClassOf ep-flow:WholeLifeFlow .
578 557
579 ep-flow:Storage 558 ep-flow:Storage
580 - rdf:type ep-flow:ProductionFlowPurposeType , owl:Class ; 559 + rdf:type owl:Class , ep-flow:ProductionFlowPurposeType ;
581 rdfs:label "storage"^^xsd:string ; 560 rdfs:label "storage"^^xsd:string ;
582 rdfs:subClassOf ep-flow:WholeLifeFlow . 561 rdfs:subClassOf ep-flow:WholeLifeFlow .
583 562
584 ep-flow:TargetFlow 563 ep-flow:TargetFlow
585 - rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ; 564 + rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ;
586 rdfs:label "target flow"^^xsd:string ; 565 rdfs:label "target flow"^^xsd:string ;
587 rdfs:subClassOf ep-flow:WholeLifeFlow . 566 rdfs:subClassOf ep-flow:WholeLifeFlow .
588 567
589 ep-flow:TariffBasisFlow 568 ep-flow:TariffBasisFlow
590 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 569 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
591 rdfs:label "tariff basis flow"^^xsd:string ; 570 rdfs:label "tariff basis flow"^^xsd:string ;
592 rdfs:subClassOf ep-flow:WholeLifeFlow . 571 rdfs:subClassOf ep-flow:WholeLifeFlow .
593 572
...@@ -602,7 +581,7 @@ ep-flow:TemporalPartOfAFlowDurationType ...@@ -602,7 +581,7 @@ ep-flow:TemporalPartOfAFlowDurationType
602 rdfs:subClassOf owl:Class . 581 rdfs:subClassOf owl:Class .
603 582
604 ep-flow:ValueAdjustedFlow 583 ep-flow:ValueAdjustedFlow
605 - rdf:type ep-flow:ProductionFlowDefinitionType , owl:Class ; 584 + rdf:type owl:Class , ep-flow:ProductionFlowDefinitionType ;
606 rdfs:label "value adjusted flow"^^xsd:string ; 585 rdfs:label "value adjusted flow"^^xsd:string ;
607 rdfs:subClassOf ep-flow:WholeLifeFlow . 586 rdfs:subClassOf ep-flow:WholeLifeFlow .
608 587
...@@ -614,7 +593,7 @@ ep-flow:WholeLifeFlow ...@@ -614,7 +593,7 @@ ep-flow:WholeLifeFlow
614 ep-flow:WholeLifeProductFlow 593 ep-flow:WholeLifeProductFlow
615 rdf:type owl:Class ; 594 rdf:type owl:Class ;
616 rdfs:label "whole life product flow"^^xsd:string ; 595 rdfs:label "whole life product flow"^^xsd:string ;
617 - rdfs:subClassOf ep-flow:WholeLifeFlow , ep-flow:ProductFlow . 596 + rdfs:subClassOf ep-flow:ProductFlow , ep-flow:WholeLifeFlow .
618 597
619 ep-flow:WholeLifeProductInventory 598 ep-flow:WholeLifeProductInventory
620 rdf:type owl:Class ; 599 rdf:type owl:Class ;
...@@ -624,7 +603,7 @@ ep-flow:WholeLifeProductInventory ...@@ -624,7 +603,7 @@ ep-flow:WholeLifeProductInventory
624 ep-flow:WholeLifeProductionFlow 603 ep-flow:WholeLifeProductionFlow
625 rdf:type owl:Class ; 604 rdf:type owl:Class ;
626 rdfs:label "whole life production flow"^^xsd:string ; 605 rdfs:label "whole life production flow"^^xsd:string ;
627 - rdfs:subClassOf ep-flow:WholeLifeFlow , ep-flow:ProductionFlow . 606 + rdfs:subClassOf ep-flow:ProductionFlow , ep-flow:WholeLifeFlow .
628 607
629 ep-flow:WholeLifeProductionInventory 608 ep-flow:WholeLifeProductionInventory
630 rdf:type owl:Class ; 609 rdf:type owl:Class ;
...@@ -632,7 +611,7 @@ ep-flow:WholeLifeProductionInventory ...@@ -632,7 +611,7 @@ ep-flow:WholeLifeProductionInventory
632 rdfs:subClassOf ep-flow:ProductionInventory . 611 rdfs:subClassOf ep-flow:ProductionInventory .
633 612
634 ep-flow:allocatedTo 613 ep-flow:allocatedTo
635 - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; 614 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
636 rdfs:comment "facility to which a split of a flow or inventory is allocated"^^xsd:string ; 615 rdfs:comment "facility to which a split of a flow or inventory is allocated"^^xsd:string ;
637 rdfs:domain ep-core:PhysicalObject ; 616 rdfs:domain ep-core:PhysicalObject ;
638 rdfs:label "allocatedTo"^^xsd:string ; 617 rdfs:label "allocatedTo"^^xsd:string ;
...@@ -640,13 +619,13 @@ ep-flow:allocatedTo ...@@ -640,13 +619,13 @@ ep-flow:allocatedTo
640 rdfs:subPropertyOf ep-flow:flowIntoOrOutOf . 619 rdfs:subPropertyOf ep-flow:flowIntoOrOutOf .
641 620
642 ep-flow:dailyAverageAmountOfMaterial 621 ep-flow:dailyAverageAmountOfMaterial
643 - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; 622 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
644 rdfs:domain ep-flow:Flow ; 623 rdfs:domain ep-flow:Flow ;
645 rdfs:label "daily average amount of material"^^xsd:string ; 624 rdfs:label "daily average amount of material"^^xsd:string ;
646 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion . 625 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion .
647 626
648 ep-flow:energyContent 627 ep-flow:energyContent
649 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 628 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
650 rdfs:domain ep-material:QuantityOfMaterial ; 629 rdfs:domain ep-material:QuantityOfMaterial ;
651 rdfs:label "energy content"^^xsd:string ; 630 rdfs:label "energy content"^^xsd:string ;
652 rdfs:range ep-core:Work . 631 rdfs:range ep-core:Work .
...@@ -678,7 +657,7 @@ ep-flow:flowOutOf ...@@ -678,7 +657,7 @@ ep-flow:flowOutOf
678 rdfs:subPropertyOf ep-flow:flowIntoOrOutOf . 657 rdfs:subPropertyOf ep-flow:flowIntoOrOutOf .
679 658
680 ep-flow:grossCalorificValue 659 ep-flow:grossCalorificValue
681 - rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 660 + rdf:type ep-core:Class_of_indirect_property , owl:FunctionalProperty , owl:ObjectProperty ;
682 rdfs:domain ep-material:QuantityOfMaterial ; 661 rdfs:domain ep-material:QuantityOfMaterial ;
683 rdfs:label "gross calorific value"^^xsd:string ; 662 rdfs:label "gross calorific value"^^xsd:string ;
684 rdfs:range ep-core:EnergyPerVolume . 663 rdfs:range ep-core:EnergyPerVolume .
...@@ -698,29 +677,29 @@ ep-flow:hasNetworkPart ...@@ -698,29 +677,29 @@ ep-flow:hasNetworkPart
698 rdfs:subPropertyOf ep-core:hasPart . 677 rdfs:subPropertyOf ep-core:hasPart .
699 678
700 ep-flow:materialInInventory 679 ep-flow:materialInInventory
701 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 680 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
702 rdfs:domain ep-flow:Inventory ; 681 rdfs:domain ep-flow:Inventory ;
703 rdfs:label "material in inventory"^^xsd:string ; 682 rdfs:label "material in inventory"^^xsd:string ;
704 rdfs:range ep-material:QuantityOfMaterial . 683 rdfs:range ep-material:QuantityOfMaterial .
705 684
706 ep-flow:materialThatFlows 685 ep-flow:materialThatFlows
707 - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; 686 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
708 rdfs:domain ep-flow:Flow ; 687 rdfs:domain ep-flow:Flow ;
709 rdfs:label "material that flows"^^xsd:string ; 688 rdfs:label "material that flows"^^xsd:string ;
710 rdfs:range ep-material:QuantityOfMaterial . 689 rdfs:range ep-material:QuantityOfMaterial .
711 690
712 ep-flow:rateOfFlowOfMaterial 691 ep-flow:rateOfFlowOfMaterial
713 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 692 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
714 rdfs:label "rate of flow of material"^^xsd:string ; 693 rdfs:label "rate of flow of material"^^xsd:string ;
715 rdfs:range ep-core:MeasureOfAmountOfMaterial . 694 rdfs:range ep-core:MeasureOfAmountOfMaterial .
716 695
717 ep-flow:totalVolumeOfMaterial-deprecated 696 ep-flow:totalVolumeOfMaterial-deprecated
718 - rdf:type owl:FunctionalProperty , owl:ObjectProperty ; 697 + rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
719 rdfs:label "total volume of material"^^xsd:string ; 698 rdfs:label "total volume of material"^^xsd:string ;
720 rdfs:range ep-core:MeasureOfAmountOfMaterial . 699 rdfs:range ep-core:MeasureOfAmountOfMaterial .
721 700
722 ep-flow:yearlyAverageAmountOfMaterial 701 ep-flow:yearlyAverageAmountOfMaterial
723 - rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 702 + rdf:type owl:FunctionalProperty , owl:ObjectProperty ;
724 rdfs:domain ep-flow:Flow ; 703 rdfs:domain ep-flow:Flow ;
725 rdfs:label "yearly average amount of material"^^xsd:string ; 704 rdfs:label "yearly average amount of material"^^xsd:string ;
726 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion . 705 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion .
...@@ -831,7 +810,7 @@ ep-material:Gas-wet ...@@ -831,7 +810,7 @@ ep-material:Gas-wet
831 rdf:type ep-flow:ProductMaterialType . 810 rdf:type ep-flow:ProductMaterialType .
832 811
833 ep-material:HeliumGas 812 ep-material:HeliumGas
834 - rdf:type owl:Class , ep-flow:ProductMaterialType . 813 + rdf:type ep-flow:ProductMaterialType .
835 814
836 ep-material:Heptane 815 ep-material:Heptane
837 rdf:type ep-flow:ProductMaterialType . 816 rdf:type ep-flow:ProductMaterialType .
...@@ -908,16 +887,11 @@ ep-material:OilAndGas ...@@ -908,16 +887,11 @@ ep-material:OilAndGas
908 ep-material:Oleic 887 ep-material:Oleic
909 rdf:type ep-flow:ProductMaterialType . 888 rdf:type ep-flow:ProductMaterialType .
910 889
911 -ep-material:Pentane
912 - rdf:type ep-well:FluidComponentType , ep-prodact:SubstanceType ;
913 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_pentane> .
914 -
915 ep-material:PetroleumGasLiquid 890 ep-material:PetroleumGasLiquid
916 rdf:type ep-flow:ProductMaterialType . 891 rdf:type ep-flow:ProductMaterialType .
917 892
918 ep-material:Propane 893 ep-material:Propane
919 - rdf:type ep-flow:ProductMaterialType , ep-well:FluidComponentType , ep-prodact:SubstanceType ; 894 + rdf:type ep-flow:ProductMaterialType .
920 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_propane> .
921 895
922 ep-material:Propane-component 896 ep-material:Propane-component
923 rdf:type ep-flow:ProductMaterialType . 897 rdf:type ep-flow:ProductMaterialType .
...@@ -942,363 +916,3 @@ ep-material:Water-discharge ...@@ -942,363 +916,3 @@ ep-material:Water-discharge
942 916
943 ep-material:Water-processed 917 ep-material:Water-processed
944 rdf:type ep-flow:ProductMaterialType . 918 rdf:type ep-flow:ProductMaterialType .
945 -
946 -ep-material:substance-11dmcyPentane
947 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
948 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_11dmcypentane> .
949 -
950 -ep-material:substance-124tmBenzene
951 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
952 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_124tmbenzene> .
953 -
954 -ep-material:substance-12dmBenzene
955 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
956 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_12dmbenzene> .
957 -
958 -ep-material:substance-13dmBenzene
959 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
960 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_13dmbenzene> .
961 -
962 -ep-material:substance-14dmBenzene
963 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
964 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_14dmbenzene> .
965 -
966 -ep-material:substance-223tmButane
967 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
968 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmbutane> .
969 -
970 -ep-material:substance-223tmPentane
971 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
972 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmpentane> .
973 -
974 -ep-material:substance-22dmButane
975 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
976 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmbutane> .
977 -
978 -ep-material:substance-22dmHexane
979 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
980 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmhexane> .
981 -
982 -ep-material:substance-22dmPentane
983 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
984 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpentane> .
985 -
986 -ep-material:substance-22dmPropane
987 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
988 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpropane> .
989 -
990 -ep-material:substance-23dmButane
991 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
992 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmbutane> .
993 -
994 -ep-material:substance-23dmPentane
995 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
996 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmpentane> .
997 -
998 -ep-material:substance-24dmHexane
999 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1000 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmhexane> .
1001 -
1002 -ep-material:substance-24dmPentane
1003 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1004 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmpentane> .
1005 -
1006 -ep-material:substance-25dmHexane
1007 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1008 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_25dmhexane> .
1009 -
1010 -ep-material:substance-2mButane
1011 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1012 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mbutane> .
1013 -
1014 -ep-material:substance-2mHexane
1015 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1016 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mhexane> .
1017 -
1018 -ep-material:substance-2mPentane
1019 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1020 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpentane> .
1021 -
1022 -ep-material:substance-2mPropane
1023 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1024 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpropane> .
1025 -
1026 -ep-material:substance-33dmPentane
1027 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1028 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_33dmpentane> .
1029 -
1030 -ep-material:substance-3etPentane
1031 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1032 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3etpentane> .
1033 -
1034 -ep-material:substance-3mHexane
1035 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1036 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mhexane> .
1037 -
1038 -ep-material:substance-3mPentane
1039 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1040 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mpentane> .
1041 -
1042 -ep-material:substance-Ar
1043 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1044 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_Ar> .
1045 -
1046 -ep-material:substance-Benzene
1047 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1048 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_benzene> .
1049 -
1050 -ep-material:substance-Butane
1051 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1052 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_butane> .
1053 -
1054 -ep-material:substance-C11F
1055 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1056 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C11F> .
1057 -
1058 -ep-material:substance-C12F
1059 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1060 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C12F> .
1061 -
1062 -ep-material:substance-C13F
1063 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1064 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C13F> .
1065 -
1066 -ep-material:substance-C13dmcyPentane
1067 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1068 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_c13dmcypentane> .
1069 -
1070 -ep-material:substance-C14F
1071 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1072 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C14F> .
1073 -
1074 -ep-material:substance-C15F
1075 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1076 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C15F> .
1077 -
1078 -ep-material:substance-C16F
1079 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1080 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C16F> .
1081 -
1082 -ep-material:substance-C17F
1083 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1084 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C17F> .
1085 -
1086 -ep-material:substance-C18F
1087 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1088 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C18F> .
1089 -
1090 -ep-material:substance-C19F
1091 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1092 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C19F> .
1093 -
1094 -ep-material:substance-C20F
1095 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1096 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C20F> .
1097 -
1098 -ep-material:substance-C21F
1099 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1100 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C21F> .
1101 -
1102 -ep-material:substance-C22F
1103 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1104 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C22F> .
1105 -
1106 -ep-material:substance-C23F
1107 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1108 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C23F> .
1109 -
1110 -ep-material:substance-C24F
1111 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1112 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C24F> .
1113 -
1114 -ep-material:substance-C25F
1115 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1116 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C25F> .
1117 -
1118 -ep-material:substance-C26F
1119 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1120 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C26F> .
1121 -
1122 -ep-material:substance-C27F
1123 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1124 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C27F> .
1125 -
1126 -ep-material:substance-C28F
1127 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1128 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C28F> .
1129 -
1130 -ep-material:substance-C29F
1131 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1132 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C29F> .
1133 -
1134 -ep-material:substance-C30F
1135 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1136 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C30F> .
1137 -
1138 -ep-material:substance-C31F
1139 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1140 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C31F> .
1141 -
1142 -ep-material:substance-C32F
1143 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1144 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C32F> .
1145 -
1146 -ep-material:substance-C33F
1147 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1148 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C33F> .
1149 -
1150 -ep-material:substance-C34F
1151 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1152 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C34F> .
1153 -
1154 -ep-material:substance-C35F
1155 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1156 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C35F> .
1157 -
1158 -ep-material:substance-C36F
1159 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1160 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C36F> .
1161 -
1162 -ep-material:substance-C37F
1163 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1164 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C37F> .
1165 -
1166 -ep-material:substance-C38F
1167 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1168 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C38F> .
1169 -
1170 -ep-material:substance-C39F
1171 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1172 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C39F> .
1173 -
1174 -ep-material:substance-C40F
1175 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1176 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C40F> .
1177 -
1178 -ep-material:substance-C41F
1179 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1180 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C41F> .
1181 -
1182 -ep-material:substance-C42F
1183 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1184 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C42F> .
1185 -
1186 -ep-material:substance-C43F
1187 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1188 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C43F> .
1189 -
1190 -ep-material:substance-C44F
1191 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1192 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C44F> .
1193 -
1194 -ep-material:substance-C45F
1195 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1196 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C45F> .
1197 -
1198 -ep-material:substance-C46F
1199 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1200 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C46F> .
1201 -
1202 -ep-material:substance-C47F
1203 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1204 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C47F> .
1205 -
1206 -ep-material:substance-C48F
1207 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1208 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C48F> .
1209 -
1210 -ep-material:substance-C49F
1211 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1212 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C49F> .
1213 -
1214 -ep-material:substance-CO2
1215 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1216 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_CO2> .
1217 -
1218 -ep-material:substance-Cyclohexane
1219 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1220 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclohexane> .
1221 -
1222 -ep-material:substance-Cyclopentane
1223 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1224 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclopentane> .
1225 -
1226 -ep-material:substance-Decanes
1227 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1228 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_decanes> .
1229 -
1230 -ep-material:substance-EtBenzene
1231 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1232 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etbenzene> .
1233 -
1234 -ep-material:substance-EtcyPentane
1235 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1236 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etcypentane> .
1237 -
1238 -ep-material:substance-Ethane
1239 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1240 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_ethane> .
1241 -
1242 -ep-material:substance-H2
1243 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1244 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2> .
1245 -
1246 -ep-material:substance-H2O
1247 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1248 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2O> .
1249 -
1250 -ep-material:substance-H2S
1251 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1252 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2S> .
1253 -
1254 -ep-material:substance-Heptanes
1255 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1256 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_heptanes> .
1257 -
1258 -ep-material:substance-Hexane
1259 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1260 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexane> .
1261 -
1262 -ep-material:substance-Hexanes
1263 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1264 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexanes> .
1265 -
1266 -ep-material:substance-MBenzene
1267 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1268 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mbenzene> .
1269 -
1270 -ep-material:substance-McyHexane
1271 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1272 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcyhexane> .
1273 -
1274 -ep-material:substance-McyPentane
1275 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1276 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcypentane> .
1277 -
1278 -ep-material:substance-Methane
1279 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1280 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_methane> .
1281 -
1282 -ep-material:substance-N2
1283 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1284 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_N2> .
1285 -
1286 -ep-material:substance-Nonanes
1287 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1288 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_nonanes> .
1289 -
1290 -ep-material:substance-O2
1291 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1292 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_O2> .
1293 -
1294 -ep-material:substance-Octanes
1295 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1296 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_octanes> .
1297 -
1298 -ep-material:substance-T12dmcyPentane
1299 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1300 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t12dmcypentane> .
1301 -
1302 -ep-material:substance-T13dmcyPentane
1303 - rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType ;
1304 - ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t13dmcypentane> .
......
1 # baseURI: http://www.reportinghub.no/ep/schema/1.0/material 1 # baseURI: http://www.reportinghub.no/ep/schema/1.0/material
2 # imports: http://www.reportinghub.no/ep/schema/1.0/core 2 # imports: http://www.reportinghub.no/ep/schema/1.0/core
3 +# imports: http://www.reportinghub.no/ep/schema/1.0/production-core
3 4
4 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> . 5 @prefix ep-core: <http://www.reportinghub.no/ep/schema/core#> .
5 @prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> . 6 @prefix ep-material: <http://www.reportinghub.no/ep/schema/material#> .
7 +@prefix ep-prodcore: <http://www.reportinghub.no/ep/schema/production-core#> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> . 8 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 9 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
8 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 10 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
...@@ -10,9 +12,14 @@ ...@@ -10,9 +12,14 @@
10 12
11 <http://www.reportinghub.no/ep/schema/1.0/material> 13 <http://www.reportinghub.no/ep/schema/1.0/material>
12 rdf:type owl:Ontology ; 14 rdf:type owl:Ontology ;
13 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> ; 15 + owl:imports <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.reportinghub.no/ep/schema/1.0/production-core> ;
14 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 16 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
15 17
18 +ep-material:Air-gas
19 + rdf:type owl:Class ;
20 + rdfs:label "air gas"^^xsd:string ;
21 + rdfs:subClassOf ep-material:NonHcGas .
22 +
16 ep-material:AqueousMaterial 23 ep-material:AqueousMaterial
17 rdf:type owl:Class ; 24 rdf:type owl:Class ;
18 rdfs:label "aqueous material"^^xsd:string ; 25 rdfs:label "aqueous material"^^xsd:string ;
...@@ -23,6 +30,11 @@ ep-material:BasicSedimentAndWater ...@@ -23,6 +30,11 @@ ep-material:BasicSedimentAndWater
23 rdfs:label "basic sediment and water"^^xsd:string ; 30 rdfs:label "basic sediment and water"^^xsd:string ;
24 rdfs:subClassOf ep-material:Fluid . 31 rdfs:subClassOf ep-material:Fluid .
25 32
33 +ep-material:Brine
34 + rdf:type owl:Class ;
35 + rdfs:label "brine"^^xsd:string ;
36 + rdfs:subClassOf ep-material:Water .
37 +
26 ep-material:C10AndHeavier 38 ep-material:C10AndHeavier
27 rdf:type owl:Class ; 39 rdf:type owl:Class ;
28 rdfs:label "C10+"^^xsd:string ; 40 rdfs:label "C10+"^^xsd:string ;
...@@ -113,6 +125,11 @@ ep-material:C9AndLighter ...@@ -113,6 +125,11 @@ ep-material:C9AndLighter
113 rdfs:label "C9-"^^xsd:string ; 125 rdfs:label "C9-"^^xsd:string ;
114 rdfs:subClassOf ep-material:Material . 126 rdfs:subClassOf ep-material:Material .
115 127
128 +ep-material:CO2-gas
129 + rdf:type owl:Class ;
130 + rdfs:label "CO2 gas"^^xsd:string ;
131 + rdfs:subClassOf ep-material:NonHcGas .
132 +
116 ep-material:CarbonDioxide 133 ep-material:CarbonDioxide
117 rdf:type owl:Class ; 134 rdf:type owl:Class ;
118 rdfs:label "carbon dioxide"^^xsd:string ; 135 rdfs:label "carbon dioxide"^^xsd:string ;
...@@ -167,6 +184,11 @@ ep-material:Dioxygen ...@@ -167,6 +184,11 @@ ep-material:Dioxygen
167 rdfs:label "dioxygen"^^xsd:string ; 184 rdfs:label "dioxygen"^^xsd:string ;
168 rdfs:subClassOf ep-material:Material . 185 rdfs:subClassOf ep-material:Material .
169 186
187 +ep-material:DryFluid
188 + rdf:type owl:Class ;
189 + rdfs:label "dry fluid"^^xsd:string ;
190 + rdfs:subClassOf ep-material:Fluid .
191 +
170 ep-material:Ethane 192 ep-material:Ethane
171 rdf:type owl:Class ; 193 rdf:type owl:Class ;
172 rdfs:label "ethane"^^xsd:string ; 194 rdfs:label "ethane"^^xsd:string ;
...@@ -187,6 +209,16 @@ ep-material:Fluid ...@@ -187,6 +209,16 @@ ep-material:Fluid
187 rdfs:label "fluid"^^xsd:string ; 209 rdfs:label "fluid"^^xsd:string ;
188 rdfs:subClassOf ep-material:Material . 210 rdfs:subClassOf ep-material:Material .
189 211
212 +ep-material:FluidFraction
213 + rdf:type owl:Class ;
214 + rdfs:label "fluid fraction"^^xsd:string ;
215 + rdfs:subClassOf ep-material:Fluid .
216 +
217 +ep-material:FreshWater
218 + rdf:type owl:Class ;
219 + rdfs:label "fresh water"^^xsd:string ;
220 + rdfs:subClassOf ep-material:Water .
221 +
190 ep-material:Gas 222 ep-material:Gas
191 rdf:type owl:Class ; 223 rdf:type owl:Class ;
192 rdfs:label "gas"^^xsd:string ; 224 rdfs:label "gas"^^xsd:string ;
...@@ -336,6 +368,11 @@ ep-material:NitrogenOxideGas ...@@ -336,6 +368,11 @@ ep-material:NitrogenOxideGas
336 rdfs:label "nitrogen oxide gas"^^xsd:string ; 368 rdfs:label "nitrogen oxide gas"^^xsd:string ;
337 rdfs:subClassOf ep-material:Material . 369 rdfs:subClassOf ep-material:Material .
338 370
371 +ep-material:NonHcGas
372 + rdf:type owl:Class ;
373 + rdfs:label "non-HC gas"^^xsd:string ;
374 + rdfs:subClassOf ep-material:Gas .
375 +
339 ep-material:NormalButane 376 ep-material:NormalButane
340 rdf:type owl:Class ; 377 rdf:type owl:Class ;
341 rdfs:label "normal butane"^^xsd:string ; 378 rdfs:label "normal butane"^^xsd:string ;
...@@ -381,31 +418,43 @@ ep-material:OrganicCarbon ...@@ -381,31 +418,43 @@ ep-material:OrganicCarbon
381 rdfs:label "organic carbon"^^xsd:string ; 418 rdfs:label "organic carbon"^^xsd:string ;
382 rdfs:subClassOf ep-material:Material . 419 rdfs:subClassOf ep-material:Material .
383 420
384 -ep-material:Pentane 421 +ep-material:OtherInjectionFluid
385 rdf:type owl:Class ; 422 rdf:type owl:Class ;
423 + rdfs:label "other injection fluid"^^xsd:string ;
424 + rdfs:subClassOf ep-material:Fluid .
425 +
426 +ep-material:Pentane
427 + rdf:type owl:Class , ep-material:SubstanceType ;
386 rdfs:label "pentane"^^xsd:string ; 428 rdfs:label "pentane"^^xsd:string ;
387 - rdfs:subClassOf ep-material:Material . 429 + rdfs:subClassOf ep-material:Material ;
430 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_pentane> .
388 431
389 ep-material:PetroleumGasLiquid 432 ep-material:PetroleumGasLiquid
390 rdf:type owl:Class ; 433 rdf:type owl:Class ;
391 rdfs:label "petroleum gas liquid"^^xsd:string ; 434 rdfs:label "petroleum gas liquid"^^xsd:string ;
392 rdfs:subClassOf ep-material:Material . 435 rdfs:subClassOf ep-material:Material .
393 436
394 -ep-material:ProductMaterialType 437 +ep-material:PlusFraction
395 - rdf:type rdfs:Class ; 438 + rdf:type owl:Class ;
396 - rdfs:label " product material type"^^xsd:string ; 439 + rdfs:label "plus fraction"^^xsd:string ;
397 - rdfs:subClassOf owl:Class . 440 + rdfs:subClassOf ep-material:Fluid .
398 441
399 ep-material:Propane 442 ep-material:Propane
400 - rdf:type owl:Class ; 443 + rdf:type owl:Class , ep-material:SubstanceType ;
401 rdfs:label "propane"^^xsd:string ; 444 rdfs:label "propane"^^xsd:string ;
402 - rdfs:subClassOf ep-material:Material . 445 + rdfs:subClassOf ep-material:Material ;
446 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_propane> .
403 447
404 ep-material:Propane-component 448 ep-material:Propane-component
405 rdf:type owl:Class ; 449 rdf:type owl:Class ;
406 rdfs:label "propane - component"^^xsd:string ; 450 rdfs:label "propane - component"^^xsd:string ;
407 rdfs:subClassOf ep-material:Material . 451 rdfs:subClassOf ep-material:Material .
408 452
453 +ep-material:PureFluid
454 + rdf:type owl:Class ;
455 + rdfs:label "pure fluid"^^xsd:string ;
456 + rdfs:subClassOf ep-material:Fluid .
457 +
409 ep-material:QuantityOfMaterial 458 ep-material:QuantityOfMaterial
410 rdf:type owl:Class ; 459 rdf:type owl:Class ;
411 rdfs:label "(temporal part of a) quantity of material"^^xsd:string ; 460 rdfs:label "(temporal part of a) quantity of material"^^xsd:string ;
...@@ -421,11 +470,31 @@ ep-material:Sand ...@@ -421,11 +470,31 @@ ep-material:Sand
421 rdfs:label "sand"^^xsd:string ; 470 rdfs:label "sand"^^xsd:string ;
422 rdfs:subClassOf ep-material:Fluid . 471 rdfs:subClassOf ep-material:Fluid .
423 472
473 +ep-material:SplitFraction
474 + rdf:type owl:Class ;
475 + rdfs:label "split fraction"^^xsd:string ;
476 + rdfs:subClassOf ep-material:Fluid .
477 +
478 +ep-material:Steam
479 + rdf:type owl:Class ;
480 + rdfs:label "steam"^^xsd:string ;
481 + rdfs:subClassOf ep-material:NonHcGas .
482 +
483 +ep-material:SubstanceType
484 + rdf:type rdfs:Class ;
485 + rdfs:label "substance type"^^xsd:string ;
486 + rdfs:subClassOf owl:Class .
487 +
424 ep-material:Triethyleneglycol 488 ep-material:Triethyleneglycol
425 rdf:type owl:Class ; 489 rdf:type owl:Class ;
426 rdfs:label "triethyleneglycol"^^xsd:string ; 490 rdfs:label "triethyleneglycol"^^xsd:string ;
427 rdfs:subClassOf ep-material:Material . 491 rdfs:subClassOf ep-material:Material .
428 492
493 +ep-material:UnknownFluid
494 + rdf:type owl:Class ;
495 + rdfs:label "unknown fluid"^^xsd:string ;
496 + rdfs:subClassOf ep-material:Fluid .
497 +
429 ep-material:Vapour 498 ep-material:Vapour
430 rdf:type owl:Class ; 499 rdf:type owl:Class ;
431 rdfs:label "vapour"^^xsd:string ; 500 rdfs:label "vapour"^^xsd:string ;
...@@ -500,454 +569,544 @@ ep-material:secondMaterialOfPair ...@@ -500,454 +569,544 @@ ep-material:secondMaterialOfPair
500 rdfs:range ep-material:Material . 569 rdfs:range ep-material:Material .
501 570
502 ep-material:substance-11dmcyPentane 571 ep-material:substance-11dmcyPentane
503 - rdf:type owl:Class ; 572 + rdf:type owl:Class , ep-material:SubstanceType ;
504 rdfs:label "11dmcy pentane"^^xsd:string ; 573 rdfs:label "11dmcy pentane"^^xsd:string ;
505 - rdfs:subClassOf ep-material:Material . 574 + rdfs:subClassOf ep-material:Material ;
575 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_11dmcypentane> .
506 576
507 ep-material:substance-124tmBenzene 577 ep-material:substance-124tmBenzene
508 - rdf:type owl:Class ; 578 + rdf:type owl:Class , ep-material:SubstanceType ;
509 rdfs:label "124tm benzene"^^xsd:string ; 579 rdfs:label "124tm benzene"^^xsd:string ;
510 - rdfs:subClassOf ep-material:Material . 580 + rdfs:subClassOf ep-material:Material ;
581 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_124tmbenzene> .
511 582
512 ep-material:substance-12dmBenzene 583 ep-material:substance-12dmBenzene
513 - rdf:type owl:Class ; 584 + rdf:type owl:Class , ep-material:SubstanceType ;
514 rdfs:label "12dm benzene"^^xsd:string ; 585 rdfs:label "12dm benzene"^^xsd:string ;
515 - rdfs:subClassOf ep-material:Material . 586 + rdfs:subClassOf ep-material:Material ;
587 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_12dmbenzene> .
516 588
517 ep-material:substance-13dmBenzene 589 ep-material:substance-13dmBenzene
518 - rdf:type owl:Class ; 590 + rdf:type owl:Class , ep-material:SubstanceType ;
519 rdfs:label "13dm benzene"^^xsd:string ; 591 rdfs:label "13dm benzene"^^xsd:string ;
520 - rdfs:subClassOf ep-material:Material . 592 + rdfs:subClassOf ep-material:Material ;
593 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_13dmbenzene> .
521 594
522 ep-material:substance-14dmBenzene 595 ep-material:substance-14dmBenzene
523 - rdf:type owl:Class ; 596 + rdf:type owl:Class , ep-material:SubstanceType ;
524 rdfs:label "14dm benzene"^^xsd:string ; 597 rdfs:label "14dm benzene"^^xsd:string ;
525 - rdfs:subClassOf ep-material:Material . 598 + rdfs:subClassOf ep-material:Material ;
599 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_14dmbenzene> .
526 600
527 ep-material:substance-223tmButane 601 ep-material:substance-223tmButane
528 - rdf:type owl:Class ; 602 + rdf:type owl:Class , ep-material:SubstanceType ;
529 rdfs:label "223tm butane"^^xsd:string ; 603 rdfs:label "223tm butane"^^xsd:string ;
530 - rdfs:subClassOf ep-material:Material . 604 + rdfs:subClassOf ep-material:Material ;
605 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmbutane> .
531 606
532 ep-material:substance-223tmPentane 607 ep-material:substance-223tmPentane
533 - rdf:type owl:Class ; 608 + rdf:type owl:Class , ep-material:SubstanceType ;
534 rdfs:label "223tm pentane"^^xsd:string ; 609 rdfs:label "223tm pentane"^^xsd:string ;
535 - rdfs:subClassOf ep-material:Material . 610 + rdfs:subClassOf ep-material:Material ;
611 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmpentane> .
536 612
537 ep-material:substance-22dmButane 613 ep-material:substance-22dmButane
538 - rdf:type owl:Class ; 614 + rdf:type owl:Class , ep-material:SubstanceType ;
539 rdfs:label "22dm butane"^^xsd:string ; 615 rdfs:label "22dm butane"^^xsd:string ;
540 - rdfs:subClassOf ep-material:Material . 616 + rdfs:subClassOf ep-material:Material ;
617 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmbutane> .
541 618
542 ep-material:substance-22dmHexane 619 ep-material:substance-22dmHexane
543 - rdf:type owl:Class ; 620 + rdf:type owl:Class , ep-material:SubstanceType ;
544 rdfs:label "22dm hexane"^^xsd:string ; 621 rdfs:label "22dm hexane"^^xsd:string ;
545 - rdfs:subClassOf ep-material:Material . 622 + rdfs:subClassOf ep-material:Material ;
623 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmhexane> .
546 624
547 ep-material:substance-22dmPentane 625 ep-material:substance-22dmPentane
548 - rdf:type owl:Class ; 626 + rdf:type owl:Class , ep-material:SubstanceType ;
549 rdfs:label "22dm pentane"^^xsd:string ; 627 rdfs:label "22dm pentane"^^xsd:string ;
550 - rdfs:subClassOf ep-material:Material . 628 + rdfs:subClassOf ep-material:Material ;
629 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpentane> .
551 630
552 ep-material:substance-22dmPropane 631 ep-material:substance-22dmPropane
553 - rdf:type owl:Class ; 632 + rdf:type owl:Class , ep-material:SubstanceType ;
554 rdfs:label "22dm propane"^^xsd:string ; 633 rdfs:label "22dm propane"^^xsd:string ;
555 - rdfs:subClassOf ep-material:Material . 634 + rdfs:subClassOf ep-material:Material ;
635 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpropane> .
556 636
557 ep-material:substance-23dmButane 637 ep-material:substance-23dmButane
558 - rdf:type owl:Class ; 638 + rdf:type owl:Class , ep-material:SubstanceType ;
559 rdfs:label "23dm butane"^^xsd:string ; 639 rdfs:label "23dm butane"^^xsd:string ;
560 - rdfs:subClassOf ep-material:Material . 640 + rdfs:subClassOf ep-material:Material ;
641 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmbutane> .
561 642
562 ep-material:substance-23dmPentane 643 ep-material:substance-23dmPentane
563 - rdf:type owl:Class ; 644 + rdf:type owl:Class , ep-material:SubstanceType ;
564 rdfs:label "23dm pentane"^^xsd:string ; 645 rdfs:label "23dm pentane"^^xsd:string ;
565 - rdfs:subClassOf ep-material:Material . 646 + rdfs:subClassOf ep-material:Material ;
647 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmpentane> .
566 648
567 ep-material:substance-24dmHexane 649 ep-material:substance-24dmHexane
568 - rdf:type owl:Class ; 650 + rdf:type owl:Class , ep-material:SubstanceType ;
569 rdfs:label "24dm hexane"^^xsd:string ; 651 rdfs:label "24dm hexane"^^xsd:string ;
570 - rdfs:subClassOf ep-material:Material . 652 + rdfs:subClassOf ep-material:Material ;
653 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmhexane> .
571 654
572 ep-material:substance-24dmPentane 655 ep-material:substance-24dmPentane
573 - rdf:type owl:Class ; 656 + rdf:type owl:Class , ep-material:SubstanceType ;
574 rdfs:label "24dm pentane"^^xsd:string ; 657 rdfs:label "24dm pentane"^^xsd:string ;
575 - rdfs:subClassOf ep-material:Material . 658 + rdfs:subClassOf ep-material:Material ;
659 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmpentane> .
576 660
577 ep-material:substance-25dmHexane 661 ep-material:substance-25dmHexane
578 - rdf:type owl:Class ; 662 + rdf:type owl:Class , ep-material:SubstanceType ;
579 rdfs:label "25dm hexane"^^xsd:string ; 663 rdfs:label "25dm hexane"^^xsd:string ;
580 - rdfs:subClassOf ep-material:Material . 664 + rdfs:subClassOf ep-material:Material ;
665 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_25dmhexane> .
581 666
582 ep-material:substance-2mButane 667 ep-material:substance-2mButane
583 - rdf:type owl:Class ; 668 + rdf:type owl:Class , ep-material:SubstanceType ;
584 rdfs:label "2m butane"^^xsd:string ; 669 rdfs:label "2m butane"^^xsd:string ;
585 - rdfs:subClassOf ep-material:Material . 670 + rdfs:subClassOf ep-material:Material ;
671 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mbutane> .
586 672
587 ep-material:substance-2mHexane 673 ep-material:substance-2mHexane
588 - rdf:type owl:Class ; 674 + rdf:type owl:Class , ep-material:SubstanceType ;
589 rdfs:label "2m hexane"^^xsd:string ; 675 rdfs:label "2m hexane"^^xsd:string ;
590 - rdfs:subClassOf ep-material:Material . 676 + rdfs:subClassOf ep-material:Material ;
677 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mhexane> .
591 678
592 ep-material:substance-2mPentane 679 ep-material:substance-2mPentane
593 - rdf:type owl:Class ; 680 + rdf:type owl:Class , ep-material:SubstanceType ;
594 rdfs:label "2m pentane"^^xsd:string ; 681 rdfs:label "2m pentane"^^xsd:string ;
595 - rdfs:subClassOf ep-material:Material . 682 + rdfs:subClassOf ep-material:Material ;
683 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpentane> .
596 684
597 ep-material:substance-2mPropane 685 ep-material:substance-2mPropane
598 - rdf:type owl:Class ; 686 + rdf:type owl:Class , ep-material:SubstanceType ;
599 rdfs:label "2m propane"^^xsd:string ; 687 rdfs:label "2m propane"^^xsd:string ;
600 - rdfs:subClassOf ep-material:Material . 688 + rdfs:subClassOf ep-material:Material ;
689 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpropane> .
601 690
602 ep-material:substance-33dmPentane 691 ep-material:substance-33dmPentane
603 - rdf:type owl:Class ; 692 + rdf:type owl:Class , ep-material:SubstanceType ;
604 rdfs:label "33dm pentane"^^xsd:string ; 693 rdfs:label "33dm pentane"^^xsd:string ;
605 - rdfs:subClassOf ep-material:Material . 694 + rdfs:subClassOf ep-material:Material ;
695 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_33dmpentane> .
606 696
607 ep-material:substance-3etPentane 697 ep-material:substance-3etPentane
608 - rdf:type owl:Class ; 698 + rdf:type owl:Class , ep-material:SubstanceType ;
609 rdfs:label "3et pentane"^^xsd:string ; 699 rdfs:label "3et pentane"^^xsd:string ;
610 - rdfs:subClassOf ep-material:Material . 700 + rdfs:subClassOf ep-material:Material ;
701 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3etpentane> .
611 702
612 ep-material:substance-3mHexane 703 ep-material:substance-3mHexane
613 - rdf:type owl:Class ; 704 + rdf:type owl:Class , ep-material:SubstanceType ;
614 rdfs:label "3m hexane"^^xsd:string ; 705 rdfs:label "3m hexane"^^xsd:string ;
615 - rdfs:subClassOf ep-material:Material . 706 + rdfs:subClassOf ep-material:Material ;
707 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mhexane> .
616 708
617 ep-material:substance-3mPentane 709 ep-material:substance-3mPentane
618 - rdf:type owl:Class ; 710 + rdf:type owl:Class , ep-material:SubstanceType ;
619 rdfs:label "3m pentane"^^xsd:string ; 711 rdfs:label "3m pentane"^^xsd:string ;
620 - rdfs:subClassOf ep-material:Material . 712 + rdfs:subClassOf ep-material:Material ;
713 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mpentane> .
621 714
622 ep-material:substance-Ar 715 ep-material:substance-Ar
623 - rdf:type owl:Class ; 716 + rdf:type owl:Class , ep-material:SubstanceType ;
624 rdfs:label "Argon"^^xsd:string , "Ar"^^xsd:string ; 717 rdfs:label "Argon"^^xsd:string , "Ar"^^xsd:string ;
625 - rdfs:subClassOf ep-material:Material . 718 + rdfs:subClassOf ep-material:Material ;
719 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_Ar> .
626 720
627 ep-material:substance-Benzene 721 ep-material:substance-Benzene
628 - rdf:type owl:Class ; 722 + rdf:type owl:Class , ep-material:SubstanceType ;
629 rdfs:label "benzene"^^xsd:string ; 723 rdfs:label "benzene"^^xsd:string ;
630 - rdfs:subClassOf ep-material:Material . 724 + rdfs:subClassOf ep-material:Material ;
725 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_benzene> .
631 726
632 ep-material:substance-Butane 727 ep-material:substance-Butane
633 - rdf:type owl:Class ; 728 + rdf:type owl:Class , ep-material:SubstanceType ;
634 rdfs:label "butane"^^xsd:string ; 729 rdfs:label "butane"^^xsd:string ;
635 - rdfs:subClassOf ep-material:Material . 730 + rdfs:subClassOf ep-material:Material ;
731 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_butane> .
636 732
637 ep-material:substance-C11F 733 ep-material:substance-C11F
638 - rdf:type owl:Class ; 734 + rdf:type owl:Class , ep-material:SubstanceType ;
639 rdfs:label "C11F"^^xsd:string ; 735 rdfs:label "C11F"^^xsd:string ;
640 - rdfs:subClassOf ep-material:Material . 736 + rdfs:subClassOf ep-material:Material ;
737 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C11F> .
641 738
642 ep-material:substance-C12F 739 ep-material:substance-C12F
643 - rdf:type owl:Class ; 740 + rdf:type owl:Class , ep-material:SubstanceType ;
644 rdfs:label "C12F"^^xsd:string ; 741 rdfs:label "C12F"^^xsd:string ;
645 - rdfs:subClassOf ep-material:Material . 742 + rdfs:subClassOf ep-material:Material ;
743 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C12F> .
646 744
647 ep-material:substance-C13F 745 ep-material:substance-C13F
648 - rdf:type owl:Class ; 746 + rdf:type owl:Class , ep-material:SubstanceType ;
649 rdfs:label "C13F"^^xsd:string ; 747 rdfs:label "C13F"^^xsd:string ;
650 - rdfs:subClassOf ep-material:Material . 748 + rdfs:subClassOf ep-material:Material ;
749 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C13F> .
651 750
652 ep-material:substance-C13dmcyPentane 751 ep-material:substance-C13dmcyPentane
653 - rdf:type owl:Class ; 752 + rdf:type owl:Class , ep-material:SubstanceType ;
654 rdfs:label "c13dmcy pentane"^^xsd:string ; 753 rdfs:label "c13dmcy pentane"^^xsd:string ;
655 - rdfs:subClassOf ep-material:Material . 754 + rdfs:subClassOf ep-material:Material ;
755 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_c13dmcypentane> .
656 756
657 ep-material:substance-C14F 757 ep-material:substance-C14F
658 - rdf:type owl:Class ; 758 + rdf:type owl:Class , ep-material:SubstanceType ;
659 rdfs:label "C14F"^^xsd:string ; 759 rdfs:label "C14F"^^xsd:string ;
660 - rdfs:subClassOf ep-material:Material . 760 + rdfs:subClassOf ep-material:Material ;
761 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C14F> .
661 762
662 ep-material:substance-C15F 763 ep-material:substance-C15F
663 - rdf:type owl:Class ; 764 + rdf:type owl:Class , ep-material:SubstanceType ;
664 rdfs:label "C15F"^^xsd:string ; 765 rdfs:label "C15F"^^xsd:string ;
665 - rdfs:subClassOf ep-material:Material . 766 + rdfs:subClassOf ep-material:Material ;
767 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C15F> .
666 768
667 ep-material:substance-C16F 769 ep-material:substance-C16F
668 - rdf:type owl:Class ; 770 + rdf:type owl:Class , ep-material:SubstanceType ;
669 rdfs:label "C16F"^^xsd:string ; 771 rdfs:label "C16F"^^xsd:string ;
670 - rdfs:subClassOf ep-material:Material . 772 + rdfs:subClassOf ep-material:Material ;
773 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C16F> .
671 774
672 ep-material:substance-C17F 775 ep-material:substance-C17F
673 - rdf:type owl:Class ; 776 + rdf:type owl:Class , ep-material:SubstanceType ;
674 rdfs:label "C17F"^^xsd:string ; 777 rdfs:label "C17F"^^xsd:string ;
675 - rdfs:subClassOf ep-material:Material . 778 + rdfs:subClassOf ep-material:Material ;
779 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C17F> .
676 780
677 ep-material:substance-C18F 781 ep-material:substance-C18F
678 - rdf:type owl:Class ; 782 + rdf:type owl:Class , ep-material:SubstanceType ;
679 rdfs:label "C18F"^^xsd:string ; 783 rdfs:label "C18F"^^xsd:string ;
680 - rdfs:subClassOf ep-material:Material . 784 + rdfs:subClassOf ep-material:Material ;
785 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C18F> .
681 786
682 ep-material:substance-C19F 787 ep-material:substance-C19F
683 - rdf:type owl:Class ; 788 + rdf:type owl:Class , ep-material:SubstanceType ;
684 rdfs:label "C19F"^^xsd:string ; 789 rdfs:label "C19F"^^xsd:string ;
685 - rdfs:subClassOf ep-material:Material . 790 + rdfs:subClassOf ep-material:Material ;
791 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C19F> .
686 792
687 ep-material:substance-C20F 793 ep-material:substance-C20F
688 - rdf:type owl:Class ; 794 + rdf:type owl:Class , ep-material:SubstanceType ;
689 rdfs:label "C20F"^^xsd:string ; 795 rdfs:label "C20F"^^xsd:string ;
690 - rdfs:subClassOf ep-material:Material . 796 + rdfs:subClassOf ep-material:Material ;
797 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C20F> .
691 798
692 ep-material:substance-C21F 799 ep-material:substance-C21F
693 - rdf:type owl:Class ; 800 + rdf:type owl:Class , ep-material:SubstanceType ;
694 rdfs:label "C21F"^^xsd:string ; 801 rdfs:label "C21F"^^xsd:string ;
695 - rdfs:subClassOf ep-material:Material . 802 + rdfs:subClassOf ep-material:Material ;
803 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C21F> .
696 804
697 ep-material:substance-C22F 805 ep-material:substance-C22F
698 - rdf:type owl:Class ; 806 + rdf:type owl:Class , ep-material:SubstanceType ;
699 rdfs:label "C22F"^^xsd:string ; 807 rdfs:label "C22F"^^xsd:string ;
700 - rdfs:subClassOf ep-material:Material . 808 + rdfs:subClassOf ep-material:Material ;
809 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C22F> .
701 810
702 ep-material:substance-C23F 811 ep-material:substance-C23F
703 - rdf:type owl:Class ; 812 + rdf:type owl:Class , ep-material:SubstanceType ;
704 rdfs:label "C23F"^^xsd:string ; 813 rdfs:label "C23F"^^xsd:string ;
705 - rdfs:subClassOf ep-material:Material . 814 + rdfs:subClassOf ep-material:Material ;
815 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C23F> .
706 816
707 ep-material:substance-C24F 817 ep-material:substance-C24F
708 - rdf:type owl:Class ; 818 + rdf:type owl:Class , ep-material:SubstanceType ;
709 rdfs:label "C24F"^^xsd:string ; 819 rdfs:label "C24F"^^xsd:string ;
710 - rdfs:subClassOf ep-material:Material . 820 + rdfs:subClassOf ep-material:Material ;
821 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C24F> .
711 822
712 ep-material:substance-C25F 823 ep-material:substance-C25F
713 - rdf:type owl:Class ; 824 + rdf:type owl:Class , ep-material:SubstanceType ;
714 rdfs:label "C25F"^^xsd:string ; 825 rdfs:label "C25F"^^xsd:string ;
715 - rdfs:subClassOf ep-material:Material . 826 + rdfs:subClassOf ep-material:Material ;
827 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C25F> .
716 828
717 ep-material:substance-C26F 829 ep-material:substance-C26F
718 - rdf:type owl:Class ; 830 + rdf:type owl:Class , ep-material:SubstanceType ;
719 rdfs:label "C26F"^^xsd:string ; 831 rdfs:label "C26F"^^xsd:string ;
720 - rdfs:subClassOf ep-material:Material . 832 + rdfs:subClassOf ep-material:Material ;
833 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C26F> .
721 834
722 ep-material:substance-C27F 835 ep-material:substance-C27F
723 - rdf:type owl:Class ; 836 + rdf:type owl:Class , ep-material:SubstanceType ;
724 rdfs:label "C27F"^^xsd:string ; 837 rdfs:label "C27F"^^xsd:string ;
725 - rdfs:subClassOf ep-material:Material . 838 + rdfs:subClassOf ep-material:Material ;
839 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C27F> .
726 840
727 ep-material:substance-C28F 841 ep-material:substance-C28F
728 - rdf:type owl:Class ; 842 + rdf:type owl:Class , ep-material:SubstanceType ;
729 rdfs:label "C28F"^^xsd:string ; 843 rdfs:label "C28F"^^xsd:string ;
730 - rdfs:subClassOf ep-material:Material . 844 + rdfs:subClassOf ep-material:Material ;
845 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C28F> .
731 846
732 ep-material:substance-C29F 847 ep-material:substance-C29F
733 - rdf:type owl:Class ; 848 + rdf:type owl:Class , ep-material:SubstanceType ;
734 rdfs:label "C29F"^^xsd:string ; 849 rdfs:label "C29F"^^xsd:string ;
735 - rdfs:subClassOf ep-material:Material . 850 + rdfs:subClassOf ep-material:Material ;
851 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C29F> .
736 852
737 ep-material:substance-C30F 853 ep-material:substance-C30F
738 - rdf:type owl:Class ; 854 + rdf:type owl:Class , ep-material:SubstanceType ;
739 rdfs:label "C30F"^^xsd:string ; 855 rdfs:label "C30F"^^xsd:string ;
740 - rdfs:subClassOf ep-material:Material . 856 + rdfs:subClassOf ep-material:Material ;
857 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C30F> .
741 858
742 ep-material:substance-C31F 859 ep-material:substance-C31F
743 - rdf:type owl:Class ; 860 + rdf:type owl:Class , ep-material:SubstanceType ;
744 rdfs:label "C31F"^^xsd:string ; 861 rdfs:label "C31F"^^xsd:string ;
745 - rdfs:subClassOf ep-material:Material . 862 + rdfs:subClassOf ep-material:Material ;
863 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C31F> .
746 864
747 ep-material:substance-C32F 865 ep-material:substance-C32F
748 - rdf:type owl:Class ; 866 + rdf:type owl:Class , ep-material:SubstanceType ;
749 rdfs:label "C32F"^^xsd:string ; 867 rdfs:label "C32F"^^xsd:string ;
750 - rdfs:subClassOf ep-material:Material . 868 + rdfs:subClassOf ep-material:Material ;
869 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C32F> .
751 870
752 ep-material:substance-C33F 871 ep-material:substance-C33F
753 - rdf:type owl:Class ; 872 + rdf:type owl:Class , ep-material:SubstanceType ;
754 rdfs:label "C33F"^^xsd:string ; 873 rdfs:label "C33F"^^xsd:string ;
755 - rdfs:subClassOf ep-material:Material . 874 + rdfs:subClassOf ep-material:Material ;
875 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C33F> .
756 876
757 ep-material:substance-C34F 877 ep-material:substance-C34F
758 - rdf:type owl:Class ; 878 + rdf:type owl:Class , ep-material:SubstanceType ;
759 rdfs:label "C34F"^^xsd:string ; 879 rdfs:label "C34F"^^xsd:string ;
760 - rdfs:subClassOf ep-material:Material . 880 + rdfs:subClassOf ep-material:Material ;
881 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C34F> .
761 882
762 ep-material:substance-C35F 883 ep-material:substance-C35F
763 - rdf:type owl:Class ; 884 + rdf:type owl:Class , ep-material:SubstanceType ;
764 rdfs:label "C35F"^^xsd:string ; 885 rdfs:label "C35F"^^xsd:string ;
765 - rdfs:subClassOf ep-material:Material . 886 + rdfs:subClassOf ep-material:Material ;
887 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C35F> .
766 888
767 ep-material:substance-C36F 889 ep-material:substance-C36F
768 - rdf:type owl:Class ; 890 + rdf:type owl:Class , ep-material:SubstanceType ;
769 rdfs:label "C36F"^^xsd:string ; 891 rdfs:label "C36F"^^xsd:string ;
770 - rdfs:subClassOf ep-material:Material . 892 + rdfs:subClassOf ep-material:Material ;
893 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C36F> .
771 894
772 ep-material:substance-C37F 895 ep-material:substance-C37F
773 - rdf:type owl:Class ; 896 + rdf:type owl:Class , ep-material:SubstanceType ;
774 rdfs:label "C37F"^^xsd:string ; 897 rdfs:label "C37F"^^xsd:string ;
775 - rdfs:subClassOf ep-material:Material . 898 + rdfs:subClassOf ep-material:Material ;
899 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C37F> .
776 900
777 ep-material:substance-C38F 901 ep-material:substance-C38F
778 - rdf:type owl:Class ; 902 + rdf:type owl:Class , ep-material:SubstanceType ;
779 rdfs:label "C38F"^^xsd:string ; 903 rdfs:label "C38F"^^xsd:string ;
780 - rdfs:subClassOf ep-material:Material . 904 + rdfs:subClassOf ep-material:Material ;
905 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C38F> .
781 906
782 ep-material:substance-C39F 907 ep-material:substance-C39F
783 - rdf:type owl:Class ; 908 + rdf:type owl:Class , ep-material:SubstanceType ;
784 rdfs:label "C39F"^^xsd:string ; 909 rdfs:label "C39F"^^xsd:string ;
785 - rdfs:subClassOf ep-material:Material . 910 + rdfs:subClassOf ep-material:Material ;
911 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C39F> .
786 912
787 ep-material:substance-C40F 913 ep-material:substance-C40F
788 - rdf:type owl:Class ; 914 + rdf:type owl:Class , ep-material:SubstanceType ;
789 rdfs:label "C40F"^^xsd:string ; 915 rdfs:label "C40F"^^xsd:string ;
790 - rdfs:subClassOf ep-material:Material . 916 + rdfs:subClassOf ep-material:Material ;
917 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C40F> .
791 918
792 ep-material:substance-C41F 919 ep-material:substance-C41F
793 - rdf:type owl:Class ; 920 + rdf:type owl:Class , ep-material:SubstanceType ;
794 rdfs:label "C41F"^^xsd:string ; 921 rdfs:label "C41F"^^xsd:string ;
795 - rdfs:subClassOf ep-material:Material . 922 + rdfs:subClassOf ep-material:Material ;
923 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C41F> .
796 924
797 ep-material:substance-C42F 925 ep-material:substance-C42F
798 - rdf:type owl:Class ; 926 + rdf:type owl:Class , ep-material:SubstanceType ;
799 rdfs:label "C42F"^^xsd:string ; 927 rdfs:label "C42F"^^xsd:string ;
800 - rdfs:subClassOf ep-material:Material . 928 + rdfs:subClassOf ep-material:Material ;
929 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C42F> .
801 930
802 ep-material:substance-C43F 931 ep-material:substance-C43F
803 - rdf:type owl:Class ; 932 + rdf:type owl:Class , ep-material:SubstanceType ;
804 rdfs:label "C43F"^^xsd:string ; 933 rdfs:label "C43F"^^xsd:string ;
805 - rdfs:subClassOf ep-material:Material . 934 + rdfs:subClassOf ep-material:Material ;
935 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C43F> .
806 936
807 ep-material:substance-C44F 937 ep-material:substance-C44F
808 - rdf:type owl:Class ; 938 + rdf:type owl:Class , ep-material:SubstanceType ;
809 rdfs:label "C44F"^^xsd:string ; 939 rdfs:label "C44F"^^xsd:string ;
810 - rdfs:subClassOf ep-material:Material . 940 + rdfs:subClassOf ep-material:Material ;
941 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C44F> .
811 942
812 ep-material:substance-C45F 943 ep-material:substance-C45F
813 - rdf:type owl:Class ; 944 + rdf:type owl:Class , ep-material:SubstanceType ;
814 rdfs:label "C45F"^^xsd:string ; 945 rdfs:label "C45F"^^xsd:string ;
815 - rdfs:subClassOf ep-material:Material . 946 + rdfs:subClassOf ep-material:Material ;
947 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C45F> .
816 948
817 ep-material:substance-C46F 949 ep-material:substance-C46F
818 - rdf:type owl:Class ; 950 + rdf:type owl:Class , ep-material:SubstanceType ;
819 rdfs:label "C46F"^^xsd:string ; 951 rdfs:label "C46F"^^xsd:string ;
820 - rdfs:subClassOf ep-material:Material . 952 + rdfs:subClassOf ep-material:Material ;
953 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C46F> .
821 954
822 ep-material:substance-C47F 955 ep-material:substance-C47F
823 - rdf:type owl:Class ; 956 + rdf:type owl:Class , ep-material:SubstanceType ;
824 rdfs:label "C47F"^^xsd:string ; 957 rdfs:label "C47F"^^xsd:string ;
825 - rdfs:subClassOf ep-material:Material . 958 + rdfs:subClassOf ep-material:Material ;
959 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C47F> .
826 960
827 ep-material:substance-C48F 961 ep-material:substance-C48F
828 - rdf:type owl:Class ; 962 + rdf:type owl:Class , ep-material:SubstanceType ;
829 rdfs:label "C48F"^^xsd:string ; 963 rdfs:label "C48F"^^xsd:string ;
830 - rdfs:subClassOf ep-material:Material . 964 + rdfs:subClassOf ep-material:Material ;
965 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C48F> .
831 966
832 ep-material:substance-C49F 967 ep-material:substance-C49F
833 - rdf:type owl:Class ; 968 + rdf:type owl:Class , ep-material:SubstanceType ;
834 rdfs:label "C49F"^^xsd:string ; 969 rdfs:label "C49F"^^xsd:string ;
835 - rdfs:subClassOf ep-material:Material . 970 + rdfs:subClassOf ep-material:Material ;
971 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C49F> .
836 972
837 ep-material:substance-CO2 973 ep-material:substance-CO2
838 - rdf:type owl:Class ; 974 + rdf:type owl:Class , ep-material:SubstanceType ;
839 rdfs:label "CO2"^^xsd:string ; 975 rdfs:label "CO2"^^xsd:string ;
840 - rdfs:subClassOf ep-material:Material . 976 + rdfs:subClassOf ep-material:Material ;
977 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_CO2> .
841 978
842 ep-material:substance-Cyclohexane 979 ep-material:substance-Cyclohexane
843 - rdf:type owl:Class ; 980 + rdf:type owl:Class , ep-material:SubstanceType ;
844 rdfs:label "cyclohexane"^^xsd:string ; 981 rdfs:label "cyclohexane"^^xsd:string ;
845 - rdfs:subClassOf ep-material:Material . 982 + rdfs:subClassOf ep-material:Material ;
983 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclohexane> .
846 984
847 ep-material:substance-Cyclopentane 985 ep-material:substance-Cyclopentane
848 - rdf:type owl:Class ; 986 + rdf:type owl:Class , ep-material:SubstanceType ;
849 rdfs:label "cyclopentane"^^xsd:string ; 987 rdfs:label "cyclopentane"^^xsd:string ;
850 - rdfs:subClassOf ep-material:Material . 988 + rdfs:subClassOf ep-material:Material ;
989 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclopentane> .
851 990
852 ep-material:substance-Decanes 991 ep-material:substance-Decanes
853 - rdf:type owl:Class ; 992 + rdf:type owl:Class , ep-material:SubstanceType ;
854 rdfs:label "decanes"^^xsd:string ; 993 rdfs:label "decanes"^^xsd:string ;
855 - rdfs:subClassOf ep-material:Material . 994 + rdfs:subClassOf ep-material:Material ;
995 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_decanes> .
856 996
857 ep-material:substance-EtBenzene 997 ep-material:substance-EtBenzene
858 - rdf:type owl:Class ; 998 + rdf:type owl:Class , ep-material:SubstanceType ;
859 rdfs:label "et benzene"^^xsd:string ; 999 rdfs:label "et benzene"^^xsd:string ;
860 - rdfs:subClassOf ep-material:Material . 1000 + rdfs:subClassOf ep-material:Material ;
1001 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etbenzene> .
861 1002
862 ep-material:substance-EtcyPentane 1003 ep-material:substance-EtcyPentane
863 - rdf:type owl:Class ; 1004 + rdf:type owl:Class , ep-material:SubstanceType ;
864 rdfs:label "etcy pentane"^^xsd:string ; 1005 rdfs:label "etcy pentane"^^xsd:string ;
865 - rdfs:subClassOf ep-material:Material . 1006 + rdfs:subClassOf ep-material:Material ;
1007 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etcypentane> .
866 1008
867 ep-material:substance-Ethane 1009 ep-material:substance-Ethane
868 - rdf:type owl:Class ; 1010 + rdf:type owl:Class , ep-material:SubstanceType ;
869 rdfs:label "ethane"^^xsd:string ; 1011 rdfs:label "ethane"^^xsd:string ;
870 - rdfs:subClassOf ep-material:Material . 1012 + rdfs:subClassOf ep-material:Material ;
1013 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_ethane> .
871 1014
872 ep-material:substance-H2 1015 ep-material:substance-H2
873 - rdf:type owl:Class ; 1016 + rdf:type owl:Class , ep-material:SubstanceType ;
874 rdfs:label "H2"^^xsd:string ; 1017 rdfs:label "H2"^^xsd:string ;
875 - rdfs:subClassOf ep-material:Material . 1018 + rdfs:subClassOf ep-material:Material ;
1019 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2> .
876 1020
877 ep-material:substance-H2O 1021 ep-material:substance-H2O
878 - rdf:type owl:Class ; 1022 + rdf:type owl:Class , ep-material:SubstanceType ;
879 rdfs:label "H2O"^^xsd:string ; 1023 rdfs:label "H2O"^^xsd:string ;
880 - rdfs:subClassOf ep-material:Material . 1024 + rdfs:subClassOf ep-material:Material ;
1025 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2O> .
881 1026
882 ep-material:substance-H2S 1027 ep-material:substance-H2S
883 - rdf:type owl:Class ; 1028 + rdf:type owl:Class , ep-material:SubstanceType ;
884 rdfs:label "H2S"^^xsd:string ; 1029 rdfs:label "H2S"^^xsd:string ;
885 - rdfs:subClassOf ep-material:Material . 1030 + rdfs:subClassOf ep-material:Material ;
1031 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2S> .
886 1032
887 ep-material:substance-Heptanes 1033 ep-material:substance-Heptanes
888 - rdf:type owl:Class ; 1034 + rdf:type owl:Class , ep-material:SubstanceType ;
889 rdfs:label "heptanes"^^xsd:string ; 1035 rdfs:label "heptanes"^^xsd:string ;
890 - rdfs:subClassOf ep-material:Material . 1036 + rdfs:subClassOf ep-material:Material ;
1037 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_heptanes> .
891 1038
892 ep-material:substance-Hexane 1039 ep-material:substance-Hexane
893 - rdf:type owl:Class ; 1040 + rdf:type owl:Class , ep-material:SubstanceType ;
894 rdfs:label "hexane"^^xsd:string ; 1041 rdfs:label "hexane"^^xsd:string ;
895 - rdfs:subClassOf ep-material:Material . 1042 + rdfs:subClassOf ep-material:Material ;
1043 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexane> .
896 1044
897 ep-material:substance-Hexanes 1045 ep-material:substance-Hexanes
898 - rdf:type owl:Class ; 1046 + rdf:type owl:Class , ep-material:SubstanceType ;
899 rdfs:label "hexanes"^^xsd:string ; 1047 rdfs:label "hexanes"^^xsd:string ;
900 - rdfs:subClassOf ep-material:Material . 1048 + rdfs:subClassOf ep-material:Material ;
1049 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexanes> .
901 1050
902 ep-material:substance-MBenzene 1051 ep-material:substance-MBenzene
903 - rdf:type owl:Class ; 1052 + rdf:type owl:Class , ep-material:SubstanceType ;
904 rdfs:label "m benzene"^^xsd:string ; 1053 rdfs:label "m benzene"^^xsd:string ;
905 - rdfs:subClassOf ep-material:Material . 1054 + rdfs:subClassOf ep-material:Material ;
1055 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mbenzene> .
906 1056
907 ep-material:substance-McyHexane 1057 ep-material:substance-McyHexane
908 - rdf:type owl:Class ; 1058 + rdf:type owl:Class , ep-material:SubstanceType ;
909 rdfs:label "mcy hexane"^^xsd:string ; 1059 rdfs:label "mcy hexane"^^xsd:string ;
910 - rdfs:subClassOf ep-material:Material . 1060 + rdfs:subClassOf ep-material:Material ;
1061 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcyhexane> .
911 1062
912 ep-material:substance-McyPentane 1063 ep-material:substance-McyPentane
913 - rdf:type owl:Class ; 1064 + rdf:type owl:Class , ep-material:SubstanceType ;
914 rdfs:label "mcy pentane"^^xsd:string ; 1065 rdfs:label "mcy pentane"^^xsd:string ;
915 - rdfs:subClassOf ep-material:Material . 1066 + rdfs:subClassOf ep-material:Material ;
1067 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcypentane> .
916 1068
917 ep-material:substance-Methane 1069 ep-material:substance-Methane
918 - rdf:type owl:Class ; 1070 + rdf:type owl:Class , ep-material:SubstanceType ;
919 rdfs:label "methane"^^xsd:string ; 1071 rdfs:label "methane"^^xsd:string ;
920 - rdfs:subClassOf ep-material:Material . 1072 + rdfs:subClassOf ep-material:Material ;
1073 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_methane> .
921 1074
922 ep-material:substance-N2 1075 ep-material:substance-N2
923 - rdf:type owl:Class ; 1076 + rdf:type owl:Class , ep-material:SubstanceType ;
924 rdfs:label "N2"^^xsd:string ; 1077 rdfs:label "N2"^^xsd:string ;
925 - rdfs:subClassOf ep-material:Material . 1078 + rdfs:subClassOf ep-material:Material ;
1079 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_N2> .
926 1080
927 ep-material:substance-Nonanes 1081 ep-material:substance-Nonanes
928 - rdf:type owl:Class ; 1082 + rdf:type owl:Class , ep-material:SubstanceType ;
929 rdfs:label "nonanes"^^xsd:string ; 1083 rdfs:label "nonanes"^^xsd:string ;
930 - rdfs:subClassOf ep-material:Material . 1084 + rdfs:subClassOf ep-material:Material ;
1085 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_nonanes> .
931 1086
932 ep-material:substance-O2 1087 ep-material:substance-O2
933 - rdf:type owl:Class ; 1088 + rdf:type owl:Class , ep-material:SubstanceType ;
934 rdfs:label "O2"^^xsd:string ; 1089 rdfs:label "O2"^^xsd:string ;
935 - rdfs:subClassOf ep-material:Material . 1090 + rdfs:subClassOf ep-material:Material ;
1091 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_O2> .
936 1092
937 ep-material:substance-Octanes 1093 ep-material:substance-Octanes
938 - rdf:type owl:Class ; 1094 + rdf:type owl:Class , ep-material:SubstanceType ;
939 rdfs:label "octanes"^^xsd:string ; 1095 rdfs:label "octanes"^^xsd:string ;
940 - rdfs:subClassOf ep-material:Material . 1096 + rdfs:subClassOf ep-material:Material ;
1097 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_octanes> .
941 1098
942 ep-material:substance-T12dmcyPentane 1099 ep-material:substance-T12dmcyPentane
943 - rdf:type owl:Class ; 1100 + rdf:type owl:Class , ep-material:SubstanceType ;
944 rdfs:label "t12dmcy pentane"^^xsd:string ; 1101 rdfs:label "t12dmcy pentane"^^xsd:string ;
945 - rdfs:subClassOf ep-material:Material . 1102 + rdfs:subClassOf ep-material:Material ;
1103 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t12dmcypentane> .
946 1104
947 ep-material:substance-T13dmcyPentane 1105 ep-material:substance-T13dmcyPentane
948 - rdf:type owl:Class ; 1106 + rdf:type owl:Class , ep-material:SubstanceType ;
949 rdfs:label "t13dmcy pentane"^^xsd:string ; 1107 rdfs:label "t13dmcy pentane"^^xsd:string ;
950 - rdfs:subClassOf ep-material:Material . 1108 + rdfs:subClassOf ep-material:Material ;
1109 + ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t13dmcypentane> .
951 1110
952 ep-material:volumeRatio 1111 ep-material:volumeRatio
953 rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 1112 rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
......
...@@ -53,51 +53,6 @@ ...@@ -53,51 +53,6 @@
53 rdfs:label "has flow"^^xsd:string ; 53 rdfs:label "has flow"^^xsd:string ;
54 rdfs:range <http://www.reportinghub.no/ep/schema/flow#WholeLifeFlow> . 54 rdfs:range <http://www.reportinghub.no/ep/schema/flow#WholeLifeFlow> .
55 55
56 -ep-core:Mass
57 - rdf:type ep-core:PropertySpace , rdfs:Class ;
58 - rdfs:label "mass"^^xsd:string ;
59 - rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial .
60 -
61 -<http://www.reportinghub.no/ep/schema/equipment#Manifold>
62 - rdf:type owl:Class ;
63 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfAManifold> .
64 -
65 -<http://www.reportinghub.no/ep/schema/equipment#Manifold-Injection>
66 - rdf:type owl:Class ;
67 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Manifold> .
68 -
69 -<http://www.reportinghub.no/ep/schema/equipment#Manifold-Production>
70 - rdf:type owl:Class ;
71 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Manifold> .
72 -
73 -<http://www.reportinghub.no/ep/schema/equipment#Separator>
74 - rdf:type owl:Class ;
75 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfASeparator> .
76 -
77 -<http://www.reportinghub.no/ep/schema/equipment#Tank>
78 - rdf:type owl:Class ;
79 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfATank> .
80 -
81 -<http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfAFlowLine>
82 - rdf:type owl:Class ;
83 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
84 -
85 -<http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfAManifold>
86 - rdf:type owl:Class ;
87 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
88 -
89 -<http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfASeparator>
90 - rdf:type owl:Class ;
91 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
92 -
93 -<http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfATank>
94 - rdf:type owl:Class ;
95 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
96 -
97 -<http://www.reportinghub.no/ep/schema/flow#SampleOfMaterial>
98 - rdf:type owl:Class ;
99 - rdfs:label "(temporal part of a) sample of material"^^xsd:string .
100 -
101 ep-prodact:AccidentOrInjury 56 ep-prodact:AccidentOrInjury
102 rdf:type owl:Class ; 57 rdf:type owl:Class ;
103 rdfs:label "accident or injury"^^xsd:string ; 58 rdfs:label "accident or injury"^^xsd:string ;
...@@ -226,14 +181,6 @@ ep-prodact:Fire ...@@ -226,14 +181,6 @@ ep-prodact:Fire
226 rdfs:label "fire"^^xsd:string ; 181 rdfs:label "fire"^^xsd:string ;
227 rdfs:subClassOf ep-prodact:Incident . 182 rdfs:subClassOf ep-prodact:Incident .
228 183
229 -ep-prodact:FlowLine
230 - rdf:type owl:Class ;
231 - rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#TemporalPartOfAFlowLine> .
232 -
233 -ep-prodact:FlowLine-Production
234 - rdf:type owl:Class ;
235 - rdfs:subClassOf ep-prodact:FlowLine .
236 -
237 ep-prodact:FluidLevelTest 184 ep-prodact:FluidLevelTest
238 rdf:type owl:Class ; 185 rdf:type owl:Class ;
239 rdfs:label "fluid level test"^^xsd:string ; 186 rdfs:label "fluid level test"^^xsd:string ;
...@@ -752,11 +699,6 @@ ep-prodact:StrikeOrLockout ...@@ -752,11 +699,6 @@ ep-prodact:StrikeOrLockout
752 rdfs:label "strike or lock-out"^^xsd:string ; 699 rdfs:label "strike or lock-out"^^xsd:string ;
753 rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss . 700 rdfs:subClassOf ep-prodact:ProductionOperationProcessingLoss .
754 701
755 -ep-prodact:SubstanceType
756 - rdf:type rdfs:Class ;
757 - rdfs:label "substance type"^^xsd:string ;
758 - rdfs:subClassOf owl:Class .
759 -
760 ep-prodact:SupplyShipOperation 702 ep-prodact:SupplyShipOperation
761 rdf:type owl:Class ; 703 rdf:type owl:Class ;
762 rdfs:label "supply ship operation"^^xsd:string ; 704 rdfs:label "supply ship operation"^^xsd:string ;
...@@ -1189,5 +1131,3 @@ ep-prodact:yearlyActivityToDate ...@@ -1189,5 +1131,3 @@ ep-prodact:yearlyActivityToDate
1189 rdfs:domain ep-prodact:ProductionActivityLastingLessThanAYear ; 1131 rdfs:domain ep-prodact:ProductionActivityLastingLessThanAYear ;
1190 rdfs:range ep-prodact:AnnualProductionActivityToDate . 1132 rdfs:range ep-prodact:AnnualProductionActivityToDate .
1191 1133
1192 -<http://www.reportinghub.no/ep/schema/well#WellGroup>
1193 - rdf:type owl:Class .
......
...@@ -89,3 +89,69 @@ ep-prodfac:Pipeline ...@@ -89,3 +89,69 @@ ep-prodfac:Pipeline
89 rdf:type owl:Class , ep-prodfac:ProductionFacilityType ; 89 rdf:type owl:Class , ep-prodfac:ProductionFacilityType ;
90 rdfs:label "pipeline"^^xsd:string ; 90 rdfs:label "pipeline"^^xsd:string ;
91 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> . 91 rdfs:subClassOf <http://www.reportinghub.no/ep/schema/facility#Facility> .
92 +
93 +ep-prodeqt:Manifold
94 + rdf:type owl:Class ;
95 + rdfs:subClassOf ep-prodeqt:TemporalPartOfAManifold .
96 +
97 +ep-prodeqt:Manifold-Injection
98 + rdf:type owl:Class ;
99 + rdfs:subClassOf ep-prodeqt:Manifold .
100 +
101 +ep-prodeqt:Manifold-Production
102 + rdf:type owl:Class ;
103 + rdfs:subClassOf ep-prodeqt:Manifold .
104 +
105 +ep-prodeqt:Separator
106 + rdf:type owl:Class ;
107 + rdfs:subClassOf ep-prodeqt:TemporalPartOfASeparator .
108 +
109 +ep-prodeqt:Tank
110 + rdf:type owl:Class ;
111 + rdfs:subClassOf ep-prodeqt:TemporalPartOfATank .
112 +
113 +ep-prodeqt:TemporalPartOfAFlowLine
114 + rdf:type owl:Class ;
115 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
116 +
117 +ep-prodeqt:TemporalPartOfAManifold
118 + rdf:type owl:Class ;
119 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
120 +
121 +ep-prodeqt:TemporalPartOfASeparator
122 + rdf:type owl:Class ;
123 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
124 +
125 +ep-prodeqt:TemporalPartOfATank
126 + rdf:type owl:Class ;
127 + rdfs:subClassOf <http://www.reportinghub.no/ep/schema/equipment#Equipment> .
128 +
129 +ep-prodeqt:Manifold
130 + rdf:type owl:Class ;
131 + rdfs:subClassOf ep-prodeqt:TemporalPartOfAManifold .
132 +
133 +ep-prodeqt:Manifold-Injection
134 + rdf:type owl:Class ;
135 + rdfs:subClassOf ep-prodeqt:Manifold .
136 +
137 +ep-prodeqt:Manifold-Production
138 + rdf:type owl:Class ;
139 + rdfs:subClassOf ep-prodeqt:Manifold .
140 +
141 +ep-prodeqt:Separator
142 + rdf:type owl:Class ;
143 + rdfs:subClassOf ep-prodeqt:TemporalPartOfASeparator .
144 +
145 +ep-prodeqt:Tank
146 + rdf:type owl:Class ;
147 + rdfs:subClassOf ep-prodeqt:TemporalPartOfATank .
148 +
149 +ep-prodeqt:FlowLine
150 + rdf:type owl:Class ;
151 + rdfs:subClassOf ep-prodeqt:TemporalPartOfAFlowLine .
152 +
153 +ep-prodeqt:FlowLine-Production
154 + rdf:type owl:Class ;
155 + rdfs:subClassOf ep-prodeqt:FlowLine .
156 +
157 +
......
...@@ -18,49 +18,28 @@ ...@@ -18,49 +18,28 @@
18 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 18 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
19 19
20 ep-material:GasAndWater 20 ep-material:GasAndWater
21 - rdf:type ep-well:FluidComponentType , ep-prodwell:InjectionFluidType . 21 + rdf:type ep-prodwell:InjectionFluidType .
22 22
23 ep-material:Liquid 23 ep-material:Liquid
24 rdf:type ep-prodwell:FluidPhaseType . 24 rdf:type ep-prodwell:FluidPhaseType .
25 25
26 ep-material:OilAndGas 26 ep-material:OilAndGas
27 - rdf:type ep-well:FluidComponentType , ep-prodwell:InjectionFluidType . 27 + rdf:type ep-prodwell:InjectionFluidType .
28 28
29 ep-material:OilAndWater 29 ep-material:OilAndWater
30 - rdf:type ep-well:FluidComponentType , ep-prodwell:InjectionFluidType . 30 + rdf:type ep-prodwell:InjectionFluidType .
31 -
32 -ep-material:Sand
33 - rdf:type ep-well:FluidComponentType .
34 31
35 ep-prodwell:AbandonedWell 32 ep-prodwell:AbandonedWell
36 rdf:type ep-prodwell:WellStatusType , owl:Class ; 33 rdf:type ep-prodwell:WellStatusType , owl:Class ;
37 rdfs:label "abandoned well"^^xsd:string ; 34 rdfs:label "abandoned well"^^xsd:string ;
38 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 35 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
39 36
40 -ep-prodwell:Air-gas
41 - rdf:type ep-well:FluidComponentType , owl:Class , ep-prodwell:InjectionFluidType ;
42 - rdfs:label "air gas"^^xsd:string ;
43 - rdfs:subClassOf ep-prodwell:NonHcGas .
44 -
45 -ep-prodwell:Brine
46 - rdf:type ep-prodwell:InjectionFluidType , owl:Class , ep-well:FluidComponentType ;
47 - rdfs:label "brine"^^xsd:string ;
48 - rdfs:subClassOf ep-material:Water .
49 -
50 -ep-prodwell:CO2-gas
51 - rdf:type owl:Class , ep-prodwell:InjectionFluidType ;
52 - rdfs:label "CO2 gas"^^xsd:string ;
53 - rdfs:subClassOf ep-prodwell:NonHcGas .
54 37
55 ep-prodwell:ClosedWell 38 ep-prodwell:ClosedWell
56 rdf:type ep-prodwell:WellStatusType , owl:Class ; 39 rdf:type ep-prodwell:WellStatusType , owl:Class ;
57 rdfs:label "closed well"^^xsd:string ; 40 rdfs:label "closed well"^^xsd:string ;
58 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 41 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
59 42
60 -ep-prodwell:DryFluid
61 - rdf:type ep-prodwell:InjectionFluidType , owl:Class , ep-well:FluidComponentType ;
62 - rdfs:label "dry fluid"^^xsd:string ;
63 - rdfs:subClassOf ep-material:Fluid .
64 43
65 ep-prodwell:FluidComponentKindType 44 ep-prodwell:FluidComponentKindType
66 rdf:type rdfs:Class ; 45 rdf:type rdfs:Class ;
...@@ -72,21 +51,11 @@ ep-prodwell:FluidComponentType ...@@ -72,21 +51,11 @@ ep-prodwell:FluidComponentType
72 rdfs:label "fluid component type"^^xsd:string ; 51 rdfs:label "fluid component type"^^xsd:string ;
73 rdfs:subClassOf owl:Class . 52 rdfs:subClassOf owl:Class .
74 53
75 -ep-prodwell:FluidFraction
76 - rdf:type ep-prodwell:FluidComponentKindType , owl:Class ;
77 - rdfs:label "fluid fraction"^^xsd:string ;
78 - rdfs:subClassOf ep-material:Fluid .
79 -
80 ep-prodwell:FluidPhaseType 54 ep-prodwell:FluidPhaseType
81 rdf:type rdfs:Class ; 55 rdf:type rdfs:Class ;
82 rdfs:label "fluid phase type"^^xsd:string ; 56 rdfs:label "fluid phase type"^^xsd:string ;
83 rdfs:subClassOf owl:Class . 57 rdfs:subClassOf owl:Class .
84 58
85 -ep-prodwell:FreshWater
86 - rdf:type ep-prodwell:InjectionFluidType , owl:Class , ep-well:FluidComponentType ;
87 - rdfs:label "fresh water"^^xsd:string ;
88 - rdfs:subClassOf ep-material:Water .
89 -
90 ep-prodwell:InjectingWell 59 ep-prodwell:InjectingWell
91 rdf:type ep-prodwell:WellStatusType , owl:Class ; 60 rdf:type ep-prodwell:WellStatusType , owl:Class ;
92 rdfs:label "injecting well"^^xsd:string ; 61 rdfs:label "injecting well"^^xsd:string ;
...@@ -102,31 +71,22 @@ ep-prodwell:JunkedWell ...@@ -102,31 +71,22 @@ ep-prodwell:JunkedWell
102 rdfs:label "junked well"^^xsd:string ; 71 rdfs:label "junked well"^^xsd:string ;
103 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 72 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
104 73
105 -ep-prodwell:Liquid 74 +ep-material:Liquid
106 - rdf:type ep-prodwell:FluidPhaseType , owl:Class ; 75 + rdf:type ep-prodwell:FluidPhaseType .
107 - rdfs:label "liquid"^^xsd:string ; 76 +
108 - rdfs:subClassOf ep-material:Fluid . 77 +ep-material:Gas
78 + rdf:type ep-prodwell:FluidPhaseType .
109 79
110 ep-prodwell:NaturalGasClass 80 ep-prodwell:NaturalGasClass
111 rdf:type rdfs:Class ; 81 rdf:type rdfs:Class ;
112 rdfs:label "natural gas class"^^xsd:string ; 82 rdfs:label "natural gas class"^^xsd:string ;
113 rdfs:subClassOf owl:Class . 83 rdfs:subClassOf owl:Class .
114 84
115 -ep-prodwell:NonHcGas
116 - rdf:type owl:Class , ep-prodwell:InjectionFluidType ;
117 - rdfs:label "non-HC gas"^^xsd:string ;
118 - rdfs:subClassOf ep-material:Gas .
119 -
120 ep-prodwell:OperatingWell 85 ep-prodwell:OperatingWell
121 rdf:type ep-prodwell:WellStatusType , owl:Class ; 86 rdf:type ep-prodwell:WellStatusType , owl:Class ;
122 rdfs:label "operating well"^^xsd:string ; 87 rdfs:label "operating well"^^xsd:string ;
123 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 88 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
124 89
125 -ep-prodwell:OtherInjectionFluid
126 - rdf:type ep-prodwell:InjectionFluidType , owl:Class , ep-well:FluidComponentType ;
127 - rdfs:label "other injection fluid"^^xsd:string ;
128 - rdfs:subClassOf ep-material:Fluid .
129 -
130 ep-prodwell:PluggedAndAbandonedWell 90 ep-prodwell:PluggedAndAbandonedWell
131 rdf:type owl:Class , ep-prodwell:WellStatusType ; 91 rdf:type owl:Class , ep-prodwell:WellStatusType ;
132 rdfs:label "plugged and abandoned well"^^xsd:string ; 92 rdfs:label "plugged and abandoned well"^^xsd:string ;
...@@ -137,11 +97,6 @@ ep-prodwell:PluggedWell ...@@ -137,11 +97,6 @@ ep-prodwell:PluggedWell
137 rdfs:label "plugged well"^^xsd:string ; 97 rdfs:label "plugged well"^^xsd:string ;
138 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 98 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
139 99
140 -ep-prodwell:PlusFraction
141 - rdf:type owl:Class , ep-prodwell:FluidComponentKindType ;
142 - rdfs:label "plus fraction"^^xsd:string ;
143 - rdfs:subClassOf ep-material:Fluid .
144 -
145 ep-prodwell:ProducingInjectingWell 100 ep-prodwell:ProducingInjectingWell
146 rdf:type ep-prodwell:WellStatusType , owl:Class ; 101 rdf:type ep-prodwell:WellStatusType , owl:Class ;
147 rdfs:label "producing injecting well"^^xsd:string ; 102 rdfs:label "producing injecting well"^^xsd:string ;
...@@ -152,25 +107,11 @@ ep-prodwell:ProducingWell ...@@ -152,25 +107,11 @@ ep-prodwell:ProducingWell
152 rdfs:label "producing well"^^xsd:string ; 107 rdfs:label "producing well"^^xsd:string ;
153 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 108 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
154 109
155 -ep-prodwell:PureFluid
156 - rdf:type ep-prodwell:FluidComponentKindType , owl:Class ;
157 - rdfs:label "pure fluid"^^xsd:string ;
158 - rdfs:subClassOf ep-material:Fluid .
159 -
160 ep-prodwell:RockFormation 110 ep-prodwell:RockFormation
161 rdf:type owl:Class ; 111 rdf:type owl:Class ;
162 rdfs:label "rock formation"^^xsd:string ; 112 rdfs:label "rock formation"^^xsd:string ;
163 rdfs:subClassOf ep-core:PhysicalObject . 113 rdfs:subClassOf ep-core:PhysicalObject .
164 114
165 -ep-prodwell:SplitFraction
166 - rdf:type owl:Class , ep-prodwell:FluidComponentKindType ;
167 - rdfs:label "split fraction"^^xsd:string ;
168 - rdfs:subClassOf ep-material:Fluid .
169 -
170 -ep-prodwell:Steam
171 - rdf:type ep-prodwell:InjectionFluidType , owl:Class , ep-well:FluidComponentType ;
172 - rdfs:label "steam"^^xsd:string ;
173 - rdfs:subClassOf ep-prodwell:NonHcGas .
174 115
175 ep-prodwell:SuspendedAtTdWell 116 ep-prodwell:SuspendedAtTdWell
176 rdf:type ep-prodwell:WellStatusType , owl:Class ; 117 rdf:type ep-prodwell:WellStatusType , owl:Class ;
...@@ -197,11 +138,6 @@ ep-prodwell:TubingHead ...@@ -197,11 +138,6 @@ ep-prodwell:TubingHead
197 rdfs:label "tubing head"^^xsd:string ; 138 rdfs:label "tubing head"^^xsd:string ;
198 rdfs:subClassOf ep-well:SpatialPartOfAWell . 139 rdfs:subClassOf ep-well:SpatialPartOfAWell .
199 140
200 -ep-prodwell:UnknownFluid
201 - rdf:type ep-prodwell:InjectionFluidType , owl:Class , ep-well:FluidComponentType ;
202 - rdfs:label "unknown fluid"^^xsd:string ;
203 - rdfs:subClassOf ep-material:Fluid .
204 -
205 ep-prodwell:WellCompletion 141 ep-prodwell:WellCompletion
206 rdf:type owl:Class ; 142 rdf:type owl:Class ;
207 rdfs:label "well completion"^^xsd:string ; 143 rdfs:label "well completion"^^xsd:string ;
...@@ -221,7 +157,7 @@ ep-prodwell:completeLiquidPartOf ...@@ -221,7 +157,7 @@ ep-prodwell:completeLiquidPartOf
221 rdf:type owl:ObjectProperty , owl:FunctionalProperty ; 157 rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
222 rdfs:domain ep-material:QuantityOfMaterial ; 158 rdfs:domain ep-material:QuantityOfMaterial ;
223 rdfs:label "complete liquid part of"^^xsd:string ; 159 rdfs:label "complete liquid part of"^^xsd:string ;
224 - rdfs:range ep-prodwell:Liquid . 160 + rdfs:range ep-material:Liquid .
225 161
226 ep-prodwell:condensateYield 162 ep-prodwell:condensateYield
227 rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ; 163 rdf:type ep-core:Class_of_indirect_property , owl:ObjectProperty , owl:FunctionalProperty ;
...@@ -272,3 +208,140 @@ ep-well:TemporalPartOfAWell ...@@ -272,3 +208,140 @@ ep-well:TemporalPartOfAWell
272 208
273 ep-well:TemporalPartOfAWellBore 209 ep-well:TemporalPartOfAWellBore
274 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore . 210 rdfs:subClassOf ep-prodwell:TemporalPartOfAWellOrWellBore .
211 +
212 +ep-well:WellGroup
213 + rdf:type owl:Class .
214 +
215 +ep-material:Pentane rdf:type ep-prodwell:FluidComponentType .
216 +ep-material:Propane rdf:type ep-prodwell:FluidComponentType .
217 +ep-material:substance-11dmcyPentane rdf:type ep-prodwell:FluidComponentType .
218 +ep-material:substance-124tmBenzene rdf:type ep-prodwell:FluidComponentType .
219 +ep-material:substance-12dmBenzene rdf:type ep-prodwell:FluidComponentType .
220 +ep-material:substance-13dmBenzene rdf:type ep-prodwell:FluidComponentType .
221 +ep-material:substance-14dmBenzene rdf:type ep-prodwell:FluidComponentType .
222 +ep-material:substance-223tmButane rdf:type ep-prodwell:FluidComponentType .
223 +ep-material:substance-223tmPentane rdf:type ep-prodwell:FluidComponentType .
224 +ep-material:substance-22dmButane rdf:type ep-prodwell:FluidComponentType .
225 +ep-material:substance-22dmHexane rdf:type ep-prodwell:FluidComponentType .
226 +ep-material:substance-22dmPentane rdf:type ep-prodwell:FluidComponentType .
227 +ep-material:substance-22dmPropane rdf:type ep-prodwell:FluidComponentType .
228 +ep-material:substance-23dmButane rdf:type ep-prodwell:FluidComponentType .
229 +ep-material:substance-23dmPentane rdf:type ep-prodwell:FluidComponentType .
230 +ep-material:substance-24dmHexane rdf:type ep-prodwell:FluidComponentType .
231 +ep-material:substance-24dmPentane rdf:type ep-prodwell:FluidComponentType .
232 +ep-material:substance-25dmHexane rdf:type ep-prodwell:FluidComponentType .
233 +ep-material:substance-2mButane rdf:type ep-prodwell:FluidComponentType .
234 +ep-material:substance-2mHexane rdf:type ep-prodwell:FluidComponentType .
235 +ep-material:substance-2mPentane rdf:type ep-prodwell:FluidComponentType .
236 +ep-material:substance-2mPropane rdf:type ep-prodwell:FluidComponentType .
237 +ep-material:substance-33dmPentane rdf:type ep-prodwell:FluidComponentType .
238 +ep-material:substance-3etPentane rdf:type ep-prodwell:FluidComponentType .
239 +ep-material:substance-3mHexane rdf:type ep-prodwell:FluidComponentType .
240 +ep-material:substance-3mPentane rdf:type ep-prodwell:FluidComponentType .
241 +ep-material:substance-Ar rdf:type ep-prodwell:FluidComponentType .
242 +ep-material:substance-Benzene rdf:type ep-prodwell:FluidComponentType .
243 +ep-material:substance-Butane rdf:type ep-prodwell:FluidComponentType .
244 +ep-material:substance-C11F rdf:type ep-prodwell:FluidComponentType .
245 +ep-material:substance-C12F rdf:type ep-prodwell:FluidComponentType .
246 +ep-material:substance-C13F rdf:type ep-prodwell:FluidComponentType .
247 +ep-material:substance-C13dmcyPentane rdf:type ep-prodwell:FluidComponentType .
248 +ep-material:substance-C14F rdf:type ep-prodwell:FluidComponentType .
249 +ep-material:substance-C15F rdf:type ep-prodwell:FluidComponentType .
250 +ep-material:substance-C16F rdf:type ep-prodwell:FluidComponentType .
251 +ep-material:substance-C17F rdf:type ep-prodwell:FluidComponentType .
252 +ep-material:substance-C18F rdf:type ep-prodwell:FluidComponentType .
253 +ep-material:substance-C19F rdf:type ep-prodwell:FluidComponentType .
254 +ep-material:substance-C20F rdf:type ep-prodwell:FluidComponentType .
255 +ep-material:substance-C21F rdf:type ep-prodwell:FluidComponentType .
256 +ep-material:substance-C22F rdf:type ep-prodwell:FluidComponentType .
257 +ep-material:substance-C23F rdf:type ep-prodwell:FluidComponentType .
258 +ep-material:substance-C24F rdf:type ep-prodwell:FluidComponentType .
259 +ep-material:substance-C25F rdf:type ep-prodwell:FluidComponentType .
260 +ep-material:substance-C26F rdf:type ep-prodwell:FluidComponentType .
261 +ep-material:substance-C27F rdf:type ep-prodwell:FluidComponentType .
262 +ep-material:substance-C28F rdf:type ep-prodwell:FluidComponentType .
263 +ep-material:substance-C29F rdf:type ep-prodwell:FluidComponentType .
264 +ep-material:substance-C30F rdf:type ep-prodwell:FluidComponentType .
265 +ep-material:substance-C31F rdf:type ep-prodwell:FluidComponentType .
266 +ep-material:substance-C32F rdf:type ep-prodwell:FluidComponentType .
267 +ep-material:substance-C33F rdf:type ep-prodwell:FluidComponentType .
268 +ep-material:substance-C34F rdf:type ep-prodwell:FluidComponentType .
269 +ep-material:substance-C35F rdf:type ep-prodwell:FluidComponentType .
270 +ep-material:substance-C36F rdf:type ep-prodwell:FluidComponentType .
271 +ep-material:substance-C37F rdf:type ep-prodwell:FluidComponentType .
272 +ep-material:substance-C38F rdf:type ep-prodwell:FluidComponentType .
273 +ep-material:substance-C39F rdf:type ep-prodwell:FluidComponentType .
274 +ep-material:substance-C40F rdf:type ep-prodwell:FluidComponentType .
275 +ep-material:substance-C41F rdf:type ep-prodwell:FluidComponentType .
276 +ep-material:substance-C42F rdf:type ep-prodwell:FluidComponentType .
277 +ep-material:substance-C43F rdf:type ep-prodwell:FluidComponentType .
278 +ep-material:substance-C44F rdf:type ep-prodwell:FluidComponentType .
279 +ep-material:substance-C45F rdf:type ep-prodwell:FluidComponentType .
280 +ep-material:substance-C46F rdf:type ep-prodwell:FluidComponentType .
281 +ep-material:substance-C47F rdf:type ep-prodwell:FluidComponentType .
282 +ep-material:substance-C48F rdf:type ep-prodwell:FluidComponentType .
283 +ep-material:substance-C49F rdf:type ep-prodwell:FluidComponentType .
284 +ep-material:substance-CO2 rdf:type ep-prodwell:FluidComponentType .
285 +ep-material:substance-Cyclohexane rdf:type ep-prodwell:FluidComponentType .
286 +ep-material:substance-Cyclopentane rdf:type ep-prodwell:FluidComponentType .
287 +ep-material:substance-Decanes rdf:type ep-prodwell:FluidComponentType .
288 +ep-material:substance-EtBenzene rdf:type ep-prodwell:FluidComponentType .
289 +ep-material:substance-EtcyPentane rdf:type ep-prodwell:FluidComponentType .
290 +ep-material:substance-Ethane rdf:type ep-prodwell:FluidComponentType .
291 +ep-material:substance-H2 rdf:type ep-prodwell:FluidComponentType .
292 +ep-material:substance-H2O rdf:type ep-prodwell:FluidComponentType .
293 +ep-material:substance-H2S rdf:type ep-prodwell:FluidComponentType .
294 +ep-material:substance-Heptanes rdf:type ep-prodwell:FluidComponentType .
295 +ep-material:substance-Hexane rdf:type ep-prodwell:FluidComponentType .
296 +ep-material:substance-Hexanes rdf:type ep-prodwell:FluidComponentType .
297 +ep-material:substance-MBenzene rdf:type ep-prodwell:FluidComponentType .
298 +ep-material:substance-McyHexane rdf:type ep-prodwell:FluidComponentType .
299 +ep-material:substance-McyPentane rdf:type ep-prodwell:FluidComponentType .
300 +ep-material:substance-Methane rdf:type ep-prodwell:FluidComponentType .
301 +ep-material:substance-N2 rdf:type ep-prodwell:FluidComponentType .
302 +ep-material:substance-Nonanes rdf:type ep-prodwell:FluidComponentType .
303 +ep-material:substance-O2 rdf:type ep-prodwell:FluidComponentType .
304 +ep-material:substance-Octanes rdf:type ep-prodwell:FluidComponentType .
305 +ep-material:substance-T12dmcyPentane rdf:type ep-prodwell:FluidComponentType .
306 +ep-material:substance-T13dmcyPentane rdf:type ep-prodwell:FluidComponentType .
307 +
308 +ep-material:Steam
309 + rdf:type ep-prodwell:InjectionFluidType .
310 +
311 +ep-material:Air-gas
312 + rdf:type ep-prodwell:InjectionFluidType .
313 +
314 +ep-material:Brine
315 + rdf:type ep-prodwell:InjectionFluidType .
316 +
317 +ep-material:CO2-gas
318 + rdf:type ep-prodwell:InjectionFluidType .
319 +
320 +ep-material:DryFluid
321 + rdf:type ep-prodwell:InjectionFluidType .
322 +
323 +ep-material:FreshWater
324 + rdf:type ep-prodwell:InjectionFluidType .
325 +
326 +ep-material:NonHcGas
327 + rdf:type ep-prodwell:InjectionFluidType .
328 +
329 +ep-material:OtherInjectionFluid
330 + rdf:type ep-prodwell:InjectionFluidType .
331 +
332 +
333 +ep-material:UnknownFluid
334 + rdf:type ep-prodwell:InjectionFluidType .
335 +
336 +ep-material:FluidFraction
337 + rdf:type ep-prodwell:FluidComponentKindType .
338 +
339 +ep-material:PlusFraction
340 + rdf:type ep-prodwell:FluidComponentKindType .
341 +
342 +ep-material:PureFluid
343 + rdf:type ep-prodwell:FluidComponentKindType .
344 +
345 +ep-material:SplitFraction
346 + rdf:type ep-prodwell:FluidComponentKindType .
347 +
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -17,8 +17,7 @@ ...@@ -17,8 +17,7 @@
17 owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/core> ; 17 owl:imports <http://www.reportinghub.no/ep/schema/1.0/material> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/equipment> , <http://www.reportinghub.no/ep/schema/1.0/core> ;
18 owl:versionInfo "0.1.0"^^xsd:string . 18 owl:versionInfo "0.1.0"^^xsd:string .
19 19
20 -<http://www.reportinghub.no/ep/schema/equipment#Equipment> 20 +
21 - rdfs:subClassOf ep-core:PhysicalObject .
22 21
23 <http://www.reportinghub.no/ep/schema/material#Condensate> 22 <http://www.reportinghub.no/ep/schema/material#Condensate>
24 rdf:type ep-well:FluidComponentType . 23 rdf:type ep-well:FluidComponentType .
......
...@@ -1094,31 +1094,31 @@ ep-mpr-spin-lib:selectFluidComponentKindType ...@@ -1094,31 +1094,31 @@ ep-mpr-spin-lib:selectFluidComponentKindType
1094 sp:arg1 spin:_arg1 ; 1094 sp:arg1 spin:_arg1 ;
1095 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_frac> 1095 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_frac>
1096 ] ; 1096 ] ;
1097 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#FluidFraction> ; 1097 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#FluidFraction> ;
1098 sp:arg3 [ rdf:type sp:if ; 1098 sp:arg3 [ rdf:type sp:if ;
1099 sp:arg1 [ rdf:type sp:eq ; 1099 sp:arg1 [ rdf:type sp:eq ;
1100 sp:arg1 spin:_arg1 ; 1100 sp:arg1 spin:_arg1 ;
1101 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_pure> 1101 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_pure>
1102 ] ; 1102 ] ;
1103 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#PureFluid> ; 1103 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#PureFluid> ;
1104 sp:arg3 [ rdf:type sp:if ; 1104 sp:arg3 [ rdf:type sp:if ;
1105 sp:arg1 [ rdf:type sp:eq ; 1105 sp:arg1 [ rdf:type sp:eq ;
1106 sp:arg1 spin:_arg1 ; 1106 sp:arg1 spin:_arg1 ;
1107 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_pure> 1107 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_pure>
1108 ] ; 1108 ] ;
1109 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#PureFluid> ; 1109 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#PureFluid> ;
1110 sp:arg3 [ rdf:type sp:if ; 1110 sp:arg3 [ rdf:type sp:if ;
1111 sp:arg1 [ rdf:type sp:eq ; 1111 sp:arg1 [ rdf:type sp:eq ;
1112 sp:arg1 spin:_arg1 ; 1112 sp:arg1 spin:_arg1 ;
1113 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_split> 1113 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_split>
1114 ] ; 1114 ] ;
1115 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#SplitFraction> ; 1115 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#SplitFraction> ;
1116 sp:arg3 [ rdf:type sp:if ; 1116 sp:arg3 [ rdf:type sp:if ;
1117 sp:arg1 [ rdf:type sp:eq ; 1117 sp:arg1 [ rdf:type sp:eq ;
1118 sp:arg1 spin:_arg1 ; 1118 sp:arg1 spin:_arg1 ;
1119 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_plus> 1119 sp:arg2 <http://www.epim.no/schemas/mprml/1#FCK_plus>
1120 ] ; 1120 ] ;
1121 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#PlusFraction> ; 1121 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#PlusFraction> ;
1122 sp:arg3 <http://www.reportinghub.no/ep/schema/material#Fluid> 1122 sp:arg3 <http://www.reportinghub.no/ep/schema/material#Fluid>
1123 ] 1123 ]
1124 ] 1124 ]
...@@ -1146,7 +1146,7 @@ ep-mpr-spin-lib:selectFluidPhaseType ...@@ -1146,7 +1146,7 @@ ep-mpr-spin-lib:selectFluidPhaseType
1146 sp:arg1 spin:_arg1 ; 1146 sp:arg1 spin:_arg1 ;
1147 sp:arg2 "liquid"^^xsd:string 1147 sp:arg2 "liquid"^^xsd:string
1148 ] ; 1148 ] ;
1149 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#Liquid> ; 1149 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Liquid> ;
1150 sp:arg3 [ rdf:type sp:if ; 1150 sp:arg3 [ rdf:type sp:if ;
1151 sp:arg1 [ rdf:type sp:eq ; 1151 sp:arg1 [ rdf:type sp:eq ;
1152 sp:arg1 spin:_arg1 ; 1152 sp:arg1 spin:_arg1 ;
...@@ -1397,13 +1397,13 @@ ep-mpr-spin-lib:selectInjectedFluidType ...@@ -1397,13 +1397,13 @@ ep-mpr-spin-lib:selectInjectedFluidType
1397 sp:arg1 spin:_arg1 ; 1397 sp:arg1 spin:_arg1 ;
1398 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_nonHCgas> 1398 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_nonHCgas>
1399 ] ; 1399 ] ;
1400 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#NonHcGas> ; 1400 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#NonHcGas> ;
1401 sp:arg3 [ rdf:type sp:if ; 1401 sp:arg3 [ rdf:type sp:if ;
1402 sp:arg1 [ rdf:type sp:eq ; 1402 sp:arg1 [ rdf:type sp:eq ;
1403 sp:arg1 spin:_arg1 ; 1403 sp:arg1 spin:_arg1 ;
1404 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_CO2> 1404 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_CO2>
1405 ] ; 1405 ] ;
1406 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#CO2-gas> ; 1406 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#CO2-gas> ;
1407 sp:arg3 [ rdf:type sp:if ; 1407 sp:arg3 [ rdf:type sp:if ;
1408 sp:arg1 [ rdf:type sp:eq ; 1408 sp:arg1 [ rdf:type sp:eq ;
1409 sp:arg1 spin:_arg1 ; 1409 sp:arg1 spin:_arg1 ;
...@@ -1415,13 +1415,13 @@ ep-mpr-spin-lib:selectInjectedFluidType ...@@ -1415,13 +1415,13 @@ ep-mpr-spin-lib:selectInjectedFluidType
1415 sp:arg1 spin:_arg1 ; 1415 sp:arg1 spin:_arg1 ;
1416 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_brine> 1416 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_brine>
1417 ] ; 1417 ] ;
1418 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#Brine> ; 1418 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Brine> ;
1419 sp:arg3 [ rdf:type sp:if ; 1419 sp:arg3 [ rdf:type sp:if ;
1420 sp:arg1 [ rdf:type sp:eq ; 1420 sp:arg1 [ rdf:type sp:eq ;
1421 sp:arg1 spin:_arg1 ; 1421 sp:arg1 spin:_arg1 ;
1422 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_freshwater> 1422 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_freshwater>
1423 ] ; 1423 ] ;
1424 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#FreshWater> ; 1424 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#FreshWater> ;
1425 sp:arg3 [ rdf:type sp:if ; 1425 sp:arg3 [ rdf:type sp:if ;
1426 sp:arg1 [ rdf:type sp:eq ; 1426 sp:arg1 [ rdf:type sp:eq ;
1427 sp:arg1 spin:_arg1 ; 1427 sp:arg1 spin:_arg1 ;
...@@ -1451,31 +1451,31 @@ ep-mpr-spin-lib:selectInjectedFluidType ...@@ -1451,31 +1451,31 @@ ep-mpr-spin-lib:selectInjectedFluidType
1451 sp:arg1 spin:_arg1 ; 1451 sp:arg1 spin:_arg1 ;
1452 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_steam> 1452 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_steam>
1453 ] ; 1453 ] ;
1454 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#Steam> ; 1454 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Steam> ;
1455 sp:arg3 [ rdf:type sp:if ; 1455 sp:arg3 [ rdf:type sp:if ;
1456 sp:arg1 [ rdf:type sp:eq ; 1456 sp:arg1 [ rdf:type sp:eq ;
1457 sp:arg1 spin:_arg1 ; 1457 sp:arg1 spin:_arg1 ;
1458 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_air> 1458 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_air>
1459 ] ; 1459 ] ;
1460 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#Air-gas> ; 1460 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#Air-gas> ;
1461 sp:arg3 [ rdf:type sp:if ; 1461 sp:arg3 [ rdf:type sp:if ;
1462 sp:arg1 [ rdf:type sp:eq ; 1462 sp:arg1 [ rdf:type sp:eq ;
1463 sp:arg1 spin:_arg1 ; 1463 sp:arg1 spin:_arg1 ;
1464 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_dry> 1464 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_dry>
1465 ] ; 1465 ] ;
1466 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#DryFluid> ; 1466 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#DryFluid> ;
1467 sp:arg3 [ rdf:type sp:if ; 1467 sp:arg3 [ rdf:type sp:if ;
1468 sp:arg1 [ rdf:type sp:eq ; 1468 sp:arg1 [ rdf:type sp:eq ;
1469 sp:arg1 spin:_arg1 ; 1469 sp:arg1 spin:_arg1 ;
1470 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_unknown> 1470 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_unknown>
1471 ] ; 1471 ] ;
1472 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#UnknownFluid> ; 1472 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#UnknownFluid> ;
1473 sp:arg3 [ rdf:type sp:if ; 1473 sp:arg3 [ rdf:type sp:if ;
1474 sp:arg1 [ rdf:type sp:eq ; 1474 sp:arg1 [ rdf:type sp:eq ;
1475 sp:arg1 spin:_arg1 ; 1475 sp:arg1 spin:_arg1 ;
1476 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_other> 1476 sp:arg2 <http://www.epim.no/schemas/mprml/1#IF_other>
1477 ] ; 1477 ] ;
1478 - sp:arg2 <http://www.reportinghub.no/ep/schema/production-well#OtherInjectionFluid> ; 1478 + sp:arg2 <http://www.reportinghub.no/ep/schema/material#OtherInjectionFluid> ;
1479 sp:arg3 <http://www.reportinghub.no/ep/schema/material#Fluid> 1479 sp:arg3 <http://www.reportinghub.no/ep/schema/material#Fluid>
1480 ] 1480 ]
1481 ] 1481 ]
......
...@@ -23,31 +23,63 @@ ...@@ -23,31 +23,63 @@
23 <http://www.epim.no/schemas/mprml/1#A_Global-Objects> 23 <http://www.epim.no/schemas/mprml/1#A_Global-Objects>
24 spin:rule 24 spin:rule
25 [ rdf:type sp:Construct ; 25 [ rdf:type sp:Construct ;
26 - rdfs:comment """STEP 40005a Specify the fluid component - primary component. 26 + rdfs:comment """STEP 40005b Specify the fluid component - non-primary component.
27 The componentName element is used differently in the examples for the primary and non-primary components."""^^xsd:string ; 27 The componentName element is used differently in the examples for the primary and non-primary components."""^^xsd:string ;
28 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ; 28 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
29 sp:predicate rdf:type ; 29 sp:predicate rdf:type ;
30 sp:subject _:b1 30 sp:subject _:b1
31 ] [ sp:object _:b1 ; 31 ] [ sp:object _:b1 ;
32 - sp:predicate <http://www.reportinghub.no/ep/schema/material#hasPrimaryComponent> ; 32 + sp:predicate <http://www.reportinghub.no/ep/schema/material#hasNonPrimaryComponent> ;
33 sp:subject 33 sp:subject
34 [ sp:varName "sampledFluid"^^xsd:string 34 [ sp:varName "sampledFluid"^^xsd:string
35 ] 35 ]
36 ] [ sp:object 36 ] [ sp:object
37 - [ sp:varName "fluidPhaseType"^^xsd:string 37 + [ sp:varName "fluidComponentKindType"^^xsd:string
38 ] ; 38 ] ;
39 sp:predicate rdf:type ; 39 sp:predicate rdf:type ;
40 sp:subject _:b1 40 sp:subject _:b1
41 ] [ sp:object 41 ] [ sp:object
42 - [ sp:varName "fluidComponentKindType"^^xsd:string 42 + [ sp:varName "fluidSubstanceKindType"^^xsd:string
43 ] ; 43 ] ;
44 sp:predicate rdf:type ; 44 sp:predicate rdf:type ;
45 sp:subject _:b1 45 sp:subject _:b1
46 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
47 + sp:predicate rdf:type ;
48 + sp:subject _:b2
49 + ] [ sp:object _:b1 ;
50 + sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
51 + sp:subject _:b2
46 ] [ sp:object 52 ] [ sp:object
47 - [ sp:varName "fluidSubstanceKindType"^^xsd:string 53 + [ sp:varName "sampledFluid"^^xsd:string
48 ] ; 54 ] ;
55 + sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
56 + sp:subject _:b2
57 + ] [ sp:object _:b3 ;
58 + sp:predicate <http://www.reportinghub.no/ep/schema/material#massRatio> ;
59 + sp:subject _:b2
60 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
49 sp:predicate rdf:type ; 61 sp:predicate rdf:type ;
50 - sp:subject _:b1 62 + sp:subject _:b3
63 + ] [ sp:object
64 + [ sp:varName "realWeightPercent"^^xsd:string
65 + ] ;
66 + sp:predicate
67 + [ sp:varName "weightPercentScale"^^xsd:string
68 + ] ;
69 + sp:subject _:b3
70 + ] [ sp:object _:b4 ;
71 + sp:predicate <http://www.reportinghub.no/ep/schema/material#moleRatio> ;
72 + sp:subject _:b2
73 + ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
74 + sp:predicate rdf:type ;
75 + sp:subject _:b4
76 + ] [ sp:object
77 + [ sp:varName "realMolePercent"^^xsd:string
78 + ] ;
79 + sp:predicate
80 + [ sp:varName "molePercentScale"^^xsd:string
81 + ] ;
82 + sp:subject _:b4
51 ]) ; 83 ]) ;
52 sp:where ([ sp:object 84 sp:where ([ sp:object
53 [ sp:varName "fluidAnalysisResultRef"^^xsd:string 85 [ sp:varName "fluidAnalysisResultRef"^^xsd:string
...@@ -73,7 +105,7 @@ The componentName element is used differently in the examples for the primary an ...@@ -73,7 +105,7 @@ The componentName element is used differently in the examples for the primary an
73 sp:subject 105 sp:subject
74 [ sp:varName "fluidAnalysisResultRef"^^xsd:string 106 [ sp:varName "fluidAnalysisResultRef"^^xsd:string
75 ] 107 ]
76 - ] [ sp:object "true"^^xsd:boolean ; 108 + ] [ sp:object "false"^^xsd:boolean ;
77 sp:predicate <http://www.epim.no/schemas/mprml/1#isPrimary> ; 109 sp:predicate <http://www.epim.no/schemas/mprml/1#isPrimary> ;
78 sp:subject 110 sp:subject
79 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 111 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
...@@ -85,39 +117,90 @@ The componentName element is used differently in the examples for the primary an ...@@ -85,39 +117,90 @@ The componentName element is used differently in the examples for the primary an
85 sp:subject 117 sp:subject
86 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 118 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
87 ] 119 ]
120 + ] [ sp:object <http://www.reportinghub.no/ep/schema/material#SubstanceType> ;
121 + sp:predicate rdf:type ;
122 + sp:subject
123 + [ sp:varName "fluidSubstanceKindType"^^xsd:string
124 + ]
125 + ] [ sp:object
126 + [ sp:varName "name"^^xsd:string
127 + ] ;
128 + sp:predicate rdfs:label ;
129 + sp:subject
130 + [ sp:varName "fluidSubstanceKindType"^^xsd:string
131 + ]
88 ] [ rdf:type sp:Optional ; 132 ] [ rdf:type sp:Optional ;
89 sp:elements ([ sp:object 133 sp:elements ([ sp:object
90 - [ sp:varName "componentBaseKindRef"^^xsd:string 134 + [ sp:varName "componentKindRef"^^xsd:string
91 ] ; 135 ] ;
92 - sp:predicate <http://www.epim.no/schemas/mprml/1#componentBaseKindRef> ; 136 + sp:predicate <http://www.epim.no/schemas/mprml/1#componentKindRef> ;
137 + sp:subject
138 + [ sp:varName "fluidSampleCompositionRef"^^xsd:string
139 + ]
140 + ])
141 + ] [ rdf:type sp:Optional ;
142 + sp:elements ([ sp:object
143 + [ sp:varName "weightPercentRef"^^xsd:string
144 + ] ;
145 + sp:predicate <http://www.epim.no/schemas/mprml/1#weightPercentRef> ;
93 sp:subject 146 sp:subject
94 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 147 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
95 ] 148 ]
96 ] [ sp:object 149 ] [ sp:object
97 - [ sp:varName "componentBaseKindRef"^^xsd:string 150 + [ sp:varName "realWeightPercent"^^xsd:string
98 ] ; 151 ] ;
99 - sp:predicate <http://www.reportinghub.no/ep/schema/production-core#mapsTo> ; 152 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
100 sp:subject 153 sp:subject
101 - [ sp:varName "fluidSubstanceKindType"^^xsd:string 154 + [ sp:varName "weightPercentRef"^^xsd:string
155 + ]
156 + ] [ sp:object
157 + [ sp:varName "uomWeightPercent"^^xsd:string
158 + ] ;
159 + sp:predicate <http://www.epim.no/schemas/mprml/1#uomRef> ;
160 + sp:subject
161 + [ sp:varName "weightPercentRef"^^xsd:string
102 ] 162 ]
103 ]) 163 ])
104 ] [ rdf:type sp:Optional ; 164 ] [ rdf:type sp:Optional ;
105 sp:elements ([ sp:object 165 sp:elements ([ sp:object
106 - [ sp:varName "componentKindRef"^^xsd:string 166 + [ sp:varName "molePercentRef"^^xsd:string
107 ] ; 167 ] ;
108 - sp:predicate <http://www.epim.no/schemas/mprml/1#componentKindRef> ; 168 + sp:predicate <http://www.epim.no/schemas/mprml/1#molePercentRef> ;
109 sp:subject 169 sp:subject
110 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 170 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
111 ] 171 ]
172 + ] [ sp:object
173 + [ sp:varName "realMolePercent"^^xsd:string
174 + ] ;
175 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
176 + sp:subject
177 + [ sp:varName "molePercentRef"^^xsd:string
178 + ]
179 + ] [ sp:object
180 + [ sp:varName "uomMolePercent"^^xsd:string
181 + ] ;
182 + sp:predicate <http://www.epim.no/schemas/mprml/1#uomRef> ;
183 + sp:subject
184 + [ sp:varName "molePercentRef"^^xsd:string
185 + ]
112 ]) 186 ])
113 ] [ rdf:type sp:Bind ; 187 ] [ rdf:type sp:Bind ;
114 sp:expression 188 sp:expression
115 - [ rdf:type ep-mpr-spin-lib:selectFluidPhaseType ; 189 + [ rdf:type ep-mpr-spin-lib:selectRatioScale ;
116 - sp:arg1 [ sp:varName "name"^^xsd:string 190 + sp:arg1 [ sp:varName "uomWeightPercent"^^xsd:string
117 ] 191 ]
118 ] ; 192 ] ;
119 sp:variable 193 sp:variable
120 - [ sp:varName "fluidPhaseType"^^xsd:string 194 + [ sp:varName "weightPercentScale"^^xsd:string
195 + ]
196 + ] [ rdf:type sp:Bind ;
197 + sp:expression
198 + [ rdf:type ep-mpr-spin-lib:selectRatioScale ;
199 + sp:arg1 [ sp:varName "uomMolePercent"^^xsd:string
200 + ]
201 + ] ;
202 + sp:variable
203 + [ sp:varName "molePercentScale"^^xsd:string
121 ] 204 ]
122 ] [ rdf:type sp:Bind ; 205 ] [ rdf:type sp:Bind ;
123 sp:expression 206 sp:expression
...@@ -132,71 +215,66 @@ The componentName element is used differently in the examples for the primary an ...@@ -132,71 +215,66 @@ The componentName element is used differently in the examples for the primary an
132 ] ; 215 ] ;
133 spin:rule 216 spin:rule
134 [ rdf:type sp:Construct ; 217 [ rdf:type sp:Construct ;
135 - rdfs:comment """STEP 40002d Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume. 218 + rdfs:comment """STEP 40002c Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume.
136 kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ; 219 kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ;
137 - sp:templates ([ sp:object _:b2 ; 220 + sp:templates ([ sp:object _:b5 ;
138 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ; 221 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ;
139 - sp:subject _:b3 222 + sp:subject _:b6
140 - ] [ sp:object _:b4 ; 223 + ] [ sp:object _:b7 ;
141 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 224 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
142 - sp:subject _:b2 225 + sp:subject _:b5
143 ] [ sp:object <http://www.reportinghub.no/ep/schema/facility#Facility> ; 226 ] [ sp:object <http://www.reportinghub.no/ep/schema/facility#Facility> ;
144 sp:predicate rdf:type ; 227 sp:predicate rdf:type ;
145 - sp:subject _:b4 228 + sp:subject _:b7
146 - ] [ sp:object _:b5 ; 229 + ] [ sp:object _:b8 ;
147 sp:predicate rdfs:label ; 230 sp:predicate rdfs:label ;
148 - sp:subject _:b4 231 + sp:subject _:b7
149 - ] [ sp:object _:b6 ; 232 + ] [ sp:object _:b9 ;
150 sp:predicate rdf:type ; 233 sp:predicate rdf:type ;
151 - sp:subject _:b4
152 - ] [ sp:object _:b5 ;
153 - sp:predicate rdfs:label ;
154 sp:subject _:b7 234 sp:subject _:b7
235 + ] [ sp:object _:b8 ;
236 + sp:predicate rdfs:label ;
237 + sp:subject _:b10
155 ]) ; 238 ]) ;
156 - sp:where ([ sp:object _:b8 ; 239 + sp:where ([ sp:object _:b11 ;
157 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ; 240 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
158 sp:subject spin:_this 241 sp:subject spin:_this
159 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ; 242 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
160 sp:predicate rdf:type ; 243 sp:predicate rdf:type ;
161 - sp:subject _:b8 244 + sp:subject _:b11
162 - ] [ sp:object _:b8 ; 245 + ] [ sp:object _:b11 ;
163 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 246 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
164 - sp:subject _:b3 247 + sp:subject _:b6
165 - ] [ sp:object _:b7 ; 248 + ] [ sp:object _:b10 ;
166 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ; 249 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ;
167 - sp:subject _:b8 250 + sp:subject _:b11
168 - ] [ sp:object _:b9 ; 251 + ] [ sp:object _:b12 ;
169 sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ; 252 sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ;
170 - sp:subject _:b7 253 + sp:subject _:b10
171 - ] [ sp:object _:b10 ; 254 + ] [ sp:object _:b13 ;
172 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 255 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
173 - sp:subject _:b9 256 + sp:subject _:b12
174 - ] [ sp:object _:b11 ; 257 + ] [ sp:object _:b14 ;
175 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ; 258 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
176 - sp:subject _:b9 259 + sp:subject _:b12
177 ] [ rdf:type sp:NotExists ; 260 ] [ rdf:type sp:NotExists ;
178 sp:elements ([ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ; 261 sp:elements ([ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ;
179 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ; 262 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
180 - sp:subject _:b9 263 + sp:subject _:b12
181 ]) 264 ])
182 - ] [ sp:object _:b12 ;
183 - sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent1Ref> ;
184 - sp:subject _:b8
185 - ] [ sp:object _:b13 ;
186 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
187 - sp:subject _:b12
188 - ] [ sp:object _:b14 ;
189 - sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent2Ref> ;
190 - sp:subject _:b8
191 ] [ sp:object _:b15 ; 265 ] [ sp:object _:b15 ;
266 + sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent1Ref> ;
267 + sp:subject _:b11
268 + ] [ sp:object _:b16 ;
192 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 269 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
193 - sp:subject _:b14 270 + sp:subject _:b15
194 - ] [ rdf:type sp:Bind ; 271 + ] [ rdf:type sp:NotExists ;
195 - sp:expression 272 + sp:elements ([ sp:object
196 - [ rdf:type ep-spin-lib:normalizeString ; 273 + [ sp:varName "facilityParent2Ref"^^xsd:string
197 - sp:arg1 _:b10 274 + ] ;
198 - ] ; 275 + sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent2Ref> ;
199 - sp:variable _:b16 276 + sp:subject _:b11
277 + ])
200 ] [ rdf:type sp:Bind ; 278 ] [ rdf:type sp:Bind ;
201 sp:expression 279 sp:expression
202 [ rdf:type ep-spin-lib:normalizeString ; 280 [ rdf:type ep-spin-lib:normalizeString ;
...@@ -206,55 +284,42 @@ kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ; ...@@ -206,55 +284,42 @@ kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ;
206 ] [ rdf:type sp:Bind ; 284 ] [ rdf:type sp:Bind ;
207 sp:expression 285 sp:expression
208 [ rdf:type ep-spin-lib:normalizeString ; 286 [ rdf:type ep-spin-lib:normalizeString ;
209 - sp:arg1 _:b15 287 + sp:arg1 _:b16
210 ] ; 288 ] ;
211 - sp:variable 289 + sp:variable _:b18
212 - [ sp:varName "normalizedFacilityParent2Name"^^xsd:string
213 - ]
214 ] [ rdf:type sp:Bind ; 290 ] [ rdf:type sp:Bind ;
215 sp:expression 291 sp:expression
216 [ rdf:type fn:concat ; 292 [ rdf:type fn:concat ;
217 - sp:arg1 _:b17 ; 293 + sp:arg1 _:b18 ;
218 sp:arg2 "$" ; 294 sp:arg2 "$" ;
219 - sp:arg3 _:b17 ; 295 + sp:arg3 _:b17
220 - sp:arg4 "$" ;
221 - sp:arg5 _:b16
222 ] ; 296 ] ;
223 - sp:variable _:b5 297 + sp:variable _:b8
224 ] [ rdf:type sp:Bind ; 298 ] [ rdf:type sp:Bind ;
225 sp:expression 299 sp:expression
226 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ; 300 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
227 - sp:arg1 _:b5 301 + sp:arg1 _:b8
228 ] ; 302 ] ;
229 - sp:variable _:b4 303 + sp:variable _:b7
230 ] [ rdf:type sp:Bind ; 304 ] [ rdf:type sp:Bind ;
231 sp:expression 305 sp:expression
232 [ rdf:type ep-mpr-spin-lib:selectProductionFacilityType ; 306 [ rdf:type ep-mpr-spin-lib:selectProductionFacilityType ;
233 - sp:arg1 _:b11 307 + sp:arg1 _:b14
234 ] ; 308 ] ;
235 - sp:variable _:b6 309 + sp:variable _:b9
236 ]) 310 ])
237 ] ; 311 ] ;
238 spin:rule 312 spin:rule
239 [ rdf:type sp:Construct ; 313 [ rdf:type sp:Construct ;
240 - rdfs:comment """STEP 40002b Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume. 314 + rdfs:comment """STEP 40002a Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume.
241 -kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ; 315 +kind is \"well\" and facilityAlias is supplied"""^^xsd:string ;
242 - sp:templates ([ sp:object _:b18 ; 316 + sp:templates ([ sp:object _:b19 ;
243 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ; 317 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ;
244 - sp:subject _:b19
245 - ] [ sp:object _:b20 ;
246 - sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
247 - sp:subject _:b18
248 - ] [ sp:object <http://www.reportinghub.no/ep/schema/facility#Facility> ;
249 - sp:predicate rdf:type ;
250 sp:subject _:b20 318 sp:subject _:b20
251 ] [ sp:object _:b21 ; 319 ] [ sp:object _:b21 ;
252 - sp:predicate rdfs:label ; 320 + sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
253 - sp:subject _:b20 321 + sp:subject _:b19
254 ] [ sp:object _:b22 ; 322 ] [ sp:object _:b22 ;
255 - sp:predicate rdf:type ;
256 - sp:subject _:b20
257 - ] [ sp:object _:b21 ;
258 sp:predicate rdfs:label ; 323 sp:predicate rdfs:label ;
259 sp:subject _:b23 324 sp:subject _:b23
260 ]) ; 325 ]) ;
...@@ -266,101 +331,75 @@ kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ; ...@@ -266,101 +331,75 @@ kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ;
266 sp:subject _:b24 331 sp:subject _:b24
267 ] [ sp:object _:b24 ; 332 ] [ sp:object _:b24 ;
268 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 333 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
269 - sp:subject _:b19 334 + sp:subject _:b20
270 ] [ sp:object _:b23 ; 335 ] [ sp:object _:b23 ;
271 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ; 336 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ;
272 sp:subject _:b24 337 sp:subject _:b24
273 ] [ sp:object _:b25 ; 338 ] [ sp:object _:b25 ;
274 sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ; 339 sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ;
275 sp:subject _:b23 340 sp:subject _:b23
276 - ] [ sp:object _:b26 ; 341 + ] [ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ;
277 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
278 - sp:subject _:b25
279 - ] [ sp:object _:b27 ;
280 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ; 342 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
281 sp:subject _:b25 343 sp:subject _:b25
282 - ] [ rdf:type sp:NotExists ; 344 + ] [ sp:object _:b26 ;
283 - sp:elements ([ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ; 345 + sp:predicate <http://www.epim.no/schemas/mprml/1#facilityAliasRef> ;
284 - sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ; 346 + sp:subject _:b24
285 - sp:subject _:b25 347 + ] [ sp:object _:b27 ;
286 - ]) 348 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
287 - ] [ rdf:type sp:NotExists ; 349 + sp:subject _:b26
288 - sp:elements ([ sp:object
289 - [ sp:varName "facilityParent1Ref"^^xsd:string
290 - ] ;
291 - sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent1Ref> ;
292 - sp:subject _:b24
293 - ])
294 ] [ rdf:type sp:Bind ; 350 ] [ rdf:type sp:Bind ;
295 sp:expression 351 sp:expression
296 [ rdf:type ep-spin-lib:normalizeString ; 352 [ rdf:type ep-spin-lib:normalizeString ;
297 - sp:arg1 _:b26 353 + sp:arg1 _:b27
298 - ] ;
299 - sp:variable _:b21
300 - ] [ rdf:type sp:Bind ;
301 - sp:expression
302 - [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
303 - sp:arg1 _:b21
304 ] ; 354 ] ;
305 - sp:variable _:b20 355 + sp:variable _:b22
306 ] [ rdf:type sp:Bind ; 356 ] [ rdf:type sp:Bind ;
307 sp:expression 357 sp:expression
308 - [ rdf:type ep-mpr-spin-lib:selectProductionFacilityType ; 358 + [ rdf:type rhspin:wellByName ;
309 - sp:arg1 _:b27 359 + arg:wellName _:b27
310 ] ; 360 ] ;
311 - sp:variable _:b22 361 + sp:variable _:b21
312 ]) 362 ])
313 ] ; 363 ] ;
314 spin:rule 364 spin:rule
315 [ rdf:type sp:Construct ; 365 [ rdf:type sp:Construct ;
316 - rdfs:comment "STEP 40001 Create the FluidSampleReport, FluidSampling activity and FluidSample object ."^^xsd:string ; 366 + rdfs:comment "STEP 40004 Specify the fluid analysis result."^^xsd:string ;
317 - sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/production-report#FluidSampleReport> ; 367 + sp:templates ([ sp:object _:b28 ;
318 - sp:predicate rdf:type ; 368 + sp:predicate rdfs:label ;
319 - sp:subject _:b28 369 + sp:subject _:b29
320 - ] [ sp:object _:b29 ;
321 - sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ;
322 - sp:subject _:b28
323 ] [ sp:object _:b30 ; 370 ] [ sp:object _:b30 ;
324 - sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ;
325 - sp:subject _:b28
326 - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-activity#FluidSamplingAndAnalysis> ;
327 - sp:predicate rdf:type ;
328 - sp:subject _:b30
329 - ] [ sp:object _:b31 ;
330 - sp:predicate rdf:type ;
331 - sp:subject _:b30
332 - ] [ sp:object _:b32 ;
333 - sp:predicate <http://www.reportinghub.no/ep/schema/activity#nominallyAt> ;
334 - sp:subject _:b30
335 - ] [ sp:object _:b33 ;
336 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 371 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
337 - sp:subject _:b30 372 + sp:subject _:b31
338 ]) ; 373 ]) ;
339 - sp:where ([ sp:object spin:_this ; 374 + sp:where ([ sp:object _:b32 ;
375 + sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
376 + sp:subject spin:_this
377 + ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
378 + sp:predicate rdf:type ;
379 + sp:subject _:b32
380 + ] [ sp:object _:b32 ;
340 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 381 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
341 sp:subject _:b29 382 sp:subject _:b29
383 + ] [ sp:object _:b31 ;
384 + sp:predicate <http://www.reportinghub.no/ep/schema/activity#sampledFluid> ;
385 + sp:subject _:b29
342 ] [ sp:object _:b33 ; 386 ] [ sp:object _:b33 ;
387 + sp:predicate <http://www.epim.no/schemas/mprml/1#name> ;
388 + sp:subject _:b32
389 + ] [ sp:object _:b30 ;
343 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ; 390 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
344 sp:subject spin:_this 391 sp:subject spin:_this
345 - ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ; 392 + ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidAnalysisResult> ;
346 sp:predicate rdf:type ; 393 sp:predicate rdf:type ;
347 - sp:subject _:b33 394 + sp:subject _:b30
395 + ] [ sp:object _:b33 ;
396 + sp:predicate <http://www.epim.no/schemas/mprml/1#nameFluidSample> ;
397 + sp:subject _:b30
348 ] [ rdf:type sp:Optional ; 398 ] [ rdf:type sp:Optional ;
349 - sp:elements ([ sp:object _:b32 ; 399 + sp:elements ([ sp:object _:b28 ;
350 - sp:predicate <http://www.epim.no/schemas/mprml/1#acquisitionDate> ; 400 + sp:predicate <http://www.epim.no/schemas/mprml/1#nameFluidAnalysis> ;
351 - sp:subject _:b33 401 + sp:subject _:b30
352 ]) 402 ])
353 - ] [ rdf:type sp:Optional ;
354 - sp:elements ([ sp:object _:b34 ;
355 - sp:predicate <http://www.epim.no/schemas/mprml/1#sampleTypeRef> ;
356 - sp:subject _:b33
357 - ])
358 - ] [ rdf:type sp:Bind ;
359 - sp:expression
360 - [ rdf:type ep-mpr-spin-lib:selectFluidSamplingType ;
361 - sp:arg1 _:b34
362 - ] ;
363 - sp:variable _:b31
364 ]) 403 ])
365 ] ; 404 ] ;
366 spin:rule 405 spin:rule
...@@ -369,107 +408,136 @@ kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ; ...@@ -369,107 +408,136 @@ kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ;
369 The sample is anonymous. It is matched to its results via the sample name, which is assumed to be unique within the file."""^^xsd:string ; 408 The sample is anonymous. It is matched to its results via the sample name, which is assumed to be unique within the file."""^^xsd:string ;
370 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ; 409 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
371 sp:predicate rdf:type ; 410 sp:predicate rdf:type ;
372 - sp:subject _:b35 411 + sp:subject _:b34
373 - ] [ sp:object _:b36 ;
374 - sp:predicate rdfs:label ;
375 - sp:subject _:b35
376 ] [ sp:object _:b35 ; 412 ] [ sp:object _:b35 ;
413 + sp:predicate rdfs:label ;
414 + sp:subject _:b34
415 + ] [ sp:object _:b34 ;
377 sp:predicate <http://www.reportinghub.no/ep/schema/activity#sampledFluid> ; 416 sp:predicate <http://www.reportinghub.no/ep/schema/activity#sampledFluid> ;
378 - sp:subject _:b37 417 + sp:subject _:b36
379 ]) ; 418 ]) ;
380 - sp:where ([ sp:object _:b38 ; 419 + sp:where ([ sp:object _:b37 ;
381 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ; 420 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
382 sp:subject spin:_this 421 sp:subject spin:_this
383 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ; 422 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
384 sp:predicate rdf:type ; 423 sp:predicate rdf:type ;
385 - sp:subject _:b38
386 - ] [ sp:object _:b38 ;
387 - sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
388 sp:subject _:b37 424 sp:subject _:b37
389 - ] [ sp:object _:b36 ; 425 + ] [ sp:object _:b37 ;
426 + sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
427 + sp:subject _:b36
428 + ] [ sp:object _:b35 ;
390 sp:predicate <http://www.epim.no/schemas/mprml/1#name> ; 429 sp:predicate <http://www.epim.no/schemas/mprml/1#name> ;
391 - sp:subject _:b38 430 + sp:subject _:b37
392 ]) 431 ])
393 ] ; 432 ] ;
394 spin:rule 433 spin:rule
395 [ rdf:type sp:Construct ; 434 [ rdf:type sp:Construct ;
396 - rdfs:comment "STEP 40004 Specify the fluid analysis result."^^xsd:string ; 435 + rdfs:comment "STEP 40001 Create the FluidSampleReport, FluidSampling activity and FluidSample object ."^^xsd:string ;
397 - sp:templates ([ sp:object _:b39 ; 436 + sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/production-report#FluidSampleReport> ;
398 - sp:predicate rdfs:label ; 437 + sp:predicate rdf:type ;
438 + sp:subject _:b38
439 + ] [ sp:object _:b39 ;
440 + sp:predicate <http://www.reportinghub.no/ep/schema/core#partOf> ;
441 + sp:subject _:b38
442 + ] [ sp:object _:b40 ;
443 + sp:predicate <http://www.reportinghub.no/ep/schema/report#reportOn> ;
444 + sp:subject _:b38
445 + ] [ sp:object <http://www.reportinghub.no/ep/schema/production-activity#FluidSamplingAndAnalysis> ;
446 + sp:predicate rdf:type ;
399 sp:subject _:b40 447 sp:subject _:b40
400 ] [ sp:object _:b41 ; 448 ] [ sp:object _:b41 ;
401 - sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
402 - sp:subject _:b42
403 - ]) ;
404 - sp:where ([ sp:object _:b43 ;
405 - sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
406 - sp:subject spin:_this
407 - ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
408 sp:predicate rdf:type ; 449 sp:predicate rdf:type ;
409 - sp:subject _:b43
410 - ] [ sp:object _:b43 ;
411 - sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
412 sp:subject _:b40 450 sp:subject _:b40
413 ] [ sp:object _:b42 ; 451 ] [ sp:object _:b42 ;
414 - sp:predicate <http://www.reportinghub.no/ep/schema/activity#sampledFluid> ; 452 + sp:predicate <http://www.reportinghub.no/ep/schema/activity#nominallyAt> ;
415 sp:subject _:b40 453 sp:subject _:b40
416 - ] [ sp:object _:b44 ; 454 + ] [ sp:object _:b43 ;
417 - sp:predicate <http://www.epim.no/schemas/mprml/1#name> ; 455 + sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
418 - sp:subject _:b43 456 + sp:subject _:b40
419 - ] [ sp:object _:b41 ; 457 + ]) ;
458 + sp:where ([ sp:object spin:_this ;
459 + sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
460 + sp:subject _:b39
461 + ] [ sp:object _:b43 ;
420 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ; 462 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
421 sp:subject spin:_this 463 sp:subject spin:_this
422 - ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidAnalysisResult> ; 464 + ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
423 sp:predicate rdf:type ; 465 sp:predicate rdf:type ;
424 - sp:subject _:b41 466 + sp:subject _:b43
425 - ] [ sp:object _:b44 ;
426 - sp:predicate <http://www.epim.no/schemas/mprml/1#nameFluidSample> ;
427 - sp:subject _:b41
428 ] [ rdf:type sp:Optional ; 467 ] [ rdf:type sp:Optional ;
429 - sp:elements ([ sp:object _:b39 ; 468 + sp:elements ([ sp:object _:b42 ;
430 - sp:predicate <http://www.epim.no/schemas/mprml/1#nameFluidAnalysis> ; 469 + sp:predicate <http://www.epim.no/schemas/mprml/1#acquisitionDate> ;
431 - sp:subject _:b41 470 + sp:subject _:b43
471 + ])
472 + ] [ rdf:type sp:Optional ;
473 + sp:elements ([ sp:object _:b44 ;
474 + sp:predicate <http://www.epim.no/schemas/mprml/1#sampleTypeRef> ;
475 + sp:subject _:b43
432 ]) 476 ])
477 + ] [ rdf:type sp:Bind ;
478 + sp:expression
479 + [ rdf:type ep-mpr-spin-lib:selectFluidSamplingType ;
480 + sp:arg1 _:b44
481 + ] ;
482 + sp:variable _:b41
433 ]) 483 ])
434 ] ; 484 ] ;
435 spin:rule 485 spin:rule
436 [ rdf:type sp:Construct ; 486 [ rdf:type sp:Construct ;
437 - rdfs:comment """STEP 40002a Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume. 487 + rdfs:comment """STEP 40002b Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume.
438 -kind is \"well\" and facilityAlias is supplied"""^^xsd:string ; 488 +kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ;
439 sp:templates ([ sp:object _:b45 ; 489 sp:templates ([ sp:object _:b45 ;
440 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ; 490 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ;
441 sp:subject _:b46 491 sp:subject _:b46
442 ] [ sp:object _:b47 ; 492 ] [ sp:object _:b47 ;
443 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 493 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
444 sp:subject _:b45 494 sp:subject _:b45
495 + ] [ sp:object <http://www.reportinghub.no/ep/schema/facility#Facility> ;
496 + sp:predicate rdf:type ;
497 + sp:subject _:b47
445 ] [ sp:object _:b48 ; 498 ] [ sp:object _:b48 ;
446 sp:predicate rdfs:label ; 499 sp:predicate rdfs:label ;
447 - sp:subject _:b49 500 + sp:subject _:b47
501 + ] [ sp:object _:b49 ;
502 + sp:predicate rdf:type ;
503 + sp:subject _:b47
504 + ] [ sp:object _:b48 ;
505 + sp:predicate rdfs:label ;
506 + sp:subject _:b50
448 ]) ; 507 ]) ;
449 - sp:where ([ sp:object _:b50 ; 508 + sp:where ([ sp:object _:b51 ;
450 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ; 509 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
451 sp:subject spin:_this 510 sp:subject spin:_this
452 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ; 511 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
453 sp:predicate rdf:type ; 512 sp:predicate rdf:type ;
454 - sp:subject _:b50 513 + sp:subject _:b51
455 - ] [ sp:object _:b50 ; 514 + ] [ sp:object _:b51 ;
456 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 515 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
457 sp:subject _:b46 516 sp:subject _:b46
458 - ] [ sp:object _:b49 ; 517 + ] [ sp:object _:b50 ;
459 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ; 518 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ;
460 - sp:subject _:b50
461 - ] [ sp:object _:b51 ;
462 - sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ;
463 - sp:subject _:b49
464 - ] [ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ;
465 - sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
466 sp:subject _:b51 519 sp:subject _:b51
467 ] [ sp:object _:b52 ; 520 ] [ sp:object _:b52 ;
468 - sp:predicate <http://www.epim.no/schemas/mprml/1#facilityAliasRef> ; 521 + sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ;
469 sp:subject _:b50 522 sp:subject _:b50
470 ] [ sp:object _:b53 ; 523 ] [ sp:object _:b53 ;
471 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 524 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
472 sp:subject _:b52 525 sp:subject _:b52
526 + ] [ sp:object _:b54 ;
527 + sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
528 + sp:subject _:b52
529 + ] [ rdf:type sp:NotExists ;
530 + sp:elements ([ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ;
531 + sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
532 + sp:subject _:b52
533 + ])
534 + ] [ rdf:type sp:NotExists ;
535 + sp:elements ([ sp:object
536 + [ sp:varName "facilityParent1Ref"^^xsd:string
537 + ] ;
538 + sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent1Ref> ;
539 + sp:subject _:b51
540 + ])
473 ] [ rdf:type sp:Bind ; 541 ] [ rdf:type sp:Bind ;
474 sp:expression 542 sp:expression
475 [ rdf:type ep-spin-lib:normalizeString ; 543 [ rdf:type ep-spin-lib:normalizeString ;
...@@ -478,166 +546,149 @@ kind is \"well\" and facilityAlias is supplied"""^^xsd:string ; ...@@ -478,166 +546,149 @@ kind is \"well\" and facilityAlias is supplied"""^^xsd:string ;
478 sp:variable _:b48 546 sp:variable _:b48
479 ] [ rdf:type sp:Bind ; 547 ] [ rdf:type sp:Bind ;
480 sp:expression 548 sp:expression
481 - [ rdf:type rhspin:wellByName ; 549 + [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
482 - arg:wellName _:b53 550 + sp:arg1 _:b48
483 ] ; 551 ] ;
484 sp:variable _:b47 552 sp:variable _:b47
553 + ] [ rdf:type sp:Bind ;
554 + sp:expression
555 + [ rdf:type ep-mpr-spin-lib:selectProductionFacilityType ;
556 + sp:arg1 _:b54
557 + ] ;
558 + sp:variable _:b49
485 ]) 559 ])
486 ] ; 560 ] ;
487 spin:rule 561 spin:rule
488 [ rdf:type sp:Construct ; 562 [ rdf:type sp:Construct ;
489 - rdfs:comment """STEP 40002c Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume. 563 + rdfs:comment """STEP 40002d Create the Facility where the sampling takes place - the same approach to identification of the facility is used as for product volume.
490 kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ; 564 kind is not \"well\" and facilityParent1 is not supplied"""^^xsd:string ;
491 - sp:templates ([ sp:object _:b54 ; 565 + sp:templates ([ sp:object _:b55 ;
492 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ; 566 sp:predicate <http://www.reportinghub.no/ep/schema/production-activity#samplingPerformedAt> ;
493 - sp:subject _:b55 567 + sp:subject _:b56
494 - ] [ sp:object _:b56 ; 568 + ] [ sp:object _:b57 ;
495 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ; 569 sp:predicate <http://www.reportinghub.no/ep/schema/core#temporalPartOf> ;
496 - sp:subject _:b54 570 + sp:subject _:b55
497 ] [ sp:object <http://www.reportinghub.no/ep/schema/facility#Facility> ; 571 ] [ sp:object <http://www.reportinghub.no/ep/schema/facility#Facility> ;
498 sp:predicate rdf:type ; 572 sp:predicate rdf:type ;
499 - sp:subject _:b56 573 + sp:subject _:b57
500 - ] [ sp:object _:b57 ;
501 - sp:predicate rdfs:label ;
502 - sp:subject _:b56
503 ] [ sp:object _:b58 ; 574 ] [ sp:object _:b58 ;
575 + sp:predicate rdfs:label ;
576 + sp:subject _:b57
577 + ] [ sp:object _:b59 ;
504 sp:predicate rdf:type ; 578 sp:predicate rdf:type ;
505 - sp:subject _:b56 579 + sp:subject _:b57
506 - ] [ sp:object _:b57 ; 580 + ] [ sp:object _:b58 ;
507 sp:predicate rdfs:label ; 581 sp:predicate rdfs:label ;
508 - sp:subject _:b59 582 + sp:subject _:b60
509 ]) ; 583 ]) ;
510 - sp:where ([ sp:object _:b60 ; 584 + sp:where ([ sp:object _:b61 ;
511 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ; 585 sp:predicate <http://www.epim.no/schemas/mprml/1#objectRef> ;
512 sp:subject spin:_this 586 sp:subject spin:_this
513 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ; 587 ] [ sp:object <http://www.epim.no/schemas/mprml/1#Obj_fluidSample> ;
514 sp:predicate rdf:type ; 588 sp:predicate rdf:type ;
515 - sp:subject _:b60 589 + sp:subject _:b61
516 - ] [ sp:object _:b60 ; 590 + ] [ sp:object _:b61 ;
517 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 591 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
518 - sp:subject _:b55 592 + sp:subject _:b56
519 - ] [ sp:object _:b59 ; 593 + ] [ sp:object _:b60 ;
520 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ; 594 sp:predicate <http://www.epim.no/schemas/mprml/1#facilityRef> ;
521 - sp:subject _:b60
522 - ] [ sp:object _:b61 ;
523 - sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ;
524 - sp:subject _:b59
525 - ] [ sp:object _:b62 ;
526 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
527 sp:subject _:b61 595 sp:subject _:b61
596 + ] [ sp:object _:b62 ;
597 + sp:predicate <http://www.epim.no/schemas/mprml/1#nameRef> ;
598 + sp:subject _:b60
528 ] [ sp:object _:b63 ; 599 ] [ sp:object _:b63 ;
600 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
601 + sp:subject _:b62
602 + ] [ sp:object _:b64 ;
529 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ; 603 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
530 - sp:subject _:b61 604 + sp:subject _:b62
531 ] [ rdf:type sp:NotExists ; 605 ] [ rdf:type sp:NotExists ;
532 sp:elements ([ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ; 606 sp:elements ([ sp:object <http://www.epim.no/schemas/mprml/1#RF_well> ;
533 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ; 607 sp:predicate <http://www.epim.no/schemas/mprml/1#kindRef> ;
534 - sp:subject _:b61 608 + sp:subject _:b62
535 ]) 609 ])
536 - ] [ sp:object _:b64 ;
537 - sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent1Ref> ;
538 - sp:subject _:b60
539 ] [ sp:object _:b65 ; 610 ] [ sp:object _:b65 ;
611 + sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent1Ref> ;
612 + sp:subject _:b61
613 + ] [ sp:object _:b66 ;
540 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 614 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
541 - sp:subject _:b64 615 + sp:subject _:b65
542 - ] [ rdf:type sp:NotExists ; 616 + ] [ sp:object _:b67 ;
543 - sp:elements ([ sp:object 617 + sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent2Ref> ;
544 - [ sp:varName "facilityParent2Ref"^^xsd:string 618 + sp:subject _:b61
545 - ] ; 619 + ] [ sp:object _:b68 ;
546 - sp:predicate <http://www.epim.no/schemas/mprml/1#facilityParent2Ref> ; 620 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
547 - sp:subject _:b60 621 + sp:subject _:b67
548 - ])
549 ] [ rdf:type sp:Bind ; 622 ] [ rdf:type sp:Bind ;
550 sp:expression 623 sp:expression
551 [ rdf:type ep-spin-lib:normalizeString ; 624 [ rdf:type ep-spin-lib:normalizeString ;
552 - sp:arg1 _:b62 625 + sp:arg1 _:b63
553 ] ; 626 ] ;
554 - sp:variable _:b66 627 + sp:variable _:b69
555 ] [ rdf:type sp:Bind ; 628 ] [ rdf:type sp:Bind ;
556 sp:expression 629 sp:expression
557 [ rdf:type ep-spin-lib:normalizeString ; 630 [ rdf:type ep-spin-lib:normalizeString ;
558 - sp:arg1 _:b65 631 + sp:arg1 _:b66
559 ] ; 632 ] ;
560 - sp:variable _:b67 633 + sp:variable _:b70
634 + ] [ rdf:type sp:Bind ;
635 + sp:expression
636 + [ rdf:type ep-spin-lib:normalizeString ;
637 + sp:arg1 _:b68
638 + ] ;
639 + sp:variable
640 + [ sp:varName "normalizedFacilityParent2Name"^^xsd:string
641 + ]
561 ] [ rdf:type sp:Bind ; 642 ] [ rdf:type sp:Bind ;
562 sp:expression 643 sp:expression
563 [ rdf:type fn:concat ; 644 [ rdf:type fn:concat ;
564 - sp:arg1 _:b67 ; 645 + sp:arg1 _:b70 ;
565 sp:arg2 "$" ; 646 sp:arg2 "$" ;
566 - sp:arg3 _:b66 647 + sp:arg3 _:b70 ;
648 + sp:arg4 "$" ;
649 + sp:arg5 _:b69
567 ] ; 650 ] ;
568 - sp:variable _:b57 651 + sp:variable _:b58
569 ] [ rdf:type sp:Bind ; 652 ] [ rdf:type sp:Bind ;
570 sp:expression 653 sp:expression
571 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ; 654 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
572 - sp:arg1 _:b57 655 + sp:arg1 _:b58
573 ] ; 656 ] ;
574 - sp:variable _:b56 657 + sp:variable _:b57
575 ] [ rdf:type sp:Bind ; 658 ] [ rdf:type sp:Bind ;
576 sp:expression 659 sp:expression
577 [ rdf:type ep-mpr-spin-lib:selectProductionFacilityType ; 660 [ rdf:type ep-mpr-spin-lib:selectProductionFacilityType ;
578 - sp:arg1 _:b63 661 + sp:arg1 _:b64
579 ] ; 662 ] ;
580 - sp:variable _:b58 663 + sp:variable _:b59
581 ]) 664 ])
582 ] ; 665 ] ;
583 spin:rule 666 spin:rule
584 [ rdf:type sp:Construct ; 667 [ rdf:type sp:Construct ;
585 - rdfs:comment """STEP 40005b Specify the fluid component - non-primary component. 668 + rdfs:comment """STEP 40005a Specify the fluid component - primary component.
586 The componentName element is used differently in the examples for the primary and non-primary components."""^^xsd:string ; 669 The componentName element is used differently in the examples for the primary and non-primary components."""^^xsd:string ;
587 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ; 670 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/material#Fluid> ;
588 sp:predicate rdf:type ; 671 sp:predicate rdf:type ;
589 - sp:subject _:b68 672 + sp:subject _:b71
590 - ] [ sp:object _:b68 ; 673 + ] [ sp:object _:b71 ;
591 - sp:predicate <http://www.reportinghub.no/ep/schema/material#hasNonPrimaryComponent> ; 674 + sp:predicate <http://www.reportinghub.no/ep/schema/material#hasPrimaryComponent> ;
592 sp:subject 675 sp:subject
593 [ sp:varName "sampledFluid"^^xsd:string 676 [ sp:varName "sampledFluid"^^xsd:string
594 ] 677 ]
595 ] [ sp:object 678 ] [ sp:object
596 - [ sp:varName "fluidComponentKindType"^^xsd:string 679 + [ sp:varName "fluidPhaseType"^^xsd:string
597 - ] ;
598 - sp:predicate rdf:type ;
599 - sp:subject _:b68
600 - ] [ sp:object
601 - [ sp:varName "fluidSubstanceKindType"^^xsd:string
602 - ] ;
603 - sp:predicate rdf:type ;
604 - sp:subject _:b68
605 - ] [ sp:object <http://www.reportinghub.no/ep/schema/material#MaterialPartWholePair> ;
606 - sp:predicate rdf:type ;
607 - sp:subject _:b69
608 - ] [ sp:object _:b68 ;
609 - sp:predicate <http://www.reportinghub.no/ep/schema/material#partMaterialOfPair> ;
610 - sp:subject _:b69
611 - ] [ sp:object
612 - [ sp:varName "sampledFluid"^^xsd:string
613 ] ; 680 ] ;
614 - sp:predicate <http://www.reportinghub.no/ep/schema/material#wholeMaterialOfPair> ;
615 - sp:subject _:b69
616 - ] [ sp:object _:b70 ;
617 - sp:predicate <http://www.reportinghub.no/ep/schema/material#massRatio> ;
618 - sp:subject _:b69
619 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
620 sp:predicate rdf:type ; 681 sp:predicate rdf:type ;
621 - sp:subject _:b70 682 + sp:subject _:b71
622 ] [ sp:object 683 ] [ sp:object
623 - [ sp:varName "realWeightPercent"^^xsd:string 684 + [ sp:varName "fluidComponentKindType"^^xsd:string
624 - ] ;
625 - sp:predicate
626 - [ sp:varName "weightPercentScale"^^xsd:string
627 ] ; 685 ] ;
628 - sp:subject _:b70
629 - ] [ sp:object _:b71 ;
630 - sp:predicate <http://www.reportinghub.no/ep/schema/material#moleRatio> ;
631 - sp:subject _:b69
632 - ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Ratio> ;
633 sp:predicate rdf:type ; 686 sp:predicate rdf:type ;
634 sp:subject _:b71 687 sp:subject _:b71
635 ] [ sp:object 688 ] [ sp:object
636 - [ sp:varName "realMolePercent"^^xsd:string 689 + [ sp:varName "fluidSubstanceKindType"^^xsd:string
637 - ] ;
638 - sp:predicate
639 - [ sp:varName "molePercentScale"^^xsd:string
640 ] ; 690 ] ;
691 + sp:predicate rdf:type ;
641 sp:subject _:b71 692 sp:subject _:b71
642 ]) ; 693 ]) ;
643 sp:where ([ sp:object 694 sp:where ([ sp:object
...@@ -664,7 +715,7 @@ The componentName element is used differently in the examples for the primary an ...@@ -664,7 +715,7 @@ The componentName element is used differently in the examples for the primary an
664 sp:subject 715 sp:subject
665 [ sp:varName "fluidAnalysisResultRef"^^xsd:string 716 [ sp:varName "fluidAnalysisResultRef"^^xsd:string
666 ] 717 ]
667 - ] [ sp:object "false"^^xsd:boolean ; 718 + ] [ sp:object "true"^^xsd:boolean ;
668 sp:predicate <http://www.epim.no/schemas/mprml/1#isPrimary> ; 719 sp:predicate <http://www.epim.no/schemas/mprml/1#isPrimary> ;
669 sp:subject 720 sp:subject
670 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 721 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
...@@ -676,90 +727,39 @@ The componentName element is used differently in the examples for the primary an ...@@ -676,90 +727,39 @@ The componentName element is used differently in the examples for the primary an
676 sp:subject 727 sp:subject
677 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 728 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
678 ] 729 ]
679 - ] [ sp:object <http://www.reportinghub.no/ep/schema/production-activity#SubstanceType> ;
680 - sp:predicate rdf:type ;
681 - sp:subject
682 - [ sp:varName "fluidSubstanceKindType"^^xsd:string
683 - ]
684 - ] [ sp:object
685 - [ sp:varName "name"^^xsd:string
686 - ] ;
687 - sp:predicate rdfs:label ;
688 - sp:subject
689 - [ sp:varName "fluidSubstanceKindType"^^xsd:string
690 - ]
691 ] [ rdf:type sp:Optional ; 730 ] [ rdf:type sp:Optional ;
692 sp:elements ([ sp:object 731 sp:elements ([ sp:object
693 - [ sp:varName "componentKindRef"^^xsd:string 732 + [ sp:varName "componentBaseKindRef"^^xsd:string
694 - ] ;
695 - sp:predicate <http://www.epim.no/schemas/mprml/1#componentKindRef> ;
696 - sp:subject
697 - [ sp:varName "fluidSampleCompositionRef"^^xsd:string
698 - ]
699 - ])
700 - ] [ rdf:type sp:Optional ;
701 - sp:elements ([ sp:object
702 - [ sp:varName "weightPercentRef"^^xsd:string
703 ] ; 733 ] ;
704 - sp:predicate <http://www.epim.no/schemas/mprml/1#weightPercentRef> ; 734 + sp:predicate <http://www.epim.no/schemas/mprml/1#componentBaseKindRef> ;
705 sp:subject 735 sp:subject
706 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 736 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
707 ] 737 ]
708 ] [ sp:object 738 ] [ sp:object
709 - [ sp:varName "realWeightPercent"^^xsd:string 739 + [ sp:varName "componentBaseKindRef"^^xsd:string
710 - ] ;
711 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
712 - sp:subject
713 - [ sp:varName "weightPercentRef"^^xsd:string
714 - ]
715 - ] [ sp:object
716 - [ sp:varName "uomWeightPercent"^^xsd:string
717 ] ; 740 ] ;
718 - sp:predicate <http://www.epim.no/schemas/mprml/1#uomRef> ; 741 + sp:predicate <http://www.reportinghub.no/ep/schema/production-core#mapsTo> ;
719 sp:subject 742 sp:subject
720 - [ sp:varName "weightPercentRef"^^xsd:string 743 + [ sp:varName "fluidSubstanceKindType"^^xsd:string
721 ] 744 ]
722 ]) 745 ])
723 ] [ rdf:type sp:Optional ; 746 ] [ rdf:type sp:Optional ;
724 sp:elements ([ sp:object 747 sp:elements ([ sp:object
725 - [ sp:varName "molePercentRef"^^xsd:string 748 + [ sp:varName "componentKindRef"^^xsd:string
726 ] ; 749 ] ;
727 - sp:predicate <http://www.epim.no/schemas/mprml/1#molePercentRef> ; 750 + sp:predicate <http://www.epim.no/schemas/mprml/1#componentKindRef> ;
728 sp:subject 751 sp:subject
729 [ sp:varName "fluidSampleCompositionRef"^^xsd:string 752 [ sp:varName "fluidSampleCompositionRef"^^xsd:string
730 ] 753 ]
731 - ] [ sp:object
732 - [ sp:varName "realMolePercent"^^xsd:string
733 - ] ;
734 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
735 - sp:subject
736 - [ sp:varName "molePercentRef"^^xsd:string
737 - ]
738 - ] [ sp:object
739 - [ sp:varName "uomMolePercent"^^xsd:string
740 - ] ;
741 - sp:predicate <http://www.epim.no/schemas/mprml/1#uomRef> ;
742 - sp:subject
743 - [ sp:varName "molePercentRef"^^xsd:string
744 - ]
745 ]) 754 ])
746 ] [ rdf:type sp:Bind ; 755 ] [ rdf:type sp:Bind ;
747 sp:expression 756 sp:expression
748 - [ rdf:type ep-mpr-spin-lib:selectRatioScale ; 757 + [ rdf:type ep-mpr-spin-lib:selectFluidPhaseType ;
749 - sp:arg1 [ sp:varName "uomWeightPercent"^^xsd:string 758 + sp:arg1 [ sp:varName "name"^^xsd:string
750 - ]
751 - ] ;
752 - sp:variable
753 - [ sp:varName "weightPercentScale"^^xsd:string
754 - ]
755 - ] [ rdf:type sp:Bind ;
756 - sp:expression
757 - [ rdf:type ep-mpr-spin-lib:selectRatioScale ;
758 - sp:arg1 [ sp:varName "uomMolePercent"^^xsd:string
759 ] 759 ]
760 ] ; 760 ] ;
761 sp:variable 761 sp:variable
762 - [ sp:varName "molePercentScale"^^xsd:string 762 + [ sp:varName "fluidPhaseType"^^xsd:string
763 ] 763 ]
764 ] [ rdf:type sp:Bind ; 764 ] [ rdf:type sp:Bind ;
765 sp:expression 765 sp:expression
...@@ -775,175 +775,178 @@ The componentName element is used differently in the examples for the primary an ...@@ -775,175 +775,178 @@ The componentName element is used differently in the examples for the primary an
775 775
776 <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0> 776 <http://www.reportinghub.no/ep/transform/TRANSFORM_mpr-fluidSample-v1.0>
777 rdf:type owl:Ontology ; 777 rdf:type owl:Ontology ;
778 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/production-activity> , <http://www.epim.no/schemas/mprml/1> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> , <http://www.reportinghub.no/ep/mpr/spin/1.1/lib> ; 778 + owl:imports <http://www.reportinghub.no/ep/mpr/spin/1.1/lib> , <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> , <http://spinrdf.org/spin> , <http://www.epim.no/schemas/mprml/1> , <http://www.reportinghub.no/ep/schema/1.0/production-activity> ;
779 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 779 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
780 780
781 -_:b55 781 +_:b18
782 - sp:varName "fluidSamplingAndAnalysis"^^xsd:string . 782 + sp:varName "normalizedFacilityParent1Name"^^xsd:string .
783 783
784 -_:b56 784 +_:b17
785 - sp:varName "facility"^^xsd:string . 785 + sp:varName "normalizedFacilityChildName"^^xsd:string .
786 786
787 -_:b57 787 +_:b16
788 - sp:varName "normalizedFacilityName"^^xsd:string . 788 + sp:varName "facilityParent1Name"^^xsd:string .
789 789
790 -_:b58 790 +_:b15
791 - sp:varName "facilityType"^^xsd:string . 791 + sp:varName "facilityParent1Ref"^^xsd:string .
792 792
793 -_:b59 793 +_:b14
794 - sp:varName "facilityRef"^^xsd:string . 794 + sp:varName "facilityKind"^^xsd:string .
795 795
796 -_:b60 796 +_:b13
797 - sp:varName "fluidSampleRef"^^xsd:string . 797 + sp:varName "facilityChildName"^^xsd:string .
798 798
799 -_:b61 799 +_:b12
800 sp:varName "facilityNameRef"^^xsd:string . 800 sp:varName "facilityNameRef"^^xsd:string .
801 801
802 -_:b62 802 +_:b11
803 - sp:varName "facilityChildName"^^xsd:string . 803 + sp:varName "fluidSampleRef"^^xsd:string .
804 -
805 -_:b63
806 - sp:varName "facilityKind"^^xsd:string .
807 804
808 -_:b64 805 +_:b10
809 - sp:varName "facilityParent1Ref"^^xsd:string . 806 + sp:varName "facilityRef"^^xsd:string .
810 807
811 -_:b65 808 +_:b9 sp:varName "facilityType"^^xsd:string .
812 - sp:varName "facilityParent1Name"^^xsd:string .
813 809
814 -_:b66 810 +_:b8 sp:varName "normalizedFacilityName"^^xsd:string .
815 - sp:varName "normalizedFacilityChildName"^^xsd:string .
816 811
817 -_:b67 812 +_:b7 sp:varName "facility"^^xsd:string .
818 - sp:varName "normalizedFacilityParent1Name"^^xsd:string .
819 813
820 -_:b46 814 +_:b6 sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
821 - sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
822 815
823 -_:b47 816 +_:b27
824 - sp:varName "facility"^^xsd:string . 817 + sp:varName "facilityAlias"^^xsd:string .
825 818
826 -_:b48 819 +_:b26
827 - sp:varName "normalizedFacilityAlias"^^xsd:string . 820 + sp:varName "facilityAliasRef"^^xsd:string .
828 821
829 -_:b49 822 +_:b25
830 - sp:varName "facilityRef"^^xsd:string . 823 + sp:varName "facilityNameRef"^^xsd:string .
831 824
832 -_:b50 825 +_:b24
833 sp:varName "fluidSampleRef"^^xsd:string . 826 sp:varName "fluidSampleRef"^^xsd:string .
834 827
835 -_:b51 828 +_:b23
836 - sp:varName "facilityNameRef"^^xsd:string . 829 + sp:varName "facilityRef"^^xsd:string .
837 -
838 -_:b52
839 - sp:varName "facilityAliasRef"^^xsd:string .
840 830
841 -_:b53 831 +_:b22
842 - sp:varName "facilityAlias"^^xsd:string . 832 + sp:varName "normalizedFacilityAlias"^^xsd:string .
843 833
844 -_:b39 834 +_:b21
845 - sp:varName "nameFluidAnalysis"^^xsd:string . 835 + sp:varName "facility"^^xsd:string .
846 836
847 -_:b40 837 +_:b20
848 sp:varName "fluidSamplingAndAnalysis"^^xsd:string . 838 sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
849 839
850 -_:b41 840 +_:b33
851 - sp:varName "fluidAnalysisResultRef"^^xsd:string . 841 + sp:varName "name"^^xsd:string .
852 842
853 -_:b42 843 +_:b32
844 + sp:varName "fluidSampleRef"^^xsd:string .
845 +
846 +_:b31
854 sp:varName "sampledFluid"^^xsd:string . 847 sp:varName "sampledFluid"^^xsd:string .
855 848
856 -_:b43 849 +_:b30
857 - sp:varName "fluidSampleRef"^^xsd:string . 850 + sp:varName "fluidAnalysisResultRef"^^xsd:string .
858 851
859 -_:b44 852 +_:b29
860 - sp:varName "name"^^xsd:string . 853 + sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
861 854
862 -_:b36 855 +_:b28
863 - sp:varName "name"^^xsd:string . 856 + sp:varName "nameFluidAnalysis"^^xsd:string .
864 857
865 _:b37 858 _:b37
859 + sp:varName "fluidSampleRef"^^xsd:string .
860 +
861 +_:b36
866 sp:varName "fluidSamplingAndAnalysis"^^xsd:string . 862 sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
867 863
868 -_:b38 864 +_:b35
869 - sp:varName "fluidSampleRef"^^xsd:string . 865 + sp:varName "name"^^xsd:string .
870 866
871 -_:b29 867 +_:b44
872 - sp:varName "productionReport"^^xsd:string . 868 + sp:varName "sampleTypeRef"^^xsd:string .
873 869
874 -_:b31 870 +_:b43
875 - sp:varName "fluidSamplingType"^^xsd:string . 871 + sp:varName "fluidSampleRef"^^xsd:string .
876 872
877 -_:b32 873 +_:b42
878 sp:varName "acquisitionDate"^^xsd:string . 874 sp:varName "acquisitionDate"^^xsd:string .
879 875
880 -_:b33 876 +_:b41
881 - sp:varName "fluidSampleRef"^^xsd:string . 877 + sp:varName "fluidSamplingType"^^xsd:string .
882 878
883 -_:b34 879 +_:b39
884 - sp:varName "sampleTypeRef"^^xsd:string . 880 + sp:varName "productionReport"^^xsd:string .
885 881
886 -_:b19 882 +_:b54
887 - sp:varName "fluidSamplingAndAnalysis"^^xsd:string . 883 + sp:varName "facilityKind"^^xsd:string .
888 884
889 -_:b20 885 +_:b53
890 - sp:varName "facility"^^xsd:string . 886 + sp:varName "facilityName"^^xsd:string .
891 887
892 -_:b21 888 +_:b52
893 - sp:varName "normalizedFacilityName"^^xsd:string . 889 + sp:varName "facilityNameRef"^^xsd:string .
894 890
895 -_:b22 891 +_:b51
896 - sp:varName "facilityType"^^xsd:string . 892 + sp:varName "fluidSampleRef"^^xsd:string .
897 893
898 -_:b23 894 +_:b50
899 sp:varName "facilityRef"^^xsd:string . 895 sp:varName "facilityRef"^^xsd:string .
900 896
901 -_:b24 897 +_:b49
902 - sp:varName "fluidSampleRef"^^xsd:string . 898 + sp:varName "facilityType"^^xsd:string .
903 899
904 -_:b25 900 +_:b48
905 - sp:varName "facilityNameRef"^^xsd:string . 901 + sp:varName "normalizedFacilityName"^^xsd:string .
906 902
907 -_:b26 903 +_:b47
908 - sp:varName "facilityName"^^xsd:string . 904 + sp:varName "facility"^^xsd:string .
909 905
910 -_:b27 906 +_:b46
911 - sp:varName "facilityKind"^^xsd:string . 907 + sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
912 908
913 -_:b3 sp:varName "fluidSamplingAndAnalysis"^^xsd:string . 909 +_:b70
910 + sp:varName "normalizedFacilityParent1Name"^^xsd:string .
914 911
915 -_:b4 sp:varName "facility"^^xsd:string . 912 +_:b69
913 + sp:varName "normalizedFacilityChildName"^^xsd:string .
916 914
917 -_:b5 sp:varName "normalizedFacilityName"^^xsd:string . 915 +_:b68
916 + sp:varName "facilityParent2Name"^^xsd:string .
918 917
919 -_:b6 sp:varName "facilityType"^^xsd:string . 918 +_:b67
919 + sp:varName "facilityParent2Ref"^^xsd:string .
920 920
921 -_:b7 sp:varName "facilityRef"^^xsd:string . 921 +_:b66
922 + sp:varName "facilityParent1Name"^^xsd:string .
922 923
923 -_:b8 sp:varName "fluidSampleRef"^^xsd:string . 924 +_:b65
925 + sp:varName "facilityParent1Ref"^^xsd:string .
924 926
925 -_:b9 sp:varName "facilityNameRef"^^xsd:string . 927 +_:b64
928 + sp:varName "facilityKind"^^xsd:string .
926 929
927 -_:b10 930 +_:b63
928 sp:varName "facilityChildName"^^xsd:string . 931 sp:varName "facilityChildName"^^xsd:string .
929 932
930 -_:b11 933 +_:b62
931 - sp:varName "facilityKind"^^xsd:string . 934 + sp:varName "facilityNameRef"^^xsd:string .
932 935
933 -_:b12 936 +_:b61
934 - sp:varName "facilityParent1Ref"^^xsd:string . 937 + sp:varName "fluidSampleRef"^^xsd:string .
935 938
936 -_:b13 939 +_:b60
937 - sp:varName "facilityParent1Name"^^xsd:string . 940 + sp:varName "facilityRef"^^xsd:string .
938 941
939 -_:b14 942 +_:b59
940 - sp:varName "facilityParent2Ref"^^xsd:string . 943 + sp:varName "facilityType"^^xsd:string .
941 944
942 -_:b15 945 +_:b58
943 - sp:varName "facilityParent2Name"^^xsd:string . 946 + sp:varName "normalizedFacilityName"^^xsd:string .
944 947
945 -_:b16 948 +_:b57
946 - sp:varName "normalizedFacilityChildName"^^xsd:string . 949 + sp:varName "facility"^^xsd:string .
947 950
948 -_:b17 951 +_:b56
949 - sp:varName "normalizedFacilityParent1Name"^^xsd:string . 952 + sp:varName "fluidSamplingAndAnalysis"^^xsd:string .
......