David Leal

A very minor change to ep-core (just fixing an unresolved reference) and more work on the MPR.

...@@ -10,36 +10,36 @@ ...@@ -10,36 +10,36 @@
10 10
11 <http://www.reportinghub.no/ep/schema/1.0/core> 11 <http://www.reportinghub.no/ep/schema/1.0/core>
12 rdf:type owl:Ontology ; 12 rdf:type owl:Ontology ;
13 - owl:imports <http://www.linkedmodel.org/schema/vaem> , <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model> ; 13 + owl:imports <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model> , <http://www.linkedmodel.org/schema/vaem> ;
14 owl:versionInfo "0.1.0"^^xsd:string . 14 owl:versionInfo "0.1.0"^^xsd:string .
15 15
16 ep-core:Class_of_indirect_property 16 ep-core:Class_of_indirect_property
17 rdf:type owl:Class ; 17 rdf:type owl:Class ;
18 rdfs:label "class of indirect property"^^xsd:string ; 18 rdfs:label "class of indirect property"^^xsd:string ;
19 - rdfs:subClassOf owl:FunctionalProperty , owl:ObjectProperty . 19 + rdfs:subClassOf owl:ObjectProperty , owl:FunctionalProperty .
20 20
21 ep-core:Density 21 ep-core:Density
22 - rdf:type ep-core:PropertySpace , rdfs:Class ; 22 + rdf:type rdfs:Class , ep-core:PropertySpace ;
23 rdfs:label "density"^^xsd:string ; 23 rdfs:label "density"^^xsd:string ;
24 rdfs:subClassOf owl:Class . 24 rdfs:subClassOf owl:Class .
25 25
26 ep-core:Length 26 ep-core:Length
27 - rdf:type ep-core:PropertySpace , rdfs:Class ; 27 + rdf:type rdfs:Class , ep-core:PropertySpace ;
28 rdfs:label "length"^^xsd:string ; 28 rdfs:label "length"^^xsd:string ;
29 rdfs:subClassOf owl:Class . 29 rdfs:subClassOf owl:Class .
30 30
31 ep-core:MassPerUnitLength 31 ep-core:MassPerUnitLength
32 - rdf:type ep-core:PropertySpace , rdfs:Class ; 32 + rdf:type rdfs:Class , ep-core:PropertySpace ;
33 rdfs:label "mass per unit length"^^xsd:string ; 33 rdfs:label "mass per unit length"^^xsd:string ;
34 rdfs:subClassOf owl:Class . 34 rdfs:subClassOf owl:Class .
35 35
36 ep-core:MassPerUnitMassConcentration 36 ep-core:MassPerUnitMassConcentration
37 - rdf:type ep-core:PropertySpace , rdfs:Class ; 37 + rdf:type rdfs:Class , ep-core:PropertySpace ;
38 rdfs:label "mass per unit mass concentration"^^xsd:string ; 38 rdfs:label "mass per unit mass concentration"^^xsd:string ;
39 rdfs:subClassOf owl:Class . 39 rdfs:subClassOf owl:Class .
40 40
41 ep-core:MeasureOfAmountOfMaterial 41 ep-core:MeasureOfAmountOfMaterial
42 - rdf:type ep-core:PropertySpace , rdfs:Class ; 42 + rdf:type rdfs:Class , ep-core:PropertySpace ;
43 rdfs:label "measure of amount of material"^^xsd:string ; 43 rdfs:label "measure of amount of material"^^xsd:string ;
44 rdfs:subClassOf owl:Class . 44 rdfs:subClassOf owl:Class .
45 45
...@@ -54,17 +54,17 @@ ep-core:PhysicalThing ...@@ -54,17 +54,17 @@ ep-core:PhysicalThing
54 rdfs:subClassOf owl:Thing . 54 rdfs:subClassOf owl:Thing .
55 55
56 ep-core:PlaneAngle 56 ep-core:PlaneAngle
57 - rdf:type rdfs:Class , ep-core:PropertySpace ; 57 + rdf:type ep-core:PropertySpace , rdfs:Class ;
58 rdfs:label "plane angle"^^xsd:string ; 58 rdfs:label "plane angle"^^xsd:string ;
59 rdfs:subClassOf owl:Class . 59 rdfs:subClassOf owl:Class .
60 60
61 ep-core:PlasticViscosity 61 ep-core:PlasticViscosity
62 - rdf:type rdfs:Class , ep-core:PropertySpace ; 62 + rdf:type ep-core:PropertySpace , rdfs:Class ;
63 rdfs:label "plastic viscosity"^^xsd:string ; 63 rdfs:label "plastic viscosity"^^xsd:string ;
64 rdfs:subClassOf owl:Class . 64 rdfs:subClassOf owl:Class .
65 65
66 ep-core:Pressure 66 ep-core:Pressure
67 - rdf:type ep-core:PropertySpace , rdfs:Class ; 67 + rdf:type rdfs:Class , ep-core:PropertySpace ;
68 rdfs:label "pressure"^^xsd:string ; 68 rdfs:label "pressure"^^xsd:string ;
69 rdfs:subClassOf owl:Class . 69 rdfs:subClassOf owl:Class .
70 70
...@@ -74,87 +74,92 @@ ep-core:PropertySpace ...@@ -74,87 +74,92 @@ ep-core:PropertySpace
74 rdfs:subClassOf owl:Class . 74 rdfs:subClassOf owl:Class .
75 75
76 ep-core:Ratio 76 ep-core:Ratio
77 - rdf:type rdfs:Class , ep-core:PropertySpace ; 77 + rdf:type ep-core:PropertySpace , rdfs:Class ;
78 rdfs:label "ratio"^^xsd:string . 78 rdfs:label "ratio"^^xsd:string .
79 79
80 ep-core:Scale 80 ep-core:Scale
81 rdf:type owl:Class ; 81 rdf:type owl:Class ;
82 rdfs:label "scale"^^xsd:string ; 82 rdfs:label "scale"^^xsd:string ;
83 - rdfs:subClassOf owl:FunctionalProperty , owl:DatatypeProperty . 83 + rdfs:subClassOf owl:DatatypeProperty , owl:FunctionalProperty .
84 +
85 +ep-core:SpecificVolume
86 + rdf:type rdfs:Class , ep-core:PropertySpace ;
87 + rdfs:label "specific volume"^^xsd:string ;
88 + rdfs:subClassOf owl:Class .
84 89
85 ep-core:Speed 90 ep-core:Speed
86 - rdf:type ep-core:PropertySpace , rdfs:Class ; 91 + rdf:type rdfs:Class , ep-core:PropertySpace ;
87 rdfs:label "speed"^^xsd:string ; 92 rdfs:label "speed"^^xsd:string ;
88 rdfs:subClassOf owl:Class . 93 rdfs:subClassOf owl:Class .
89 94
90 ep-core:StrengthOfRockFormation 95 ep-core:StrengthOfRockFormation
91 - rdf:type ep-core:PropertySpace , rdfs:Class ; 96 + rdf:type rdfs:Class , ep-core:PropertySpace ;
92 rdfs:label "strength of rock formation"^^xsd:string ; 97 rdfs:label "strength of rock formation"^^xsd:string ;
93 rdfs:subClassOf owl:Class . 98 rdfs:subClassOf owl:Class .
94 99
95 ep-core:Temperature 100 ep-core:Temperature
96 - rdf:type ep-core:PropertySpace , rdfs:Class ; 101 + rdf:type rdfs:Class , ep-core:PropertySpace ;
97 rdfs:label "temperature"^^xsd:string ; 102 rdfs:label "temperature"^^xsd:string ;
98 rdfs:subClassOf owl:Class . 103 rdfs:subClassOf owl:Class .
99 104
100 ep-core:TimeDuration 105 ep-core:TimeDuration
101 - rdf:type ep-core:PropertySpace , rdfs:Class ; 106 + rdf:type rdfs:Class , ep-core:PropertySpace ;
102 rdfs:label "time duration"^^xsd:string ; 107 rdfs:label "time duration"^^xsd:string ;
103 rdfs:subClassOf owl:Class . 108 rdfs:subClassOf owl:Class .
104 109
105 ep-core:Volume 110 ep-core:Volume
106 - rdf:type ep-core:PropertySpace , rdfs:Class ; 111 + rdf:type rdfs:Class , ep-core:PropertySpace ;
107 rdfs:label "volume"^^xsd:string ; 112 rdfs:label "volume"^^xsd:string ;
108 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial . 113 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial .
109 114
110 ep-core:VolumeAt15degC1atm 115 ep-core:VolumeAt15degC1atm
111 - rdf:type ep-core:PropertySpace , rdfs:Class ; 116 + rdf:type rdfs:Class , ep-core:PropertySpace ;
112 rdfs:label "volume at 15 degrees C 1 atmosphere"^^xsd:string ; 117 rdfs:label "volume at 15 degrees C 1 atmosphere"^^xsd:string ;
113 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial . 118 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial .
114 119
115 ep-core:VolumeAt1degC1atm 120 ep-core:VolumeAt1degC1atm
116 - rdf:type ep-core:PropertySpace , rdfs:Class ; 121 + rdf:type rdfs:Class , ep-core:PropertySpace ;
117 rdfs:label "volume at 0 degrees C 1 atmosphere"^^xsd:string ; 122 rdfs:label "volume at 0 degrees C 1 atmosphere"^^xsd:string ;
118 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial . 123 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial .
119 124
120 ep-core:VolumeAt60degF1atm 125 ep-core:VolumeAt60degF1atm
121 - rdf:type ep-core:PropertySpace , rdfs:Class ; 126 + rdf:type rdfs:Class , ep-core:PropertySpace ;
122 rdfs:label "volume at 60 degrees F 1 atmosphere"^^xsd:string ; 127 rdfs:label "volume at 60 degrees F 1 atmosphere"^^xsd:string ;
123 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial . 128 rdfs:subClassOf ep-core:MeasureOfAmountOfMaterial .
124 129
125 ep-core:VolumeMassRatio 130 ep-core:VolumeMassRatio
126 - rdf:type ep-core:PropertySpace , rdfs:Class ; 131 + rdf:type rdfs:Class , ep-core:PropertySpace ;
127 rdfs:label "volume mass ratio"^^xsd:string ; 132 rdfs:label "volume mass ratio"^^xsd:string ;
128 rdfs:subClassOf owl:Class . 133 rdfs:subClassOf owl:Class .
129 134
130 ep-core:VolumePerUnitVolumeConcentration 135 ep-core:VolumePerUnitVolumeConcentration
131 - rdf:type ep-core:PropertySpace , rdfs:Class ; 136 + rdf:type rdfs:Class , ep-core:PropertySpace ;
132 rdfs:label "volume per unit volume concentration"^^xsd:string ; 137 rdfs:label "volume per unit volume concentration"^^xsd:string ;
133 rdfs:subClassOf owl:Class . 138 rdfs:subClassOf owl:Class .
134 139
135 ep-core:VolumetricFlowRate 140 ep-core:VolumetricFlowRate
136 - rdf:type ep-core:PropertySpace , rdfs:Class ; 141 + rdf:type rdfs:Class , ep-core:PropertySpace ;
137 rdfs:label "volumetric flow rate"^^xsd:string ; 142 rdfs:label "volumetric flow rate"^^xsd:string ;
138 rdfs:subClassOf owl:Class . 143 rdfs:subClassOf owl:Class .
139 144
140 ep-core:YieldPoint 145 ep-core:YieldPoint
141 - rdf:type rdfs:Class , ep-core:PropertySpace ; 146 + rdf:type ep-core:PropertySpace , rdfs:Class ;
142 rdfs:label "yield point"^^xsd:string ; 147 rdfs:label "yield point"^^xsd:string ;
143 rdfs:subClassOf owl:Class . 148 rdfs:subClassOf owl:Class .
144 149
145 ep-core:apiName 150 ep-core:apiName
146 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 151 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
147 rdfs:label "API name"^^xsd:string ; 152 rdfs:label "API name"^^xsd:string ;
148 rdfs:range xsd:string ; 153 rdfs:range xsd:string ;
149 rdfs:subPropertyOf ep-core:name . 154 rdfs:subPropertyOf ep-core:name .
150 155
151 ep-core:bar 156 ep-core:bar
152 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 157 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
153 rdfs:domain ep-core:Pressure ; 158 rdfs:domain ep-core:Pressure ;
154 rdfs:label "bar"^^xsd:string . 159 rdfs:label "bar"^^xsd:string .
155 160
156 ep-core:barrel 161 ep-core:barrel
157 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 162 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
158 rdfs:label "barrel"^^xsd:string . 163 rdfs:label "barrel"^^xsd:string .
159 164
160 ep-core:basisFor 165 ep-core:basisFor
...@@ -162,71 +167,71 @@ ep-core:basisFor ...@@ -162,71 +167,71 @@ ep-core:basisFor
162 rdfs:label "basis for"^^xsd:string . 167 rdfs:label "basis for"^^xsd:string .
163 168
164 ep-core:celsius 169 ep-core:celsius
165 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 170 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
166 rdfs:domain ep-core:Temperature ; 171 rdfs:domain ep-core:Temperature ;
167 rdfs:label "celsius"^^xsd:string . 172 rdfs:label "celsius"^^xsd:string .
168 173
169 ep-core:centiPoise 174 ep-core:centiPoise
170 - rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ; 175 + rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ;
171 rdfs:domain ep-core:PlasticViscosity ; 176 rdfs:domain ep-core:PlasticViscosity ;
172 rdfs:label "cP"^^xsd:string . 177 rdfs:label "cP"^^xsd:string .
173 178
174 ep-core:day 179 ep-core:day
175 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 180 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
176 rdfs:domain ep-core:TimeDuration ; 181 rdfs:domain ep-core:TimeDuration ;
177 rdfs:label "day"^^xsd:string . 182 rdfs:label "day"^^xsd:string .
178 183
179 ep-core:decimetre3 184 ep-core:decimetre3
180 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; 185 + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ;
181 rdfs:domain ep-core:Volume ; 186 rdfs:domain ep-core:Volume ;
182 rdfs:label "decimetre 3"^^xsd:string . 187 rdfs:label "decimetre 3"^^xsd:string .
183 188
184 ep-core:degreesOfAngle 189 ep-core:degreesOfAngle
185 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 190 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
186 rdfs:domain ep-core:PlaneAngle ; 191 rdfs:domain ep-core:PlaneAngle ;
187 rdfs:label "degrees of angle"^^xsd:string . 192 rdfs:label "degrees of angle"^^xsd:string .
188 193
189 ep-core:derivedFrom 194 ep-core:derivedFrom
190 - rdf:type owl:TransitiveProperty , owl:ObjectProperty ; 195 + rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
191 rdfs:label "derived from"^^xsd:string . 196 rdfs:label "derived from"^^xsd:string .
192 197
193 ep-core:dtiName 198 ep-core:dtiName
194 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; 199 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
195 rdfs:label "DTI name"^^xsd:string ; 200 rdfs:label "DTI name"^^xsd:string ;
196 rdfs:range xsd:string ; 201 rdfs:range xsd:string ;
197 rdfs:subPropertyOf ep-core:name . 202 rdfs:subPropertyOf ep-core:name .
198 203
199 ep-core:dyne_second_metre-2 204 ep-core:dyne_second_metre-2
200 - rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ; 205 + rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ;
201 rdfs:domain ep-core:PlasticViscosity ; 206 rdfs:domain ep-core:PlasticViscosity ;
202 rdfs:label "dyne.s.m-2"^^xsd:string . 207 rdfs:label "dyne.s.m-2"^^xsd:string .
203 208
204 ep-core:foot 209 ep-core:foot
205 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 210 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
206 rdfs:domain ep-core:Length ; 211 rdfs:domain ep-core:Length ;
207 rdfs:label "foot"^^xsd:string . 212 rdfs:label "foot"^^xsd:string .
208 213
209 ep-core:foot3 214 ep-core:foot3
210 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 215 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
211 rdfs:label "foot3"^^xsd:string . 216 rdfs:label "foot3"^^xsd:string .
212 217
213 ep-core:foot3_sack94-1 218 ep-core:foot3_sack94-1
214 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 219 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
215 rdfs:domain ep-core:YieldPoint ; 220 rdfs:domain ep-core:YieldPoint ;
216 rdfs:label "foot3 sack94-1"^^xsd:string . 221 rdfs:label "foot3 sack94-1"^^xsd:string .
217 222
218 ep-core:footUS 223 ep-core:footUS
219 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 224 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
220 rdfs:domain ep-core:Length ; 225 rdfs:domain ep-core:Length ;
221 rdfs:label "foot (US survey)"^^xsd:string . 226 rdfs:label "foot (US survey)"^^xsd:string .
222 227
223 ep-core:fractionByVolume 228 ep-core:fractionByVolume
224 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; 229 + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ;
225 rdfs:domain ep-core:VolumePerUnitVolumeConcentration ; 230 rdfs:domain ep-core:VolumePerUnitVolumeConcentration ;
226 rdfs:label "fraction by volume"^^xsd:string . 231 rdfs:label "fraction by volume"^^xsd:string .
227 232
228 ep-core:gram_cm-3 233 ep-core:gram_cm-3
229 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 234 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
230 rdfs:label "gram cm-3"^^xsd:string . 235 rdfs:label "gram cm-3"^^xsd:string .
231 236
232 ep-core:hasPart 237 ep-core:hasPart
...@@ -258,7 +263,7 @@ ep-core:hasVolume ...@@ -258,7 +263,7 @@ ep-core:hasVolume
258 rdfs:label "has volume"^^xsd:string . 263 rdfs:label "has volume"^^xsd:string .
259 264
260 ep-core:hour 265 ep-core:hour
261 - rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ; 266 + rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ;
262 rdfs:domain ep-core:TimeDuration ; 267 rdfs:domain ep-core:TimeDuration ;
263 rdfs:label "hour"^^xsd:string . 268 rdfs:label "hour"^^xsd:string .
264 269
...@@ -269,84 +274,84 @@ ep-core:humanRecognizableName ...@@ -269,84 +274,84 @@ ep-core:humanRecognizableName
269 rdfs:subPropertyOf ep-core:name . 274 rdfs:subPropertyOf ep-core:name .
270 275
271 ep-core:inch 276 ep-core:inch
272 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 277 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
273 rdfs:domain ep-core:Length ; 278 rdfs:domain ep-core:Length ;
274 rdfs:label "inch"^^xsd:string . 279 rdfs:label "inch"^^xsd:string .
275 280
276 ep-core:inchUS 281 ep-core:inchUS
277 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 282 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
278 rdfs:domain ep-core:Length ; 283 rdfs:domain ep-core:Length ;
279 rdfs:label "inch (US survey)"^^xsd:string . 284 rdfs:label "inch (US survey)"^^xsd:string .
280 285
281 ep-core:kilogramforce_second_metre-2 286 ep-core:kilogramforce_second_metre-2
282 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 287 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
283 rdfs:domain ep-core:PlasticViscosity ; 288 rdfs:domain ep-core:PlasticViscosity ;
284 rdfs:label "kgf.s.m-2"^^xsd:string . 289 rdfs:label "kgf.s.m-2"^^xsd:string .
285 290
286 ep-core:localFieldName 291 ep-core:localFieldName
287 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 292 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
288 rdfs:label "local field name"^^xsd:string ; 293 rdfs:label "local field name"^^xsd:string ;
289 rdfs:range xsd:string ; 294 rdfs:range xsd:string ;
290 rdfs:subPropertyOf ep-core:name . 295 rdfs:subPropertyOf ep-core:name .
291 296
292 ep-core:megaPa 297 ep-core:megaPa
293 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 298 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
294 rdfs:domain ep-core:Pressure ; 299 rdfs:domain ep-core:Pressure ;
295 rdfs:label "MPa"^^xsd:string . 300 rdfs:label "MPa"^^xsd:string .
296 301
297 ep-core:megaPa_second 302 ep-core:megaPa_second
298 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 303 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
299 rdfs:domain ep-core:PlasticViscosity ; 304 rdfs:domain ep-core:PlasticViscosity ;
300 rdfs:label "MPa.second"^^xsd:string . 305 rdfs:label "MPa.second"^^xsd:string .
301 306
302 ep-core:metre 307 ep-core:metre
303 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 308 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
304 rdfs:domain ep-core:Length ; 309 rdfs:domain ep-core:Length ;
305 rdfs:label "metre"^^xsd:string . 310 rdfs:label "metre"^^xsd:string .
306 311
307 ep-core:metre3 312 ep-core:metre3
308 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 313 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
309 rdfs:label "metre3"^^xsd:string . 314 rdfs:label "metre3"^^xsd:string .
310 315
311 ep-core:metre3_day-1 316 ep-core:metre3_day-1
312 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; 317 + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ;
313 rdfs:domain ep-core:VolumetricFlowRate ; 318 rdfs:domain ep-core:VolumetricFlowRate ;
314 rdfs:label "metre3 day-1"^^xsd:string . 319 rdfs:label "metre3 day-1"^^xsd:string .
315 320
316 ep-core:metre3_minute-1 321 ep-core:metre3_minute-1
317 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; 322 + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ;
318 rdfs:domain ep-core:VolumetricFlowRate ; 323 rdfs:domain ep-core:VolumetricFlowRate ;
319 rdfs:label "metre3 minute-1"^^xsd:string . 324 rdfs:label "metre3 minute-1"^^xsd:string .
320 325
321 ep-core:metre_hour-1 326 ep-core:metre_hour-1
322 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 327 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
323 rdfs:domain ep-core:Speed ; 328 rdfs:domain ep-core:Speed ;
324 rdfs:label "metre hour-1"^^xsd:string . 329 rdfs:label "metre hour-1"^^xsd:string .
325 330
326 ep-core:millimetre 331 ep-core:millimetre
327 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 332 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
328 rdfs:domain ep-core:Length ; 333 rdfs:domain ep-core:Length ;
329 rdfs:label "millimetre"^^xsd:string . 334 rdfs:label "millimetre"^^xsd:string .
330 335
331 ep-core:million_barrel 336 ep-core:million_barrel
332 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 337 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
333 rdfs:label "million barrel"^^xsd:string . 338 rdfs:label "million barrel"^^xsd:string .
334 339
335 ep-core:million_foot3 340 ep-core:million_foot3
336 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 341 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
337 rdfs:label "million foot3"^^xsd:string . 342 rdfs:label "million foot3"^^xsd:string .
338 343
339 ep-core:million_metre3 344 ep-core:million_metre3
340 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 345 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
341 rdfs:label "million metre3"^^xsd:string . 346 rdfs:label "million metre3"^^xsd:string .
342 347
343 ep-core:million_metre3_day-1 348 ep-core:million_metre3_day-1
344 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ; 349 + rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ;
345 rdfs:domain ep-core:VolumetricFlowRate ; 350 rdfs:domain ep-core:VolumetricFlowRate ;
346 rdfs:label "million metre3 day-1"^^xsd:string . 351 rdfs:label "million metre3 day-1"^^xsd:string .
347 352
348 ep-core:minute 353 ep-core:minute
349 - rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ; 354 + rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ;
350 rdfs:domain ep-core:TimeDuration ; 355 rdfs:domain ep-core:TimeDuration ;
351 rdfs:label "minute"^^xsd:string . 356 rdfs:label "minute"^^xsd:string .
352 357
...@@ -356,31 +361,31 @@ ep-core:name ...@@ -356,31 +361,31 @@ ep-core:name
356 rdfs:range xsd:string . 361 rdfs:range xsd:string .
357 362
358 ep-core:newton_second_metre-2 363 ep-core:newton_second_metre-2
359 - rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ; 364 + rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ;
360 rdfs:domain ep-core:PlasticViscosity ; 365 rdfs:domain ep-core:PlasticViscosity ;
361 rdfs:label "N.s.m-2"^^xsd:string . 366 rdfs:label "N.s.m-2"^^xsd:string .
362 367
363 ep-core:nominallyExistsAt 368 ep-core:nominallyExistsAt
364 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 369 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
365 rdfs:domain ep-core:PhysicalThing ; 370 rdfs:domain ep-core:PhysicalThing ;
366 rdfs:label "nominally exists at"^^xsd:string ; 371 rdfs:label "nominally exists at"^^xsd:string ;
367 rdfs:range xsd:string ; 372 rdfs:range xsd:string ;
368 rdfs:subPropertyOf ep-core:name . 373 rdfs:subPropertyOf ep-core:name .
369 374
370 ep-core:npdCode 375 ep-core:npdCode
371 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 376 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
372 rdfs:label "NPD code"^^xsd:string ; 377 rdfs:label "NPD code"^^xsd:string ;
373 rdfs:range xsd:string ; 378 rdfs:range xsd:string ;
374 rdfs:subPropertyOf ep-core:name . 379 rdfs:subPropertyOf ep-core:name .
375 380
376 ep-core:npdName 381 ep-core:npdName
377 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 382 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
378 rdfs:label "NPD name"^^xsd:string ; 383 rdfs:label "NPD name"^^xsd:string ;
379 rdfs:range xsd:string ; 384 rdfs:range xsd:string ;
380 rdfs:subPropertyOf ep-core:name . 385 rdfs:subPropertyOf ep-core:name .
381 386
382 ep-core:npdNumber 387 ep-core:npdNumber
383 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty ; 388 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty ;
384 rdfs:label "NPD number"^^xsd:string ; 389 rdfs:label "NPD number"^^xsd:string ;
385 rdfs:range xsd:string ; 390 rdfs:range xsd:string ;
386 rdfs:subPropertyOf ep-core:name . 391 rdfs:subPropertyOf ep-core:name .
...@@ -393,68 +398,68 @@ ep-core:partOf ...@@ -393,68 +398,68 @@ ep-core:partOf
393 owl:inverseOf ep-core:hasPart . 398 owl:inverseOf ep-core:hasPart .
394 399
395 ep-core:partPerMillionByMass 400 ep-core:partPerMillionByMass
396 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 401 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
397 rdfs:domain ep-core:MassPerUnitMassConcentration ; 402 rdfs:domain ep-core:MassPerUnitMassConcentration ;
398 rdfs:label "part per million (by mass)"^^xsd:string . 403 rdfs:label "part per million (by mass)"^^xsd:string .
399 404
400 ep-core:partPerMillionByVolume 405 ep-core:partPerMillionByVolume
401 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; 406 + rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ;
402 rdfs:domain ep-core:VolumePerUnitVolumeConcentration ; 407 rdfs:domain ep-core:VolumePerUnitVolumeConcentration ;
403 rdfs:label "part per million (by volume)"^^xsd:string . 408 rdfs:label "part per million (by volume)"^^xsd:string .
404 409
405 ep-core:pascal 410 ep-core:pascal
406 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 411 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
407 rdfs:domain ep-core:Pressure ; 412 rdfs:domain ep-core:Pressure ;
408 rdfs:label "Pascal"^^xsd:string . 413 rdfs:label "Pascal"^^xsd:string .
409 414
410 ep-core:pascal_second 415 ep-core:pascal_second
411 - rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ; 416 + rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ;
412 rdfs:domain ep-core:PlasticViscosity ; 417 rdfs:domain ep-core:PlasticViscosity ;
413 rdfs:label "Pa.second"^^xsd:string . 418 rdfs:label "Pa.second"^^xsd:string .
414 419
415 ep-core:perCentByVolume 420 ep-core:perCentByVolume
416 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 421 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
417 rdfs:domain ep-core:VolumePerUnitVolumeConcentration ; 422 rdfs:domain ep-core:VolumePerUnitVolumeConcentration ;
418 rdfs:label "per cent by volume"^^xsd:string . 423 rdfs:label "per cent by volume"^^xsd:string .
419 424
420 ep-core:poise 425 ep-core:poise
421 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 426 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
422 rdfs:domain ep-core:PlasticViscosity ; 427 rdfs:domain ep-core:PlasticViscosity ;
423 rdfs:label "P"^^xsd:string . 428 rdfs:label "P"^^xsd:string .
424 429
425 ep-core:pound_foot-1 430 ep-core:pound_foot-1
426 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 431 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
427 rdfs:domain ep-core:MassPerUnitLength ; 432 rdfs:domain ep-core:MassPerUnitLength ;
428 rdfs:label "pound foot-1"^^xsd:string . 433 rdfs:label "pound foot-1"^^xsd:string .
429 434
430 ep-core:poundforce_second_foot-2 435 ep-core:poundforce_second_foot-2
431 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 436 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
432 rdfs:domain ep-core:PlasticViscosity ; 437 rdfs:domain ep-core:PlasticViscosity ;
433 rdfs:label "lbf.s.ft-2"^^xsd:string . 438 rdfs:label "lbf.s.ft-2"^^xsd:string .
434 439
435 ep-core:poundforce_second_inch-2 440 ep-core:poundforce_second_inch-2
436 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 441 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
437 rdfs:domain ep-core:PlasticViscosity ; 442 rdfs:domain ep-core:PlasticViscosity ;
438 rdfs:label "lbf.s.in-2"^^xsd:string . 443 rdfs:label "lbf.s.in-2"^^xsd:string .
439 444
440 ep-core:prospectName 445 ep-core:prospectName
441 - rdf:type owl:FunctionalProperty , owl:DatatypeProperty ; 446 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
442 rdfs:label "prospect name"^^xsd:string ; 447 rdfs:label "prospect name"^^xsd:string ;
443 rdfs:range xsd:string ; 448 rdfs:range xsd:string ;
444 rdfs:subPropertyOf ep-core:name . 449 rdfs:subPropertyOf ep-core:name .
445 450
446 ep-core:psi_second 451 ep-core:psi_second
447 - rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ; 452 + rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ;
448 rdfs:domain ep-core:PlasticViscosity ; 453 rdfs:domain ep-core:PlasticViscosity ;
449 rdfs:label "psi.s"^^xsd:string . 454 rdfs:label "psi.s"^^xsd:string .
450 455
451 ep-core:psig 456 ep-core:psig
452 - rdf:type ep-core:Scale , owl:DatatypeProperty , owl:FunctionalProperty ; 457 + rdf:type owl:FunctionalProperty , owl:DatatypeProperty , ep-core:Scale ;
453 rdfs:domain ep-core:Pressure ; 458 rdfs:domain ep-core:Pressure ;
454 rdfs:label "psi gauge"^^xsd:string . 459 rdfs:label "psi gauge"^^xsd:string .
455 460
456 ep-core:second 461 ep-core:second
457 - rdf:type owl:DatatypeProperty , ep-core:Scale , owl:FunctionalProperty ; 462 + rdf:type owl:FunctionalProperty , ep-core:Scale , owl:DatatypeProperty ;
458 rdfs:domain ep-core:TimeDuration ; 463 rdfs:domain ep-core:TimeDuration ;
459 rdfs:label "second"^^xsd:string . 464 rdfs:label "second"^^xsd:string .
460 465
...@@ -467,7 +472,7 @@ ep-core:spatialPartOf ...@@ -467,7 +472,7 @@ ep-core:spatialPartOf
467 owl:inverseOf ep-core:hasSpatialPart . 472 owl:inverseOf ep-core:hasSpatialPart .
468 473
469 ep-core:specificGravity 474 ep-core:specificGravity
470 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 475 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
471 rdfs:label "specific gravity"^^xsd:string . 476 rdfs:label "specific gravity"^^xsd:string .
472 477
473 ep-core:temporalPartOf 478 ep-core:temporalPartOf
...@@ -479,16 +484,16 @@ ep-core:temporalPartOf ...@@ -479,16 +484,16 @@ ep-core:temporalPartOf
479 owl:inverseOf ep-core:hasTemporalPart . 484 owl:inverseOf ep-core:hasTemporalPart .
480 485
481 ep-core:undefinedScale 486 ep-core:undefinedScale
482 - rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ; 487 + rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ;
483 rdfs:domain owl:Class ; 488 rdfs:domain owl:Class ;
484 rdfs:label "undefined scale"^^xsd:string . 489 rdfs:label "undefined scale"^^xsd:string .
485 490
486 ep-core:usGallon_sack94-1 491 ep-core:usGallon_sack94-1
487 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 492 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
488 rdfs:domain ep-core:VolumeMassRatio ; 493 rdfs:domain ep-core:VolumeMassRatio ;
489 rdfs:label "USgallon sack94-1"^^xsd:string . 494 rdfs:label "USgallon sack94-1"^^xsd:string .
490 495
491 ep-core:week 496 ep-core:week
492 - rdf:type ep-core:Scale , owl:FunctionalProperty , owl:DatatypeProperty ; 497 + rdf:type owl:DatatypeProperty , owl:FunctionalProperty , ep-core:Scale ;
493 rdfs:domain ep-core:TimeDuration ; 498 rdfs:domain ep-core:TimeDuration ;
494 rdfs:label "week"^^xsd:string . 499 rdfs:label "week"^^xsd:string .
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
9 @prefix ep-prodact: <http://www.reportinghub.no/ep/schema/production-activity#> . 9 @prefix ep-prodact: <http://www.reportinghub.no/ep/schema/production-activity#> .
10 @prefix ep-prodcore: <http://www.reportinghub.no/ep/schema/production-core#> . 10 @prefix ep-prodcore: <http://www.reportinghub.no/ep/schema/production-core#> .
11 @prefix ep-prodwell: <http://www.reportinghub.no/ep/schema/production-well#> . 11 @prefix ep-prodwell: <http://www.reportinghub.no/ep/schema/production-well#> .
12 +@prefix ep-well: <http://www.reportinghub.no/ep/schema/well#> .
12 @prefix owl: <http://www.w3.org/2002/07/owl#> . 13 @prefix owl: <http://www.w3.org/2002/07/owl#> .
13 @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#> .
14 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 15 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
...@@ -621,7 +622,7 @@ ep-flow:Overboard ...@@ -621,7 +622,7 @@ ep-flow:Overboard
621 rdfs:subClassOf ep-flow:WholeLifeFlow . 622 rdfs:subClassOf ep-flow:WholeLifeFlow .
622 623
623 ep-flow:Pentane 624 ep-flow:Pentane
624 - rdf:type owl:Class , ep-prodwell:FluidComponentType , ep-prodact:SubstanceType ; 625 + rdf:type owl:Class , ep-well:FluidComponentType , ep-prodact:SubstanceType ;
625 rdfs:label "pentane"^^xsd:string ; 626 rdfs:label "pentane"^^xsd:string ;
626 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 627 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
627 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_pentane> . 628 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_pentane> .
...@@ -781,6 +782,11 @@ ep-flow:ProductionInventoryTargetMaterial ...@@ -781,6 +782,11 @@ ep-flow:ProductionInventoryTargetMaterial
781 rdfs:label "production inventory target material"^^xsd:string ; 782 rdfs:label "production inventory target material"^^xsd:string ;
782 rdfs:subClassOf ep-flow:ProductionInventory . 783 rdfs:subClassOf ep-flow:ProductionInventory .
783 784
785 +ep-flow:ProductionInventoryToDate
786 + rdf:type owl:Class ;
787 + rdfs:label "production inventory to date"^^xsd:string ;
788 + rdfs:subClassOf ep-flow:ProductionInventory .
789 +
784 ep-flow:ProductionTestFlowLineFlow 790 ep-flow:ProductionTestFlowLineFlow
785 rdf:type owl:Class ; 791 rdf:type owl:Class ;
786 rdfs:label "production test flow line flow"^^xsd:string ; 792 rdfs:label "production test flow line flow"^^xsd:string ;
...@@ -802,7 +808,7 @@ ep-flow:ProductionTestWellHeadFlow ...@@ -802,7 +808,7 @@ ep-flow:ProductionTestWellHeadFlow
802 rdfs:subClassOf ep-flow:WholeLifeFlow . 808 rdfs:subClassOf ep-flow:WholeLifeFlow .
803 809
804 ep-flow:Propane 810 ep-flow:Propane
805 - rdf:type owl:Class , ep-flow:ProductMaterialType , ep-prodwell:FluidComponentType , ep-prodact:SubstanceType ; 811 + rdf:type owl:Class , ep-flow:ProductMaterialType , ep-well:FluidComponentType , ep-prodact:SubstanceType ;
806 rdfs:label "propane"^^xsd:string ; 812 rdfs:label "propane"^^xsd:string ;
807 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 813 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
808 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_propane> . 814 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_propane> .
...@@ -924,6 +930,12 @@ ep-flow:dailyAverageAmountOfMaterial ...@@ -924,6 +930,12 @@ ep-flow:dailyAverageAmountOfMaterial
924 rdfs:label "daily average amount of material"^^xsd:string ; 930 rdfs:label "daily average amount of material"^^xsd:string ;
925 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion . 931 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion .
926 932
933 +ep-flow:energyContent
934 + rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
935 + rdfs:domain ep-flow:QuantityOfMaterial ;
936 + rdfs:label "energy content"^^xsd:string ;
937 + rdfs:range ep-core:Work .
938 +
927 ep-flow:facilityContainsFlow 939 ep-flow:facilityContainsFlow
928 rdf:type owl:ObjectProperty ; 940 rdf:type owl:ObjectProperty ;
929 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ; 941 rdfs:domain <http://www.reportinghub.no/ep/schema/facility#Facility> ;
...@@ -954,7 +966,7 @@ ep-flow:grossCalorificValue ...@@ -954,7 +966,7 @@ ep-flow:grossCalorificValue
954 rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ; 966 rdf:type owl:ObjectProperty , owl:FunctionalProperty , ep-core:Class_of_indirect_property ;
955 rdfs:domain ep-flow:QuantityOfMaterial ; 967 rdfs:domain ep-flow:QuantityOfMaterial ;
956 rdfs:label "gross calorific value"^^xsd:string ; 968 rdfs:label "gross calorific value"^^xsd:string ;
957 - rdfs:range ep-core:Work . 969 + rdfs:range ep-core:EnergyPerVolume .
958 970
959 ep-flow:hasMixedPart 971 ep-flow:hasMixedPart
960 rdf:type owl:ObjectProperty ; 972 rdf:type owl:ObjectProperty ;
...@@ -988,541 +1000,541 @@ ep-flow:rateOfFlowOfMaterial ...@@ -988,541 +1000,541 @@ ep-flow:rateOfFlowOfMaterial
988 rdfs:range ep-core:MeasureOfAmountOfMaterial . 1000 rdfs:range ep-core:MeasureOfAmountOfMaterial .
989 1001
990 ep-flow:substance-11dmcyPentane 1002 ep-flow:substance-11dmcyPentane
991 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1003 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
992 rdfs:label "11dmcy pentane"^^xsd:string ; 1004 rdfs:label "11dmcy pentane"^^xsd:string ;
993 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1005 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
994 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_11dmcypentane> . 1006 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_11dmcypentane> .
995 1007
996 ep-flow:substance-124tmBenzene 1008 ep-flow:substance-124tmBenzene
997 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1009 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
998 rdfs:label "124tm benzene"^^xsd:string ; 1010 rdfs:label "124tm benzene"^^xsd:string ;
999 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1011 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1000 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_124tmbenzene> . 1012 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_124tmbenzene> .
1001 1013
1002 ep-flow:substance-12dmBenzene 1014 ep-flow:substance-12dmBenzene
1003 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1015 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1004 rdfs:label "12dm benzene"^^xsd:string ; 1016 rdfs:label "12dm benzene"^^xsd:string ;
1005 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1017 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1006 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_12dmbenzene> . 1018 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_12dmbenzene> .
1007 1019
1008 ep-flow:substance-13dmBenzene 1020 ep-flow:substance-13dmBenzene
1009 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1021 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1010 rdfs:label "13dm benzene"^^xsd:string ; 1022 rdfs:label "13dm benzene"^^xsd:string ;
1011 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1023 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1012 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_13dmbenzene> . 1024 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_13dmbenzene> .
1013 1025
1014 ep-flow:substance-14dmBenzene 1026 ep-flow:substance-14dmBenzene
1015 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1027 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1016 rdfs:label "14dm benzene"^^xsd:string ; 1028 rdfs:label "14dm benzene"^^xsd:string ;
1017 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1029 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1018 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_14dmbenzene> . 1030 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_14dmbenzene> .
1019 1031
1020 ep-flow:substance-223tmButane 1032 ep-flow:substance-223tmButane
1021 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1033 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1022 rdfs:label "223tm butane"^^xsd:string ; 1034 rdfs:label "223tm butane"^^xsd:string ;
1023 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1035 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1024 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmbutane> . 1036 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmbutane> .
1025 1037
1026 ep-flow:substance-223tmPentane 1038 ep-flow:substance-223tmPentane
1027 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1039 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1028 rdfs:label "223tm pentane"^^xsd:string ; 1040 rdfs:label "223tm pentane"^^xsd:string ;
1029 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1041 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1030 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmpentane> . 1042 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_223tmpentane> .
1031 1043
1032 ep-flow:substance-22dmButane 1044 ep-flow:substance-22dmButane
1033 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1045 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1034 rdfs:label "22dm butane"^^xsd:string ; 1046 rdfs:label "22dm butane"^^xsd:string ;
1035 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1047 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1036 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmbutane> . 1048 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmbutane> .
1037 1049
1038 ep-flow:substance-22dmHexane 1050 ep-flow:substance-22dmHexane
1039 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1051 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1040 rdfs:label "22dm hexane"^^xsd:string ; 1052 rdfs:label "22dm hexane"^^xsd:string ;
1041 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1053 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1042 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmhexane> . 1054 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmhexane> .
1043 1055
1044 ep-flow:substance-22dmPentane 1056 ep-flow:substance-22dmPentane
1045 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1057 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1046 rdfs:label "22dm pentane"^^xsd:string ; 1058 rdfs:label "22dm pentane"^^xsd:string ;
1047 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1059 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1048 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpentane> . 1060 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpentane> .
1049 1061
1050 ep-flow:substance-22dmPropane 1062 ep-flow:substance-22dmPropane
1051 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1063 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1052 rdfs:label "22dm propane"^^xsd:string ; 1064 rdfs:label "22dm propane"^^xsd:string ;
1053 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1065 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1054 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpropane> . 1066 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_22dmpropane> .
1055 1067
1056 ep-flow:substance-23dmButane 1068 ep-flow:substance-23dmButane
1057 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1069 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1058 rdfs:label "23dm butane"^^xsd:string ; 1070 rdfs:label "23dm butane"^^xsd:string ;
1059 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1071 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1060 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmbutane> . 1072 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmbutane> .
1061 1073
1062 ep-flow:substance-23dmPentane 1074 ep-flow:substance-23dmPentane
1063 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1075 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1064 rdfs:label "23dm pentane"^^xsd:string ; 1076 rdfs:label "23dm pentane"^^xsd:string ;
1065 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1077 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1066 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmpentane> . 1078 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_23dmpentane> .
1067 1079
1068 ep-flow:substance-24dmHexane 1080 ep-flow:substance-24dmHexane
1069 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1081 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1070 rdfs:label "24dm hexane"^^xsd:string ; 1082 rdfs:label "24dm hexane"^^xsd:string ;
1071 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1083 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1072 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmhexane> . 1084 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmhexane> .
1073 1085
1074 ep-flow:substance-24dmPentane 1086 ep-flow:substance-24dmPentane
1075 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1087 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1076 rdfs:label "24dm pentane"^^xsd:string ; 1088 rdfs:label "24dm pentane"^^xsd:string ;
1077 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1089 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1078 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmpentane> . 1090 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_24dmpentane> .
1079 1091
1080 ep-flow:substance-25dmHexane 1092 ep-flow:substance-25dmHexane
1081 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1093 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1082 rdfs:label "25dm hexane"^^xsd:string ; 1094 rdfs:label "25dm hexane"^^xsd:string ;
1083 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1095 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1084 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_25dmhexane> . 1096 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_25dmhexane> .
1085 1097
1086 ep-flow:substance-2mButane 1098 ep-flow:substance-2mButane
1087 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1099 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1088 rdfs:label "2m butane"^^xsd:string ; 1100 rdfs:label "2m butane"^^xsd:string ;
1089 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1101 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1090 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mbutane> . 1102 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mbutane> .
1091 1103
1092 ep-flow:substance-2mHexane 1104 ep-flow:substance-2mHexane
1093 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1105 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1094 rdfs:label "2m hexane"^^xsd:string ; 1106 rdfs:label "2m hexane"^^xsd:string ;
1095 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1107 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1096 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mhexane> . 1108 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mhexane> .
1097 1109
1098 ep-flow:substance-2mPentane 1110 ep-flow:substance-2mPentane
1099 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1111 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1100 rdfs:label "2m pentane"^^xsd:string ; 1112 rdfs:label "2m pentane"^^xsd:string ;
1101 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1113 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1102 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpentane> . 1114 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpentane> .
1103 1115
1104 ep-flow:substance-2mPropane 1116 ep-flow:substance-2mPropane
1105 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1117 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1106 rdfs:label "2m propane"^^xsd:string ; 1118 rdfs:label "2m propane"^^xsd:string ;
1107 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1119 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1108 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpropane> . 1120 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_2mpropane> .
1109 1121
1110 ep-flow:substance-33dmPentane 1122 ep-flow:substance-33dmPentane
1111 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1123 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1112 rdfs:label "33dm pentane"^^xsd:string ; 1124 rdfs:label "33dm pentane"^^xsd:string ;
1113 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1125 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1114 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_33dmpentane> . 1126 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_33dmpentane> .
1115 1127
1116 ep-flow:substance-3etPentane 1128 ep-flow:substance-3etPentane
1117 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1129 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1118 rdfs:label "3et pentane"^^xsd:string ; 1130 rdfs:label "3et pentane"^^xsd:string ;
1119 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1131 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1120 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3etpentane> . 1132 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3etpentane> .
1121 1133
1122 ep-flow:substance-3mHexane 1134 ep-flow:substance-3mHexane
1123 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1135 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1124 rdfs:label "3m hexane"^^xsd:string ; 1136 rdfs:label "3m hexane"^^xsd:string ;
1125 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1137 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1126 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mhexane> . 1138 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mhexane> .
1127 1139
1128 ep-flow:substance-3mPentane 1140 ep-flow:substance-3mPentane
1129 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1141 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1130 rdfs:label "3m pentane"^^xsd:string ; 1142 rdfs:label "3m pentane"^^xsd:string ;
1131 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1143 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1132 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mpentane> . 1144 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_3mpentane> .
1133 1145
1134 ep-flow:substance-Ar 1146 ep-flow:substance-Ar
1135 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1147 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1136 rdfs:label "Ar"^^xsd:string , "Argon"^^xsd:string ; 1148 rdfs:label "Ar"^^xsd:string , "Argon"^^xsd:string ;
1137 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1149 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1138 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_Ar> . 1150 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_Ar> .
1139 1151
1140 ep-flow:substance-Benzene 1152 ep-flow:substance-Benzene
1141 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1153 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1142 rdfs:label "benzene"^^xsd:string ; 1154 rdfs:label "benzene"^^xsd:string ;
1143 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1155 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1144 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_benzene> . 1156 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_benzene> .
1145 1157
1146 ep-flow:substance-Butane 1158 ep-flow:substance-Butane
1147 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1159 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1148 rdfs:label "butane"^^xsd:string ; 1160 rdfs:label "butane"^^xsd:string ;
1149 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1161 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1150 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_butane> . 1162 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_butane> .
1151 1163
1152 ep-flow:substance-C11F 1164 ep-flow:substance-C11F
1153 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1165 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1154 rdfs:label "C11F"^^xsd:string ; 1166 rdfs:label "C11F"^^xsd:string ;
1155 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1167 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1156 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C11F> . 1168 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C11F> .
1157 1169
1158 ep-flow:substance-C12F 1170 ep-flow:substance-C12F
1159 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1171 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1160 rdfs:label "C12F"^^xsd:string ; 1172 rdfs:label "C12F"^^xsd:string ;
1161 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1173 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1162 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C12F> . 1174 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C12F> .
1163 1175
1164 ep-flow:substance-C13F 1176 ep-flow:substance-C13F
1165 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1177 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1166 rdfs:label "C13F"^^xsd:string ; 1178 rdfs:label "C13F"^^xsd:string ;
1167 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1179 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1168 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C13F> . 1180 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C13F> .
1169 1181
1170 ep-flow:substance-C13dmcyPentane 1182 ep-flow:substance-C13dmcyPentane
1171 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1183 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1172 rdfs:label "c13dmcy pentane"^^xsd:string ; 1184 rdfs:label "c13dmcy pentane"^^xsd:string ;
1173 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1185 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1174 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_c13dmcypentane> . 1186 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_c13dmcypentane> .
1175 1187
1176 ep-flow:substance-C14F 1188 ep-flow:substance-C14F
1177 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1189 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1178 rdfs:label "C14F"^^xsd:string ; 1190 rdfs:label "C14F"^^xsd:string ;
1179 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1191 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1180 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C14F> . 1192 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C14F> .
1181 1193
1182 ep-flow:substance-C15F 1194 ep-flow:substance-C15F
1183 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1195 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1184 rdfs:label "C15F"^^xsd:string ; 1196 rdfs:label "C15F"^^xsd:string ;
1185 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1197 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1186 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C15F> . 1198 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C15F> .
1187 1199
1188 ep-flow:substance-C16F 1200 ep-flow:substance-C16F
1189 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1201 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1190 rdfs:label "C16F"^^xsd:string ; 1202 rdfs:label "C16F"^^xsd:string ;
1191 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1203 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1192 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C16F> . 1204 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C16F> .
1193 1205
1194 ep-flow:substance-C17F 1206 ep-flow:substance-C17F
1195 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1207 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1196 rdfs:label "C17F"^^xsd:string ; 1208 rdfs:label "C17F"^^xsd:string ;
1197 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1209 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1198 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C17F> . 1210 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C17F> .
1199 1211
1200 ep-flow:substance-C18F 1212 ep-flow:substance-C18F
1201 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1213 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1202 rdfs:label "C18F"^^xsd:string ; 1214 rdfs:label "C18F"^^xsd:string ;
1203 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1215 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1204 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C18F> . 1216 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C18F> .
1205 1217
1206 ep-flow:substance-C19F 1218 ep-flow:substance-C19F
1207 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1219 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1208 rdfs:label "C19F"^^xsd:string ; 1220 rdfs:label "C19F"^^xsd:string ;
1209 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1221 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1210 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C19F> . 1222 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C19F> .
1211 1223
1212 ep-flow:substance-C20F 1224 ep-flow:substance-C20F
1213 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1225 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1214 rdfs:label "C20F"^^xsd:string ; 1226 rdfs:label "C20F"^^xsd:string ;
1215 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1227 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1216 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C20F> . 1228 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C20F> .
1217 1229
1218 ep-flow:substance-C21F 1230 ep-flow:substance-C21F
1219 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1231 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1220 rdfs:label "C21F"^^xsd:string ; 1232 rdfs:label "C21F"^^xsd:string ;
1221 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1233 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1222 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C21F> . 1234 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C21F> .
1223 1235
1224 ep-flow:substance-C22F 1236 ep-flow:substance-C22F
1225 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1237 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1226 rdfs:label "C22F"^^xsd:string ; 1238 rdfs:label "C22F"^^xsd:string ;
1227 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1239 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1228 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C22F> . 1240 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C22F> .
1229 1241
1230 ep-flow:substance-C23F 1242 ep-flow:substance-C23F
1231 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1243 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1232 rdfs:label "C23F"^^xsd:string ; 1244 rdfs:label "C23F"^^xsd:string ;
1233 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1245 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1234 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C23F> . 1246 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C23F> .
1235 1247
1236 ep-flow:substance-C24F 1248 ep-flow:substance-C24F
1237 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1249 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1238 rdfs:label "C24F"^^xsd:string ; 1250 rdfs:label "C24F"^^xsd:string ;
1239 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1251 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1240 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C24F> . 1252 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C24F> .
1241 1253
1242 ep-flow:substance-C25F 1254 ep-flow:substance-C25F
1243 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1255 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1244 rdfs:label "C25F"^^xsd:string ; 1256 rdfs:label "C25F"^^xsd:string ;
1245 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1257 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1246 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C25F> . 1258 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C25F> .
1247 1259
1248 ep-flow:substance-C26F 1260 ep-flow:substance-C26F
1249 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1261 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1250 rdfs:label "C26F"^^xsd:string ; 1262 rdfs:label "C26F"^^xsd:string ;
1251 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1263 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1252 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C26F> . 1264 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C26F> .
1253 1265
1254 ep-flow:substance-C27F 1266 ep-flow:substance-C27F
1255 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1267 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1256 rdfs:label "C27F"^^xsd:string ; 1268 rdfs:label "C27F"^^xsd:string ;
1257 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1269 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1258 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C27F> . 1270 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C27F> .
1259 1271
1260 ep-flow:substance-C28F 1272 ep-flow:substance-C28F
1261 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1273 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1262 rdfs:label "C28F"^^xsd:string ; 1274 rdfs:label "C28F"^^xsd:string ;
1263 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1275 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1264 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C28F> . 1276 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C28F> .
1265 1277
1266 ep-flow:substance-C29F 1278 ep-flow:substance-C29F
1267 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1279 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1268 rdfs:label "C29F"^^xsd:string ; 1280 rdfs:label "C29F"^^xsd:string ;
1269 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1281 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1270 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C29F> . 1282 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C29F> .
1271 1283
1272 ep-flow:substance-C30F 1284 ep-flow:substance-C30F
1273 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1285 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1274 rdfs:label "C30F"^^xsd:string ; 1286 rdfs:label "C30F"^^xsd:string ;
1275 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1287 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1276 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C30F> . 1288 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C30F> .
1277 1289
1278 ep-flow:substance-C31F 1290 ep-flow:substance-C31F
1279 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1291 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1280 rdfs:label "C31F"^^xsd:string ; 1292 rdfs:label "C31F"^^xsd:string ;
1281 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1293 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1282 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C31F> . 1294 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C31F> .
1283 1295
1284 ep-flow:substance-C32F 1296 ep-flow:substance-C32F
1285 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1297 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1286 rdfs:label "C32F"^^xsd:string ; 1298 rdfs:label "C32F"^^xsd:string ;
1287 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1299 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1288 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C32F> . 1300 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C32F> .
1289 1301
1290 ep-flow:substance-C33F 1302 ep-flow:substance-C33F
1291 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1303 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1292 rdfs:label "C33F"^^xsd:string ; 1304 rdfs:label "C33F"^^xsd:string ;
1293 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1305 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1294 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C33F> . 1306 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C33F> .
1295 1307
1296 ep-flow:substance-C34F 1308 ep-flow:substance-C34F
1297 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1309 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1298 rdfs:label "C34F"^^xsd:string ; 1310 rdfs:label "C34F"^^xsd:string ;
1299 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1311 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1300 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C34F> . 1312 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C34F> .
1301 1313
1302 ep-flow:substance-C35F 1314 ep-flow:substance-C35F
1303 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1315 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1304 rdfs:label "C35F"^^xsd:string ; 1316 rdfs:label "C35F"^^xsd:string ;
1305 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1317 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1306 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C35F> . 1318 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C35F> .
1307 1319
1308 ep-flow:substance-C36F 1320 ep-flow:substance-C36F
1309 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1321 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1310 rdfs:label "C36F"^^xsd:string ; 1322 rdfs:label "C36F"^^xsd:string ;
1311 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1323 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1312 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C36F> . 1324 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C36F> .
1313 1325
1314 ep-flow:substance-C37F 1326 ep-flow:substance-C37F
1315 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1327 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1316 rdfs:label "C37F"^^xsd:string ; 1328 rdfs:label "C37F"^^xsd:string ;
1317 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1329 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1318 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C37F> . 1330 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C37F> .
1319 1331
1320 ep-flow:substance-C38F 1332 ep-flow:substance-C38F
1321 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1333 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1322 rdfs:label "C38F"^^xsd:string ; 1334 rdfs:label "C38F"^^xsd:string ;
1323 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1335 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1324 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C38F> . 1336 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C38F> .
1325 1337
1326 ep-flow:substance-C39F 1338 ep-flow:substance-C39F
1327 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1339 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1328 rdfs:label "C39F"^^xsd:string ; 1340 rdfs:label "C39F"^^xsd:string ;
1329 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1341 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1330 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C39F> . 1342 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C39F> .
1331 1343
1332 ep-flow:substance-C40F 1344 ep-flow:substance-C40F
1333 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1345 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1334 rdfs:label "C40F"^^xsd:string ; 1346 rdfs:label "C40F"^^xsd:string ;
1335 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1347 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1336 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C40F> . 1348 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C40F> .
1337 1349
1338 ep-flow:substance-C41F 1350 ep-flow:substance-C41F
1339 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1351 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1340 rdfs:label "C41F"^^xsd:string ; 1352 rdfs:label "C41F"^^xsd:string ;
1341 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1353 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1342 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C41F> . 1354 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C41F> .
1343 1355
1344 ep-flow:substance-C42F 1356 ep-flow:substance-C42F
1345 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1357 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1346 rdfs:label "C42F"^^xsd:string ; 1358 rdfs:label "C42F"^^xsd:string ;
1347 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1359 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1348 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C42F> . 1360 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C42F> .
1349 1361
1350 ep-flow:substance-C43F 1362 ep-flow:substance-C43F
1351 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1363 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1352 rdfs:label "C43F"^^xsd:string ; 1364 rdfs:label "C43F"^^xsd:string ;
1353 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1365 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1354 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C43F> . 1366 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C43F> .
1355 1367
1356 ep-flow:substance-C44F 1368 ep-flow:substance-C44F
1357 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1369 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1358 rdfs:label "C44F"^^xsd:string ; 1370 rdfs:label "C44F"^^xsd:string ;
1359 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1371 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1360 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C44F> . 1372 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C44F> .
1361 1373
1362 ep-flow:substance-C45F 1374 ep-flow:substance-C45F
1363 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1375 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1364 rdfs:label "C45F"^^xsd:string ; 1376 rdfs:label "C45F"^^xsd:string ;
1365 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1377 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1366 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C45F> . 1378 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C45F> .
1367 1379
1368 ep-flow:substance-C46F 1380 ep-flow:substance-C46F
1369 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1381 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1370 rdfs:label "C46F"^^xsd:string ; 1382 rdfs:label "C46F"^^xsd:string ;
1371 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1383 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1372 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C46F> . 1384 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C46F> .
1373 1385
1374 ep-flow:substance-C47F 1386 ep-flow:substance-C47F
1375 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1387 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1376 rdfs:label "C47F"^^xsd:string ; 1388 rdfs:label "C47F"^^xsd:string ;
1377 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1389 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1378 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C47F> . 1390 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C47F> .
1379 1391
1380 ep-flow:substance-C48F 1392 ep-flow:substance-C48F
1381 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1393 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1382 rdfs:label "C48F"^^xsd:string ; 1394 rdfs:label "C48F"^^xsd:string ;
1383 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1395 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1384 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C48F> . 1396 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C48F> .
1385 1397
1386 ep-flow:substance-C49F 1398 ep-flow:substance-C49F
1387 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1399 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1388 rdfs:label "C49F"^^xsd:string ; 1400 rdfs:label "C49F"^^xsd:string ;
1389 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1401 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1390 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C49F> . 1402 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_C49F> .
1391 1403
1392 ep-flow:substance-CO2 1404 ep-flow:substance-CO2
1393 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1405 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1394 rdfs:label "CO2"^^xsd:string ; 1406 rdfs:label "CO2"^^xsd:string ;
1395 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1407 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1396 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_CO2> . 1408 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_CO2> .
1397 1409
1398 ep-flow:substance-Cyclohexane 1410 ep-flow:substance-Cyclohexane
1399 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1411 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1400 rdfs:label "cyclohexane"^^xsd:string ; 1412 rdfs:label "cyclohexane"^^xsd:string ;
1401 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1413 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1402 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclohexane> . 1414 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclohexane> .
1403 1415
1404 ep-flow:substance-Cyclopentane 1416 ep-flow:substance-Cyclopentane
1405 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1417 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1406 rdfs:label "cyclopentane"^^xsd:string ; 1418 rdfs:label "cyclopentane"^^xsd:string ;
1407 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1419 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1408 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclopentane> . 1420 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_cyclopentane> .
1409 1421
1410 ep-flow:substance-Decanes 1422 ep-flow:substance-Decanes
1411 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1423 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1412 rdfs:label "decanes"^^xsd:string ; 1424 rdfs:label "decanes"^^xsd:string ;
1413 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1425 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1414 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_decanes> . 1426 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_decanes> .
1415 1427
1416 ep-flow:substance-EtBenzene 1428 ep-flow:substance-EtBenzene
1417 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1429 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1418 rdfs:label "et benzene"^^xsd:string ; 1430 rdfs:label "et benzene"^^xsd:string ;
1419 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1431 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1420 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etbenzene> . 1432 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etbenzene> .
1421 1433
1422 ep-flow:substance-EtcyPentane 1434 ep-flow:substance-EtcyPentane
1423 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1435 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1424 rdfs:label "etcy pentane"^^xsd:string ; 1436 rdfs:label "etcy pentane"^^xsd:string ;
1425 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1437 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1426 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etcypentane> . 1438 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_etcypentane> .
1427 1439
1428 ep-flow:substance-Ethane 1440 ep-flow:substance-Ethane
1429 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1441 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1430 rdfs:label "ethane"^^xsd:string ; 1442 rdfs:label "ethane"^^xsd:string ;
1431 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1443 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1432 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_ethane> . 1444 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_ethane> .
1433 1445
1434 ep-flow:substance-H2 1446 ep-flow:substance-H2
1435 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1447 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1436 rdfs:label "H2"^^xsd:string ; 1448 rdfs:label "H2"^^xsd:string ;
1437 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1449 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1438 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2> . 1450 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2> .
1439 1451
1440 ep-flow:substance-H2O 1452 ep-flow:substance-H2O
1441 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1453 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1442 rdfs:label "H2O"^^xsd:string ; 1454 rdfs:label "H2O"^^xsd:string ;
1443 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1455 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1444 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2O> . 1456 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2O> .
1445 1457
1446 ep-flow:substance-H2S 1458 ep-flow:substance-H2S
1447 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1459 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1448 rdfs:label "H2S"^^xsd:string ; 1460 rdfs:label "H2S"^^xsd:string ;
1449 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1461 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1450 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2S> . 1462 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_H2S> .
1451 1463
1452 ep-flow:substance-Heptanes 1464 ep-flow:substance-Heptanes
1453 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1465 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1454 rdfs:label "heptanes"^^xsd:string ; 1466 rdfs:label "heptanes"^^xsd:string ;
1455 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1467 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1456 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_heptanes> . 1468 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_heptanes> .
1457 1469
1458 ep-flow:substance-Hexane 1470 ep-flow:substance-Hexane
1459 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1471 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1460 rdfs:label "hexane"^^xsd:string ; 1472 rdfs:label "hexane"^^xsd:string ;
1461 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1473 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1462 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexane> . 1474 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexane> .
1463 1475
1464 ep-flow:substance-Hexanes 1476 ep-flow:substance-Hexanes
1465 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1477 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1466 rdfs:label "hexanes"^^xsd:string ; 1478 rdfs:label "hexanes"^^xsd:string ;
1467 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1479 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1468 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexanes> . 1480 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_hexanes> .
1469 1481
1470 ep-flow:substance-MBenzene 1482 ep-flow:substance-MBenzene
1471 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1483 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1472 rdfs:label "m benzene"^^xsd:string ; 1484 rdfs:label "m benzene"^^xsd:string ;
1473 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1485 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1474 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mbenzene> . 1486 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mbenzene> .
1475 1487
1476 ep-flow:substance-McyHexane 1488 ep-flow:substance-McyHexane
1477 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1489 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1478 rdfs:label "mcy hexane"^^xsd:string ; 1490 rdfs:label "mcy hexane"^^xsd:string ;
1479 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1491 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1480 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcyhexane> . 1492 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcyhexane> .
1481 1493
1482 ep-flow:substance-McyPentane 1494 ep-flow:substance-McyPentane
1483 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1495 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1484 rdfs:label "mcy pentane"^^xsd:string ; 1496 rdfs:label "mcy pentane"^^xsd:string ;
1485 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1497 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1486 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcypentane> . 1498 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_mcypentane> .
1487 1499
1488 ep-flow:substance-Methane 1500 ep-flow:substance-Methane
1489 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1501 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1490 rdfs:label "methane"^^xsd:string ; 1502 rdfs:label "methane"^^xsd:string ;
1491 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1503 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1492 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_methane> . 1504 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_methane> .
1493 1505
1494 ep-flow:substance-N2 1506 ep-flow:substance-N2
1495 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1507 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1496 rdfs:label "N2"^^xsd:string ; 1508 rdfs:label "N2"^^xsd:string ;
1497 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1509 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1498 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_N2> . 1510 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_N2> .
1499 1511
1500 ep-flow:substance-Nonanes 1512 ep-flow:substance-Nonanes
1501 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1513 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1502 rdfs:label "nonanes"^^xsd:string ; 1514 rdfs:label "nonanes"^^xsd:string ;
1503 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1515 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1504 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_nonanes> . 1516 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_nonanes> .
1505 1517
1506 ep-flow:substance-O2 1518 ep-flow:substance-O2
1507 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1519 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1508 rdfs:label "O2"^^xsd:string ; 1520 rdfs:label "O2"^^xsd:string ;
1509 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1521 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1510 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_O2> . 1522 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_O2> .
1511 1523
1512 ep-flow:substance-Octanes 1524 ep-flow:substance-Octanes
1513 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1525 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1514 rdfs:label "octanes"^^xsd:string ; 1526 rdfs:label "octanes"^^xsd:string ;
1515 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1527 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1516 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_octanes> . 1528 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_octanes> .
1517 1529
1518 ep-flow:substance-T12dmcyPentane 1530 ep-flow:substance-T12dmcyPentane
1519 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1531 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1520 rdfs:label "t12dmcy pentane"^^xsd:string ; 1532 rdfs:label "t12dmcy pentane"^^xsd:string ;
1521 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1533 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1522 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t12dmcypentane> . 1534 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t12dmcypentane> .
1523 1535
1524 ep-flow:substance-T13dmcyPentane 1536 ep-flow:substance-T13dmcyPentane
1525 - rdf:type ep-prodact:SubstanceType , ep-prodwell:FluidComponentType , owl:Class ; 1537 + rdf:type ep-prodact:SubstanceType , ep-well:FluidComponentType , owl:Class ;
1526 rdfs:label "t13dmcy pentane"^^xsd:string ; 1538 rdfs:label "t13dmcy pentane"^^xsd:string ;
1527 rdfs:subClassOf ep-flow:QuantityOfMaterial ; 1539 rdfs:subClassOf ep-flow:QuantityOfMaterial ;
1528 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t13dmcypentane> . 1540 ep-prodcore:mapsTo <http://www.epim.no/schemas/mprml/1#FC_t13dmcypentane> .
...@@ -1538,17 +1550,17 @@ ep-flow:yearlyAverageAmountOfMaterial ...@@ -1538,17 +1550,17 @@ ep-flow:yearlyAverageAmountOfMaterial
1538 rdfs:label "yearly average amount of material"^^xsd:string ; 1550 rdfs:label "yearly average amount of material"^^xsd:string ;
1539 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion . 1551 rdfs:range ep-flow:ClassOfMaterialWithMassCriterion .
1540 1552
1541 -<http://www.reportinghub.no/ep/schema/well#Condensate> 1553 +ep-well:Condensate
1542 rdf:type ep-flow:ProductMaterialType . 1554 rdf:type ep-flow:ProductMaterialType .
1543 1555
1544 -<http://www.reportinghub.no/ep/schema/well#Fluid> 1556 +ep-well:Fluid
1545 rdfs:subClassOf ep-flow:QuantityOfMaterial . 1557 rdfs:subClassOf ep-flow:QuantityOfMaterial .
1546 1558
1547 -<http://www.reportinghub.no/ep/schema/well#Gas> 1559 +ep-well:Gas
1548 rdf:type ep-flow:ProductMaterialType . 1560 rdf:type ep-flow:ProductMaterialType .
1549 1561
1550 -<http://www.reportinghub.no/ep/schema/well#Oil> 1562 +ep-well:Oil
1551 rdf:type ep-flow:ProductMaterialType . 1563 rdf:type ep-flow:ProductMaterialType .
1552 1564
1553 -<http://www.reportinghub.no/ep/schema/well#Water> 1565 +ep-well:Water
1554 rdf:type ep-flow:ProductMaterialType . 1566 rdf:type ep-flow:ProductMaterialType .
......
1 +<?xml version="1.0" encoding="UTF-8"?>
2 + <objects version="1.0.0.0(PRODML)" xmlns="http://www.epim.no/schemas/mprml/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3 + <documentInfo>
4 + <DocumentName namingSystem="EC">TRYM July 2011</DocumentName>
5 + <DocumentAlias namingSystem="EC">TRYM Copex Report</DocumentAlias>
6 + <DocumentDate>2011-08-05T00:00:00.0Z</DocumentDate>
7 + <FileCreationInformation>
8 + <FileCreationDate>2011-08-15T00:00:00.0Z</FileCreationDate>
9 + <SoftwareName>Energy Components</SoftwareName>
10 + <FileCreator>Energy Components</FileCreator>
11 + </FileCreationInformation>
12 + <Owner>DONG E&amp;P Norge AS</Owner>
13 + </documentInfo>
14 + <context xsi:type="obj_report">
15 + <kind>month</kind>
16 + <title>TRYM July 2011</title>
17 + <date>2011-07-01</date>
18 + <dateEnd>2011-07-31</dateEnd>
19 + <month>2011-07</month>
20 + <year>2011</year>
21 + <reportVersion>1</reportVersion>
22 + <reportStatus>final</reportStatus>
23 + <installation kind="field" namingSystem="NPD" uidRef="18081500">TRYM</installation>
24 + <operator>
25 + <name>DONG E&amp;P Norge AS</name>
26 + <role>Operating company</role>
27 + </operator>
28 + </context>
29 + <object xsi:type="obj_productVolume">
30 + <name>TRYM</name>
31 + <facility>
32 + <name kind="field" namingSystem="NPD" uidRef="18081500">TRYM</name>
33 + <flow>
34 + <name>TRYM measured-recalibrated production flow</name>
35 + <kind>production</kind>
36 + <qualifier>measured</qualifier>
37 + <subQualifier>recalibrated</subQualifier>
38 + <product>
39 + <kind>oil - net</kind>
40 + <name>TRYM measured-recalibrated oil flow</name>
41 + <splitFactor>0.5</splitFactor>
42 + <period>
43 + <kind>month</kind>
44 + <dateStart>2011-07-01</dateStart>
45 + <dateEnd>2011-07-31</dateEnd>
46 + <volumeValue>
47 + <volume uom="m3">524.83</volume>
48 + <grossCalorificValue uom="MJ/m3">10</grossCalorificValue>
49 + <temp uom="degC">15</temp>
50 + <pres uom="atm">1</pres>
51 + <work uom="MJ">1000</work>
52 + </volumeValue>
53 + <mass uom="kg">61.1</mass>
54 + <densityValue>
55 + <density uom="kg/m3">799.04</density>
56 + <temp uom="degC">15</temp>
57 + <pres uom="atm">1</pres>
58 + </densityValue>
59 + </period>
60 + <period>
61 + <kind>daily month to date</kind>
62 + <dateStart>2011-07-01</dateStart>
63 + <dateEnd>2011-07-31</dateEnd>
64 + <volumeValue>
65 + <volume uom="m3">524.83</volume>
66 + <grossCalorificValue uom="MJ/m3">20</grossCalorificValue>
67 + <temp uom="degC">15</temp>
68 + <pres uom="atm">1</pres>
69 + <work uom="MJ">2000</work>
70 + </volumeValue>
71 + <mass uom="kg">61.1</mass>
72 + <densityValue>
73 + <density uom="kg/m3">799.04</density>
74 + <temp uom="degC">15</temp>
75 + <pres uom="atm">1</pres>
76 + </densityValue>
77 + </period>
78 + </product>
79 + </flow>
80 + <flow>
81 + <name>TRYM estimated production inventory</name>
82 + <kind>inventory</kind>
83 + <qualifier>estimate</qualifier>
84 + <product>
85 + <kind>oil - net</kind>
86 + <name>TRYM estimated oil inventory</name>
87 + <period>
88 + <kind>month</kind>
89 + <dateStart>2011-07-01</dateStart>
90 + <dateEnd>2011-07-31</dateEnd>
91 + <volumeValue>
92 + <volume uom="m3">1000</volume>
93 + <grossCalorificValue uom="MJ/m3">30</grossCalorificValue>
94 + <temp uom="degC">15</temp>
95 + <pres uom="atm">1</pres>
96 + <work uom="MJ">3000</work>
97 + </volumeValue>
98 + <mass uom="kg">2000</mass>
99 + <densityValue>
100 + <density uom="kg/m3">3000</density>
101 + <temp uom="degC">15</temp>
102 + <pres uom="atm">1</pres>
103 + </densityValue>
104 + </period>
105 + </product>
106 + </flow>
107 + <flow>
108 + <name>FREDERICIA field production lifted by tanker</name>
109 + <kind>hydrocarbon accounting</kind>
110 + <qualifier>allocated</qualifier>
111 + <product>
112 + <kind>oil - net</kind>
113 + <period>
114 + <kind>month</kind>
115 + <dateStart>2011-07-01</dateStart>
116 + <dateEnd>2011-07-31</dateEnd>
117 + <balanceSet>
118 + <kind>tanker lifting</kind>
119 + <cargoNumber>304/1</cargoNumber>
120 + <cargoBatchNumber>1</cargoBatchNumber>
121 + <shipper>Bayerngas Norge AS</shipper>
122 + <destination>
123 + <name>Fawley</name>
124 + <type>harbour</type>
125 + <country>UNITED KINGDOM</country>
126 + </destination>
127 + <event>
128 + <date>2009-01-04</date>
129 + <kind>bill of lading</kind>
130 + </event>
131 + <volumeValue>
132 + <volume uom="m3">741.46</volume>
133 + <grossCalorificValue uom="MJ/m3">40</grossCalorificValue>
134 + <temp uom="degC">15</temp>
135 + <pres uom="atm">1</pres>
136 + <work uom="MJ">4000</work>
137 + </volumeValue>
138 + <mass uom="kg">822.37</mass>
139 + <densityValue>
140 + <density uom="kg/m3">724.87</density>
141 + <temp uom="degC">15.0</temp>
142 + <pres uom="atm">1</pres>
143 + </densityValue>
144 + <balanceDetail>
145 + <owner>Bayerngas Norge AS</owner>
146 + <share uom="%">100.0</share>
147 + </balanceDetail>
148 + </balanceSet>
149 + <alert>
150 + <target>some XPATH</target>
151 + <level>alert level</level>
152 + <kind>alert kind</kind>
153 + <description>alert description</description>
154 + </alert>
155 + <comment>
156 + <who>David Leal</who>
157 + <role>ontologist</role>
158 + <dTimStart>2012-02-21</dTimStart>
159 + <dTimEnd>2012-02-22</dTimEnd>
160 + <remark>say something</remark>
161 + </comment>
162 + </period>
163 + </product>
164 + </flow>
165 + </facility>
166 + </object>
167 + </objects>
...\ No newline at end of file ...\ No newline at end of file