David Leal

productVolume bug fixes and small test set

1 -# Saved by TopBraid on Mon Oct 10 14:27:07 BST 2011 1 +# Saved by TopBraid on Mon Oct 10 16:49:41 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/dpr/spin/1.1/lib 2 # baseURI: http://www.reportinghub.no/ep/dpr/spin/1.1/lib
3 # imports: http://www.reportinghub.no/ep/schema/1.0/geography 3 # imports: http://www.reportinghub.no/ep/schema/1.0/geography
4 # imports: http://www.reportinghub.no/ep/schema/1.0/well 4 # imports: http://www.reportinghub.no/ep/schema/1.0/well
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
21 21
22 <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> 22 <http://www.reportinghub.no/ep/dpr/spin/1.1/lib>
23 rdf:type owl:Ontology ; 23 rdf:type owl:Ontology ;
24 - owl:imports <http://www.reportinghub.no/ep/schema/1.0/flow> , <http://www.reportinghub.no/ep/schema/1.0/geography> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.witsml.org/schemas/131/addendum/combo> , <http://spinrdf.org/spin> ; 24 + owl:imports <http://spinrdf.org/spin> , <http://www.witsml.org/schemas/131/addendum/combo> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/schema/1.0/well> , <http://www.reportinghub.no/ep/schema/1.0/geography> , <http://www.reportinghub.no/ep/schema/1.0/flow> ;
25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
26 26
27 ep-dpr-spin-lib:Function 27 ep-dpr-spin-lib:Function
...@@ -29,13 +29,34 @@ ep-dpr-spin-lib:Function ...@@ -29,13 +29,34 @@ ep-dpr-spin-lib:Function
29 rdfs:label "function"^^xsd:string ; 29 rdfs:label "function"^^xsd:string ;
30 rdfs:subClassOf spin:Functions . 30 rdfs:subClassOf spin:Functions .
31 31
32 +ep-dpr-spin-lib:buildProductFlowURI
33 + rdf:type spin:Function ;
34 + rdfs:label "build ProductFlow URI"^^xsd:string ;
35 + rdfs:subClassOf ep-dpr-spin-lib:Function ;
36 + spin:body
37 + [ rdf:type sp:Select ;
38 + sp:resultVariables (_:b1) ;
39 + sp:where ([ rdf:type sp:Bind ;
40 + sp:expression
41 + [ rdf:type ep-spin-lib:buildURI ;
42 + sp:arg1 "https://www.reportinghub.no/ep/data/productFlow/" ;
43 + sp:arg2 [ rdf:type fn:concat ;
44 + sp:arg1 spin:_arg1 ;
45 + sp:arg2 "$" ;
46 + sp:arg3 spin:_arg2
47 + ]
48 + ] ;
49 + sp:variable _:b1
50 + ])
51 + ] .
52 +
32 ep-dpr-spin-lib:buildProductionFacilityURI 53 ep-dpr-spin-lib:buildProductionFacilityURI
33 rdf:type spin:Function ; 54 rdf:type spin:Function ;
34 rdfs:label "build ProductionFacility URI"^^xsd:string ; 55 rdfs:label "build ProductionFacility URI"^^xsd:string ;
35 rdfs:subClassOf ep-dpr-spin-lib:Function ; 56 rdfs:subClassOf ep-dpr-spin-lib:Function ;
36 spin:body 57 spin:body
37 [ rdf:type sp:Select ; 58 [ rdf:type sp:Select ;
38 - sp:resultVariables (_:b1) ; 59 + sp:resultVariables (_:b2) ;
39 sp:where ([ rdf:type sp:Bind ; 60 sp:where ([ rdf:type sp:Bind ;
40 sp:expression 61 sp:expression
41 [ rdf:type ep-spin-lib:buildURI ; 62 [ rdf:type ep-spin-lib:buildURI ;
...@@ -44,7 +65,7 @@ ep-dpr-spin-lib:buildProductionFacilityURI ...@@ -44,7 +65,7 @@ ep-dpr-spin-lib:buildProductionFacilityURI
44 sp:arg1 spin:_arg1 65 sp:arg1 spin:_arg1
45 ] 66 ]
46 ] ; 67 ] ;
47 - sp:variable _:b1 68 + sp:variable _:b2
48 ]) 69 ])
49 ] . 70 ] .
50 71
...@@ -54,7 +75,7 @@ ep-dpr-spin-lib:buildProductionFlowURI ...@@ -54,7 +75,7 @@ ep-dpr-spin-lib:buildProductionFlowURI
54 rdfs:subClassOf ep-dpr-spin-lib:Function ; 75 rdfs:subClassOf ep-dpr-spin-lib:Function ;
55 spin:body 76 spin:body
56 [ rdf:type sp:Select ; 77 [ rdf:type sp:Select ;
57 - sp:resultVariables (_:b2) ; 78 + sp:resultVariables (_:b3) ;
58 sp:where ([ rdf:type sp:Bind ; 79 sp:where ([ rdf:type sp:Bind ;
59 sp:expression 80 sp:expression
60 [ rdf:type ep-spin-lib:buildURI ; 81 [ rdf:type ep-spin-lib:buildURI ;
...@@ -63,7 +84,7 @@ ep-dpr-spin-lib:buildProductionFlowURI ...@@ -63,7 +84,7 @@ ep-dpr-spin-lib:buildProductionFlowURI
63 sp:arg1 spin:_arg1 84 sp:arg1 spin:_arg1
64 ] 85 ]
65 ] ; 86 ] ;
66 - sp:variable _:b2 87 + sp:variable _:b3
67 ]) 88 ])
68 ] . 89 ] .
69 90
...@@ -73,11 +94,11 @@ ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI ...@@ -73,11 +94,11 @@ ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI
73 rdfs:subClassOf ep-dpr-spin-lib:Function ; 94 rdfs:subClassOf ep-dpr-spin-lib:Function ;
74 spin:body 95 spin:body
75 [ rdf:type sp:Select ; 96 [ rdf:type sp:Select ;
76 - sp:resultVariables (_:b3) ; 97 + sp:resultVariables (_:b4) ;
77 sp:where ([ rdf:type sp:Bind ; 98 sp:where ([ rdf:type sp:Bind ;
78 sp:expression 99 sp:expression
79 [ rdf:type ep-spin-lib:buildURI ; 100 [ rdf:type ep-spin-lib:buildURI ;
80 - sp:arg1 "https://www.reportinghub.no/ep/data/productionFacility/" ; 101 + sp:arg1 "https://www.reportinghub.no/ep/data/productionFlowsForAPeriod/" ;
81 sp:arg2 [ rdf:type fn:concat ; 102 sp:arg2 [ rdf:type fn:concat ;
82 sp:arg1 spin:_arg1 ; 103 sp:arg1 spin:_arg1 ;
83 sp:arg2 "$" ; 104 sp:arg2 "$" ;
...@@ -86,7 +107,7 @@ ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI ...@@ -86,7 +107,7 @@ ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI
86 sp:arg5 spin:_arg3 107 sp:arg5 spin:_arg3
87 ] 108 ]
88 ] ; 109 ] ;
89 - sp:variable _:b3 110 + sp:variable _:b4
90 ]) 111 ])
91 ] . 112 ] .
92 113
...@@ -96,7 +117,7 @@ ep-dpr-spin-lib:selectProductType ...@@ -96,7 +117,7 @@ ep-dpr-spin-lib:selectProductType
96 rdfs:subClassOf ep-dpr-spin-lib:Function ; 117 rdfs:subClassOf ep-dpr-spin-lib:Function ;
97 spin:body 118 spin:body
98 [ rdf:type sp:Select ; 119 [ rdf:type sp:Select ;
99 - sp:resultVariables (_:b4) ; 120 + sp:resultVariables (_:b5) ;
100 sp:where ([ rdf:type sp:Bind ; 121 sp:where ([ rdf:type sp:Bind ;
101 sp:expression 122 sp:expression
102 [ rdf:type sp:if ; 123 [ rdf:type sp:if ;
...@@ -174,12 +195,6 @@ ep-dpr-spin-lib:selectProductType ...@@ -174,12 +195,6 @@ ep-dpr-spin-lib:selectProductType
174 sp:arg3 [ rdf:type sp:if ; 195 sp:arg3 [ rdf:type sp:if ;
175 sp:arg1 [ rdf:type sp:eq ; 196 sp:arg1 [ rdf:type sp:eq ;
176 sp:arg1 spin:_arg1 ; 197 sp:arg1 spin:_arg1 ;
177 - sp:arg2 <http://www.witsml.org/schemas/131/addendum/combo#RP_gas>
178 - ] ;
179 - sp:arg2 <http://www.reportinghub.no/ep/schema/flow#GasFlow> ;
180 - sp:arg3 [ rdf:type sp:if ;
181 - sp:arg1 [ rdf:type sp:eq ;
182 - sp:arg1 spin:_arg1 ;
183 sp:arg2 <http://www.witsml.org/schemas/131/addendum/combo#RP_i-butane-component> 198 sp:arg2 <http://www.witsml.org/schemas/131/addendum/combo#RP_i-butane-component>
184 ] ; 199 ] ;
185 sp:arg2 <http://www.reportinghub.no/ep/schema/flow#I-butane-componentFlow> ; 200 sp:arg2 <http://www.reportinghub.no/ep/schema/flow#I-butane-componentFlow> ;
...@@ -270,6 +285,12 @@ ep-dpr-spin-lib:selectProductType ...@@ -270,6 +285,12 @@ ep-dpr-spin-lib:selectProductType
270 sp:arg3 [ rdf:type sp:if ; 285 sp:arg3 [ rdf:type sp:if ;
271 sp:arg1 [ rdf:type sp:eq ; 286 sp:arg1 [ rdf:type sp:eq ;
272 sp:arg1 spin:_arg1 ; 287 sp:arg1 spin:_arg1 ;
288 + sp:arg2 <http://www.witsml.org/schemas/131/addendum/combo#RP_gas>
289 + ] ;
290 + sp:arg2 <http://www.reportinghub.no/ep/schema/flow#GasFlow> ;
291 + sp:arg3 [ rdf:type sp:if ;
292 + sp:arg1 [ rdf:type sp:eq ;
293 + sp:arg1 spin:_arg1 ;
273 sp:arg2 <http://www.witsml.org/schemas/131/addendum/combo#ReportingProduct_RP_unknown> 294 sp:arg2 <http://www.witsml.org/schemas/131/addendum/combo#ReportingProduct_RP_unknown>
274 ] ; 295 ] ;
275 sp:arg2 <http://www.reportinghub.no/ep/schema/flow#FlowOfMaterial> ; 296 sp:arg2 <http://www.reportinghub.no/ep/schema/flow#FlowOfMaterial> ;
...@@ -303,7 +324,7 @@ ep-dpr-spin-lib:selectProductType ...@@ -303,7 +324,7 @@ ep-dpr-spin-lib:selectProductType
303 ] 324 ]
304 ] 325 ]
305 ] ; 326 ] ;
306 - sp:variable _:b4 327 + sp:variable _:b5
307 ]) 328 ])
308 ] . 329 ] .
309 330
...@@ -313,7 +334,7 @@ ep-dpr-spin-lib:selectProductionFacilityType ...@@ -313,7 +334,7 @@ ep-dpr-spin-lib:selectProductionFacilityType
313 rdfs:subClassOf ep-dpr-spin-lib:Function ; 334 rdfs:subClassOf ep-dpr-spin-lib:Function ;
314 spin:body 335 spin:body
315 [ rdf:type sp:Select ; 336 [ rdf:type sp:Select ;
316 - sp:resultVariables (_:b5) ; 337 + sp:resultVariables (_:b6) ;
317 sp:where ([ rdf:type sp:Bind ; 338 sp:where ([ rdf:type sp:Bind ;
318 sp:expression 339 sp:expression
319 [ rdf:type sp:if ; 340 [ rdf:type sp:if ;
...@@ -492,7 +513,7 @@ ep-dpr-spin-lib:selectProductionFacilityType ...@@ -492,7 +513,7 @@ ep-dpr-spin-lib:selectProductionFacilityType
492 ] 513 ]
493 ] 514 ]
494 ] ; 515 ] ;
495 - sp:variable _:b5 516 + sp:variable _:b6
496 ]) 517 ])
497 ] . 518 ] .
498 519
...@@ -502,7 +523,7 @@ ep-dpr-spin-lib:selectProductionFlowDefinitionType ...@@ -502,7 +523,7 @@ ep-dpr-spin-lib:selectProductionFlowDefinitionType
502 rdfs:subClassOf ep-dpr-spin-lib:Function ; 523 rdfs:subClassOf ep-dpr-spin-lib:Function ;
503 spin:body 524 spin:body
504 [ rdf:type sp:Select ; 525 [ rdf:type sp:Select ;
505 - sp:resultVariables (_:b6) ; 526 + sp:resultVariables (_:b7) ;
506 sp:where ([ rdf:type sp:Bind ; 527 sp:where ([ rdf:type sp:Bind ;
507 sp:expression 528 sp:expression
508 [ rdf:type sp:if ; 529 [ rdf:type sp:if ;
...@@ -562,7 +583,7 @@ ep-dpr-spin-lib:selectProductionFlowDefinitionType ...@@ -562,7 +583,7 @@ ep-dpr-spin-lib:selectProductionFlowDefinitionType
562 ] 583 ]
563 ] 584 ]
564 ] ; 585 ] ;
565 - sp:variable _:b6 586 + sp:variable _:b7
566 ]) 587 ])
567 ] . 588 ] .
568 589
...@@ -572,7 +593,7 @@ ep-dpr-spin-lib:selectProductionFlowPurposeType ...@@ -572,7 +593,7 @@ ep-dpr-spin-lib:selectProductionFlowPurposeType
572 rdfs:subClassOf ep-dpr-spin-lib:Function ; 593 rdfs:subClassOf ep-dpr-spin-lib:Function ;
573 spin:body 594 spin:body
574 [ rdf:type sp:Select ; 595 [ rdf:type sp:Select ;
575 - sp:resultVariables (_:b7) ; 596 + sp:resultVariables (_:b8) ;
576 sp:where ([ rdf:type sp:Bind ; 597 sp:where ([ rdf:type sp:Bind ;
577 sp:expression 598 sp:expression
578 [ rdf:type sp:if ; 599 [ rdf:type sp:if ;
...@@ -723,7 +744,7 @@ ep-dpr-spin-lib:selectProductionFlowPurposeType ...@@ -723,7 +744,7 @@ ep-dpr-spin-lib:selectProductionFlowPurposeType
723 ] 744 ]
724 ] 745 ]
725 ] ; 746 ] ;
726 - sp:variable _:b7 747 + sp:variable _:b8
727 ]) 748 ])
728 ] . 749 ] .
729 750
...@@ -733,7 +754,7 @@ ep-dpr-spin-lib:selectRelationshipToMeasure ...@@ -733,7 +754,7 @@ ep-dpr-spin-lib:selectRelationshipToMeasure
733 rdfs:subClassOf ep-dpr-spin-lib:Function ; 754 rdfs:subClassOf ep-dpr-spin-lib:Function ;
734 spin:body 755 spin:body
735 [ rdf:type sp:Select ; 756 [ rdf:type sp:Select ;
736 - sp:resultVariables (_:b8) ; 757 + sp:resultVariables (_:b9) ;
737 sp:where ([ rdf:type sp:Bind ; 758 sp:where ([ rdf:type sp:Bind ;
738 sp:expression 759 sp:expression
739 [ rdf:type sp:if ; 760 [ rdf:type sp:if ;
...@@ -807,7 +828,7 @@ ep-dpr-spin-lib:selectRelationshipToMeasure ...@@ -807,7 +828,7 @@ ep-dpr-spin-lib:selectRelationshipToMeasure
807 ] 828 ]
808 ] 829 ]
809 ] ; 830 ] ;
810 - sp:variable _:b8 831 + sp:variable _:b9
811 ]) 832 ])
812 ] . 833 ] .
813 834
...@@ -817,7 +838,7 @@ ep-dpr-spin-lib:selectTemporalPartOfAFlowDurationType ...@@ -817,7 +838,7 @@ ep-dpr-spin-lib:selectTemporalPartOfAFlowDurationType
817 rdfs:subClassOf ep-dpr-spin-lib:Function ; 838 rdfs:subClassOf ep-dpr-spin-lib:Function ;
818 spin:body 839 spin:body
819 [ rdf:type sp:Select ; 840 [ rdf:type sp:Select ;
820 - sp:resultVariables (_:b9) ; 841 + sp:resultVariables (_:b10) ;
821 sp:where ([ rdf:type sp:Bind ; 842 sp:where ([ rdf:type sp:Bind ;
822 sp:expression 843 sp:expression
823 [ rdf:type sp:if ; 844 [ rdf:type sp:if ;
...@@ -891,7 +912,7 @@ ep-dpr-spin-lib:selectTemporalPartOfAFlowDurationType ...@@ -891,7 +912,7 @@ ep-dpr-spin-lib:selectTemporalPartOfAFlowDurationType
891 ] 912 ]
892 ] 913 ]
893 ] ; 914 ] ;
894 - sp:variable _:b9 915 + sp:variable _:b10
895 ]) 916 ])
896 ] . 917 ] .
897 918
...@@ -901,7 +922,7 @@ ep-dpr-spin-lib:selectVolumeAtStandardTemperaturePressureType ...@@ -901,7 +922,7 @@ ep-dpr-spin-lib:selectVolumeAtStandardTemperaturePressureType
901 rdfs:subClassOf ep-dpr-spin-lib:Function ; 922 rdfs:subClassOf ep-dpr-spin-lib:Function ;
902 spin:body 923 spin:body
903 [ rdf:type sp:Select ; 924 [ rdf:type sp:Select ;
904 - sp:resultVariables (_:b10) ; 925 + sp:resultVariables (_:b11) ;
905 sp:where ([ rdf:type sp:Bind ; 926 sp:where ([ rdf:type sp:Bind ;
906 sp:expression 927 sp:expression
907 [ rdf:type sp:if ; 928 [ rdf:type sp:if ;
...@@ -926,7 +947,7 @@ ep-dpr-spin-lib:selectVolumeAtStandardTemperaturePressureType ...@@ -926,7 +947,7 @@ ep-dpr-spin-lib:selectVolumeAtStandardTemperaturePressureType
926 ] 947 ]
927 ] 948 ]
928 ] ; 949 ] ;
929 - sp:variable _:b10 950 + sp:variable _:b11
930 ]) 951 ])
931 ] . 952 ] .
932 953
...@@ -936,7 +957,7 @@ ep-dpr-spin-lib:selectVolumeScale ...@@ -936,7 +957,7 @@ ep-dpr-spin-lib:selectVolumeScale
936 rdfs:subClassOf ep-dpr-spin-lib:Function ; 957 rdfs:subClassOf ep-dpr-spin-lib:Function ;
937 spin:body 958 spin:body
938 [ rdf:type sp:Select ; 959 [ rdf:type sp:Select ;
939 - sp:resultVariables (_:b11) ; 960 + sp:resultVariables (_:b12) ;
940 sp:where ([ rdf:type sp:Bind ; 961 sp:where ([ rdf:type sp:Bind ;
941 sp:expression 962 sp:expression
942 [ rdf:type sp:if ; 963 [ rdf:type sp:if ;
...@@ -1164,30 +1185,33 @@ ep-dpr-spin-lib:selectVolumeScale ...@@ -1164,30 +1185,33 @@ ep-dpr-spin-lib:selectVolumeScale
1164 ] 1185 ]
1165 ] 1186 ]
1166 ] ; 1187 ] ;
1167 - sp:variable _:b11 1188 + sp:variable _:b12
1168 ]) 1189 ])
1169 ] . 1190 ] .
1170 1191
1171 -_:b7 sp:varName "productionFlowPurposeType"^^xsd:string . 1192 +_:b5 sp:varName "productType"^^xsd:string .
1172 1193
1173 -_:b6 sp:varName "productionFlowDefinitionType"^^xsd:string . 1194 +_:b12
1195 + sp:varName "volumeScale"^^xsd:string .
1174 1196
1175 -_:b5 sp:varName "productionFacilityType"^^xsd:string . 1197 +_:b11
1198 + sp:varName "volumeAtStdType"^^xsd:string .
1176 1199
1177 -_:b3 sp:varName "uri"^^xsd:string . 1200 +_:b10
1201 + sp:varName "temporalPartOfAFlowDurationType"^^xsd:string .
1178 1202
1179 -_:b2 sp:varName "uri"^^xsd:string . 1203 +_:b9 sp:varName "relationshipToMeasure"^^xsd:string .
1180 1204
1181 -_:b1 sp:varName "uri"^^xsd:string . 1205 +_:b8 sp:varName "productionFlowPurposeType"^^xsd:string .
1182 1206
1183 -_:b4 sp:varName "productType"^^xsd:string . 1207 +_:b7 sp:varName "productionFlowDefinitionType"^^xsd:string .
1184 1208
1185 -_:b11 1209 +_:b6 sp:varName "productionFacilityType"^^xsd:string .
1186 - sp:varName "volumeScale"^^xsd:string . 1210 +
1211 +_:b3 sp:varName "uri"^^xsd:string .
1187 1212
1188 -_:b8 sp:varName "relationshipToMeasure"^^xsd:string . 1213 +_:b2 sp:varName "uri"^^xsd:string .
1189 1214
1190 -_:b9 sp:varName "temporalPartOfAFlowDurationType"^^xsd:string . 1215 +_:b4 sp:varName "uri"^^xsd:string .
1191 1216
1192 -_:b10 1217 +_:b1 sp:varName "uri"^^xsd:string .
1193 - sp:varName "volumeAtStdType"^^xsd:string .
......
1 -# Saved by TopBraid on Mon Oct 10 14:27:07 BST 2011 1 +# Saved by TopBraid on Mon Oct 10 16:49:41 BST 2011
2 # baseURI: null 2 # baseURI: null
3 3
4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> . 4 @prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
1 -# Saved by TopBraid on Mon Oct 10 14:27:20 BST 2011 1 +# Saved by TopBraid on Mon Oct 10 17:05:37 BST 2011
2 # baseURI: http://www.reportinghub.no/ep/transform/1.0/dpr/productVolume 2 # baseURI: http://www.reportinghub.no/ep/transform/1.0/dpr/productVolume
3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib 3 # imports: http://www.reportinghub.no/ep/spin/1.1/lib
4 -# imports: http://www.reportinghub.no/ep/schema/1.0/core
5 # imports: http://www.reportinghub.no/ep/dpr/spin/1.1/lib 4 # imports: http://www.reportinghub.no/ep/dpr/spin/1.1/lib
5 +# imports: http://www.reportinghub.no/ep/schema/1.0/core
6 # imports: http://www.reportinghub.no/ep/schema/1.0/facility 6 # imports: http://www.reportinghub.no/ep/schema/1.0/facility
7 # imports: http://spinrdf.org/spin 7 # imports: http://spinrdf.org/spin
8 # imports: http://www.witsml.org/schemas/131/addendum/combo 8 # imports: http://www.witsml.org/schemas/131/addendum/combo
9 9
10 @prefix : <http://www.reportinghub.no/ep/transform/1.0/dpr/productVolume#> . 10 @prefix : <http://www.reportinghub.no/ep/transform/1.0/dpr/productVolume#> .
11 +@prefix afn: <http://jena.hpl.hp.com/ARQ/function#> .
11 @prefix ep-dpr-spin-lib: <http://www.reportinghub.no/ep/dpr/spin/1.1/lib#> . 12 @prefix ep-dpr-spin-lib: <http://www.reportinghub.no/ep/dpr/spin/1.1/lib#> .
12 @prefix ep-spin-lib: <http://www.reportinghub.no/ep/spin/lib#> . 13 @prefix ep-spin-lib: <http://www.reportinghub.no/ep/spin/lib#> .
13 @prefix owl: <http://www.w3.org/2002/07/owl#> . 14 @prefix owl: <http://www.w3.org/2002/07/owl#> .
...@@ -21,7 +22,7 @@ ...@@ -21,7 +22,7 @@
21 22
22 <http://www.reportinghub.no/ep/transform/1.0/dpr/productVolume> 23 <http://www.reportinghub.no/ep/transform/1.0/dpr/productVolume>
23 rdf:type owl:Ontology ; 24 rdf:type owl:Ontology ;
24 - owl:imports <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.witsml.org/schemas/131/addendum/combo> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/spin/1.1/lib> ; 25 + owl:imports <http://www.reportinghub.no/ep/spin/1.1/lib> , <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/schema/1.0/core> , <http://www.witsml.org/schemas/131/addendum/combo> , <http://www.reportinghub.no/ep/schema/1.0/facility> , <http://www.reportinghub.no/ep/dpr/spin/1.1/lib> ;
25 owl:versionInfo "Created with TopBraid Composer"^^xsd:string . 26 owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
26 27
27 <http://www.witsml.org/schemas/131/addendum/combo#Co_productVolume> 28 <http://www.witsml.org/schemas/131/addendum/combo#Co_productVolume>
...@@ -48,101 +49,97 @@ ...@@ -48,101 +49,97 @@
48 sp:subject _:b1 49 sp:subject _:b1
49 ] [ sp:object _:b7 ; 50 ] [ sp:object _:b7 ;
50 sp:predicate _:b8 ; 51 sp:predicate _:b8 ;
51 - sp:subject _:b9 52 + sp:subject _:b1
52 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ; 53 ] [ sp:object <http://www.reportinghub.no/ep/schema/core#Volume> ;
53 sp:predicate rdf:type ; 54 sp:predicate rdf:type ;
54 sp:subject _:b7 55 sp:subject _:b7
55 - ] [ sp:object _:b10 ; 56 + ] [ sp:object _:b9 ;
56 - sp:predicate 57 + sp:predicate _:b10 ;
57 - [ sp:varName "scaleVolume"^^xsd:string
58 - ] ;
59 sp:subject _:b7 58 sp:subject _:b7
60 ] [ sp:object _:b11 ; 59 ] [ sp:object _:b11 ;
61 sp:predicate _:b8 ; 60 sp:predicate _:b8 ;
62 - sp:subject _:b9 61 + sp:subject _:b1
63 ] [ sp:object _:b12 ; 62 ] [ sp:object _:b12 ;
64 sp:predicate rdf:type ; 63 sp:predicate rdf:type ;
65 sp:subject _:b11 64 sp:subject _:b11
66 ] [ sp:object _:b13 ; 65 ] [ sp:object _:b13 ;
67 - sp:predicate 66 + sp:predicate _:b14 ;
68 - [ sp:varName "scaleVolumeStd"^^xsd:string
69 - ] ;
70 sp:subject _:b11 67 sp:subject _:b11
71 ]) ; 68 ]) ;
72 sp:where ([ sp:object spin:_this ; 69 sp:where ([ sp:object spin:_this ;
73 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 70 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
74 sp:subject _:b2 71 sp:subject _:b2
75 - ] [ sp:object _:b14 ; 72 + ] [ sp:object _:b15 ;
76 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#standardTempPresRef> ; 73 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#standardTempPresRef> ;
77 sp:subject spin:_this 74 sp:subject spin:_this
78 - ] [ sp:object _:b15 ; 75 + ] [ sp:object _:b16 ;
79 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ; 76 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ;
80 sp:subject spin:_this 77 sp:subject spin:_this
81 - ] [ sp:object _:b16 ;
82 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
83 - sp:subject _:b15
84 ] [ sp:object _:b17 ; 78 ] [ sp:object _:b17 ;
85 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 79 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
86 sp:subject _:b16 80 sp:subject _:b16
87 ] [ sp:object _:b18 ; 81 ] [ sp:object _:b18 ;
88 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#flowRef> ; 82 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
89 - sp:subject _:b15 83 + sp:subject _:b17
90 ] [ sp:object _:b19 ; 84 ] [ sp:object _:b19 ;
85 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#flowRef> ;
86 + sp:subject _:b16
87 + ] [ sp:object _:b20 ;
91 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ; 88 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ;
92 - sp:subject _:b18 89 + sp:subject _:b19
93 - ] [ sp:object _:b4 ;
94 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#productRef> ;
95 - sp:subject _:b20
96 ] [ sp:object _:b21 ; 90 ] [ sp:object _:b21 ;
97 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ; 91 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#productRef> ;
98 - sp:subject _:b4 92 + sp:subject _:b19
99 ] [ sp:object _:b22 ; 93 ] [ sp:object _:b22 ;
94 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ;
95 + sp:subject _:b21
96 + ] [ sp:object _:b23 ;
100 sp:predicate rdfs:label ; 97 sp:predicate rdfs:label ;
101 - sp:subject _:b23 98 + sp:subject _:b24
102 - ] [ sp:object _:b24 ;
103 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#periodRef> ;
104 - sp:subject _:b4
105 ] [ sp:object _:b25 ; 99 ] [ sp:object _:b25 ;
100 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#periodRef> ;
101 + sp:subject _:b21
102 + ] [ sp:object _:b26 ;
106 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ; 103 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ;
107 - sp:subject _:b24 104 + sp:subject _:b25
108 ] [ sp:object _:b5 ; 105 ] [ sp:object _:b5 ;
109 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimStart> ; 106 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimStart> ;
110 - sp:subject _:b24 107 + sp:subject _:b25
111 ] [ sp:object _:b6 ; 108 ] [ sp:object _:b6 ;
112 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimEnd> ; 109 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimEnd> ;
113 - sp:subject _:b24 110 + sp:subject _:b25
114 ] [ rdf:type sp:Optional ; 111 ] [ rdf:type sp:Optional ;
115 - sp:elements ([ sp:object _:b26 ; 112 + sp:elements ([ sp:object _:b27 ;
116 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#volumeRef> ; 113 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#volumeRef> ;
117 - sp:subject _:b24 114 + sp:subject _:b25
118 - ] [ sp:object _:b10 ; 115 + ] [ sp:object _:b9 ;
119 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 116 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
120 - sp:subject _:b26 117 + sp:subject _:b27
121 - ] [ sp:object _:b27 ; 118 + ] [ sp:object _:b28 ;
122 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#uomRef> ; 119 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#uomRef> ;
123 - sp:subject _:b26 120 + sp:subject _:b27
124 ]) 121 ])
125 ] [ rdf:type sp:Optional ; 122 ] [ rdf:type sp:Optional ;
126 - sp:elements ([ sp:object _:b28 ; 123 + sp:elements ([ sp:object _:b29 ;
127 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#volumeStdRef> ; 124 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#volumeStdRef> ;
128 - sp:subject _:b24 125 + sp:subject _:b25
129 ] [ sp:object _:b13 ; 126 ] [ sp:object _:b13 ;
130 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 127 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
131 - sp:subject _:b28 128 + sp:subject _:b29
132 - ] [ sp:object _:b29 ; 129 + ] [ sp:object _:b30 ;
133 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#uomRef> ; 130 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#uomRef> ;
134 - sp:subject _:b28 131 + sp:subject _:b29
135 ]) 132 ])
136 ] [ rdf:type sp:Bind ; 133 ] [ rdf:type sp:Bind ;
137 sp:expression 134 sp:expression
138 [ rdf:type ep-spin-lib:normalizeString ; 135 [ rdf:type ep-spin-lib:normalizeString ;
139 - sp:arg1 _:b17 136 + sp:arg1 _:b18
140 ] ; 137 ] ;
141 - sp:variable _:b30 138 + sp:variable _:b31
142 ] [ rdf:type sp:Bind ; 139 ] [ rdf:type sp:Bind ;
143 sp:expression 140 sp:expression
144 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ; 141 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
145 - sp:arg1 _:b30 142 + sp:arg1 _:b31
146 ] ; 143 ] ;
147 sp:variable 144 sp:variable
148 [ sp:varName "productionFacility"^^xsd:string 145 [ sp:varName "productionFacility"^^xsd:string
...@@ -150,130 +147,127 @@ ...@@ -150,130 +147,127 @@
150 ] [ rdf:type sp:Bind ; 147 ] [ rdf:type sp:Bind ;
151 sp:expression 148 sp:expression
152 [ rdf:type ep-spin-lib:normalizeString ; 149 [ rdf:type ep-spin-lib:normalizeString ;
153 - sp:arg1 _:b19 150 + sp:arg1 _:b20
154 ] ; 151 ] ;
155 - sp:variable _:b31 152 + sp:variable _:b32
156 ] [ rdf:type sp:Bind ; 153 ] [ rdf:type sp:Bind ;
157 sp:expression 154 sp:expression
158 [ rdf:type ep-dpr-spin-lib:buildProductionFlowURI ; 155 [ rdf:type ep-dpr-spin-lib:buildProductionFlowURI ;
159 - sp:arg1 _:b31 156 + sp:arg1 _:b32
160 ] ; 157 ] ;
161 sp:variable 158 sp:variable
162 [ sp:varName "productionFlow"^^xsd:string 159 [ sp:varName "productionFlow"^^xsd:string
163 ] 160 ]
164 ] [ rdf:type sp:Bind ; 161 ] [ rdf:type sp:Bind ;
165 sp:expression 162 sp:expression
166 - [ rdf:type ep-spin-lib:normalizeString ;
167 - sp:arg1 [ sp:varName "productName"^^xsd:string
168 - ]
169 - ] ;
170 - sp:variable
171 - [ sp:varName "normalizedProductName"^^xsd:string
172 - ]
173 - ] [ rdf:type sp:Bind ;
174 - sp:expression
175 [ rdf:type ep-dpr-spin-lib:selectProductType ; 163 [ rdf:type ep-dpr-spin-lib:selectProductType ;
176 - sp:arg1 _:b21 164 + sp:arg1 _:b22
177 ] ; 165 ] ;
178 - sp:variable _:b23 166 + sp:variable _:b24
179 ] [ rdf:type sp:Bind ; 167 ] [ rdf:type sp:Bind ;
180 sp:expression 168 sp:expression
181 [ rdf:type ep-spin-lib:normalizeString ; 169 [ rdf:type ep-spin-lib:normalizeString ;
182 - sp:arg1 _:b22 170 + sp:arg1 _:b23
183 ] ; 171 ] ;
184 - sp:variable _:b32 172 + sp:variable _:b33
185 ] [ rdf:type sp:Bind ; 173 ] [ rdf:type sp:Bind ;
186 sp:expression 174 sp:expression
187 - [ rdf:type smf:deriveURI ; 175 + [ rdf:type ep-dpr-spin-lib:buildProductFlowURI ;
188 - sp:arg1 _:b20 ; 176 + sp:arg1 _:b32 ;
189 - sp:arg2 _:b32 177 + sp:arg2 _:b33
190 ] ; 178 ] ;
191 - sp:variable 179 + sp:variable _:b4
192 - [ sp:varName "productFlow"^^xsd:string
193 - ]
194 ] [ rdf:type sp:Bind ; 180 ] [ rdf:type sp:Bind ;
195 sp:expression 181 sp:expression
196 [ rdf:type ep-dpr-spin-lib:selectRelationshipToMeasure ; 182 [ rdf:type ep-dpr-spin-lib:selectRelationshipToMeasure ;
197 - sp:arg1 _:b25 183 + sp:arg1 _:b26
198 ] ; 184 ] ;
199 sp:variable _:b8 185 sp:variable _:b8
200 ] [ rdf:type sp:Bind ; 186 ] [ rdf:type sp:Bind ;
201 sp:expression 187 sp:expression
202 [ rdf:type ep-dpr-spin-lib:selectTemporalPartOfAFlowDurationType ; 188 [ rdf:type ep-dpr-spin-lib:selectTemporalPartOfAFlowDurationType ;
203 - sp:arg1 _:b25 189 + sp:arg1 _:b26
204 ] ; 190 ] ;
205 sp:variable _:b3 191 sp:variable _:b3
206 ] [ rdf:type sp:Bind ; 192 ] [ rdf:type sp:Bind ;
207 sp:expression 193 sp:expression
208 [ rdf:type ep-dpr-spin-lib:selectVolumeAtStandardTemperaturePressureType ; 194 [ rdf:type ep-dpr-spin-lib:selectVolumeAtStandardTemperaturePressureType ;
209 - sp:arg1 _:b14 195 + sp:arg1 _:b15
210 ] ; 196 ] ;
211 sp:variable _:b12 197 sp:variable _:b12
212 ] [ rdf:type sp:Bind ; 198 ] [ rdf:type sp:Bind ;
213 sp:expression 199 sp:expression
214 [ rdf:type ep-dpr-spin-lib:selectVolumeScale ; 200 [ rdf:type ep-dpr-spin-lib:selectVolumeScale ;
215 - sp:arg1 _:b27 201 + sp:arg1 _:b28
216 ] ; 202 ] ;
217 - sp:variable 203 + sp:variable _:b10
218 - [ sp:varName "volumeScale"^^xsd:string
219 - ]
220 ] [ rdf:type sp:Bind ; 204 ] [ rdf:type sp:Bind ;
221 sp:expression 205 sp:expression
222 [ rdf:type ep-dpr-spin-lib:selectVolumeScale ; 206 [ rdf:type ep-dpr-spin-lib:selectVolumeScale ;
223 - sp:arg1 _:b29 207 + sp:arg1 _:b30
224 ] ; 208 ] ;
225 - sp:variable 209 + sp:variable _:b14
226 - [ sp:varName "volumeScaleStd"^^xsd:string
227 - ]
228 ]) 210 ])
229 ] ; 211 ] ;
230 spin:rule 212 spin:rule
231 [ rdf:type sp:Construct ; 213 [ rdf:type sp:Construct ;
232 - rdfs:comment "STEP 20104 record the product flows"^^xsd:string ; 214 + rdfs:comment """STEP 20104 record the product flows
233 - sp:templates ([ sp:object _:b33 ; 215 +namingSystem not processed"""^^xsd:string ;
216 + sp:templates ([ sp:object _:b34 ;
234 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 217 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
235 - sp:subject _:b34 218 + sp:subject _:b35
236 ] [ sp:object <http://www.reportinghub.no/ep/schema/flow#FlowOfMaterial> ; 219 ] [ sp:object <http://www.reportinghub.no/ep/schema/flow#FlowOfMaterial> ;
237 sp:predicate rdf:type ; 220 sp:predicate rdf:type ;
238 - sp:subject _:b33 221 + sp:subject _:b34
239 - ] [ sp:object _:b35 ; 222 + ] [ sp:object _:b36 ;
240 sp:predicate rdf:type ; 223 sp:predicate rdf:type ;
241 - sp:subject _:b33 224 + sp:subject _:b34
225 + ] [ sp:object _:b37 ;
226 + sp:predicate rdfs:label ;
227 + sp:subject _:b34
242 ]) ; 228 ]) ;
243 - sp:where ([ sp:object _:b36 ; 229 + sp:where ([ sp:object _:b38 ;
244 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ; 230 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ;
245 sp:subject spin:_this 231 sp:subject spin:_this
246 - ] [ sp:object _:b37 ;
247 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
248 - sp:subject _:b36
249 - ] [ sp:object _:b38 ;
250 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
251 - sp:subject _:b37
252 ] [ sp:object _:b39 ; 232 ] [ sp:object _:b39 ;
253 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#flowRef> ; 233 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
254 - sp:subject _:b36 234 + sp:subject _:b38
255 ] [ sp:object _:b40 ; 235 ] [ sp:object _:b40 ;
256 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ; 236 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
257 sp:subject _:b39 237 sp:subject _:b39
258 ] [ sp:object _:b41 ; 238 ] [ sp:object _:b41 ;
259 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#productRef> ; 239 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#flowRef> ;
260 - sp:subject _:b42 240 + sp:subject _:b38
241 + ] [ sp:object _:b42 ;
242 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ;
243 + sp:subject _:b41
261 ] [ sp:object _:b43 ; 244 ] [ sp:object _:b43 ;
262 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ; 245 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#productRef> ;
263 sp:subject _:b41 246 sp:subject _:b41
264 ] [ sp:object _:b44 ; 247 ] [ sp:object _:b44 ;
248 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ;
249 + sp:subject _:b43
250 + ] [ sp:object _:b45 ;
265 sp:predicate rdfs:label ; 251 sp:predicate rdfs:label ;
266 - sp:subject _:b35 252 + sp:subject _:b36
253 + ] [ rdf:type sp:Optional ;
254 + sp:elements ([ sp:object _:b46 ;
255 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
256 + sp:subject _:b43
257 + ] [ sp:object _:b37 ;
258 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
259 + sp:subject _:b46
260 + ])
267 ] [ rdf:type sp:Bind ; 261 ] [ rdf:type sp:Bind ;
268 sp:expression 262 sp:expression
269 [ rdf:type ep-spin-lib:normalizeString ; 263 [ rdf:type ep-spin-lib:normalizeString ;
270 - sp:arg1 _:b38 264 + sp:arg1 _:b40
271 ] ; 265 ] ;
272 - sp:variable _:b45 266 + sp:variable _:b47
273 ] [ rdf:type sp:Bind ; 267 ] [ rdf:type sp:Bind ;
274 sp:expression 268 sp:expression
275 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ; 269 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
276 - sp:arg1 _:b45 270 + sp:arg1 _:b47
277 ] ; 271 ] ;
278 sp:variable 272 sp:variable
279 [ sp:varName "productionFacility"^^xsd:string 273 [ sp:varName "productionFacility"^^xsd:string
...@@ -281,223 +275,215 @@ ...@@ -281,223 +275,215 @@
281 ] [ rdf:type sp:Bind ; 275 ] [ rdf:type sp:Bind ;
282 sp:expression 276 sp:expression
283 [ rdf:type ep-spin-lib:normalizeString ; 277 [ rdf:type ep-spin-lib:normalizeString ;
284 - sp:arg1 _:b40 278 + sp:arg1 _:b42
285 ] ; 279 ] ;
286 - sp:variable _:b46 280 + sp:variable _:b48
287 ] [ rdf:type sp:Bind ; 281 ] [ rdf:type sp:Bind ;
288 sp:expression 282 sp:expression
289 [ rdf:type ep-dpr-spin-lib:buildProductionFlowURI ; 283 [ rdf:type ep-dpr-spin-lib:buildProductionFlowURI ;
290 - sp:arg1 _:b46 284 + sp:arg1 _:b48
291 - ] ;
292 - sp:variable _:b34
293 - ] [ rdf:type sp:Bind ;
294 - sp:expression
295 - [ rdf:type ep-spin-lib:normalizeString ;
296 - sp:arg1 [ sp:varName "productName"^^xsd:string
297 - ]
298 - ] ;
299 - sp:variable
300 - [ sp:varName "normalizedProductName"^^xsd:string
301 - ]
302 - ] [ rdf:type sp:Bind ;
303 - sp:expression
304 - [ rdf:type ep-dpr-spin-lib:selectProductType ;
305 - sp:arg1 _:b43
306 ] ; 285 ] ;
307 sp:variable _:b35 286 sp:variable _:b35
308 ] [ rdf:type sp:Bind ; 287 ] [ rdf:type sp:Bind ;
309 sp:expression 288 sp:expression
310 - [ rdf:type ep-spin-lib:normalizeString ; 289 + [ rdf:type ep-dpr-spin-lib:selectProductType ;
311 sp:arg1 _:b44 290 sp:arg1 _:b44
312 ] ; 291 ] ;
313 - sp:variable _:b47 292 + sp:variable _:b36
314 - ] [ rdf:type sp:Bind ;
315 - sp:expression
316 - [ rdf:type smf:deriveURI ;
317 - sp:arg1 _:b42 ;
318 - sp:arg2 _:b47
319 - ] ;
320 - sp:variable _:b33
321 - ])
322 - ] ;
323 - spin:rule
324 - [ rdf:type sp:Construct ;
325 - rdfs:comment """STEP 20102 Record the Facility that has the flows
326 -Nothing is done with the namingSystem!"""^^xsd:string ;
327 - sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/facility#ProductionFacility> ;
328 - sp:predicate rdf:type ;
329 - sp:subject _:b48
330 - ] [ sp:object _:b49 ;
331 - sp:predicate rdf:type ;
332 - sp:subject _:b48
333 - ] [ sp:object _:b50 ;
334 - sp:predicate rdfs:label ;
335 - sp:subject _:b48
336 - ]) ;
337 - sp:where ([ sp:object _:b51 ;
338 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ;
339 - sp:subject spin:_this
340 - ] [ sp:object _:b52 ;
341 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
342 - sp:subject _:b51
343 - ] [ sp:object _:b50 ;
344 - sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
345 - sp:subject _:b52
346 - ] [ rdf:type sp:Optional ;
347 - sp:elements ([ sp:object
348 - [ sp:varName "facilityNamingSystem"^^xsd:string
349 - ] ;
350 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#namingSystem> ;
351 - sp:subject _:b52
352 - ])
353 - ] [ rdf:type sp:Optional ;
354 - sp:elements ([ sp:object _:b53 ;
355 - sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ;
356 - sp:subject _:b52
357 - ])
358 ] [ rdf:type sp:Bind ; 293 ] [ rdf:type sp:Bind ;
359 sp:expression 294 sp:expression
360 [ rdf:type ep-spin-lib:normalizeString ; 295 [ rdf:type ep-spin-lib:normalizeString ;
361 - sp:arg1 _:b50 296 + sp:arg1 _:b45
362 - ] ;
363 - sp:variable _:b54
364 - ] [ rdf:type sp:Bind ;
365 - sp:expression
366 - [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
367 - sp:arg1 _:b54
368 ] ; 297 ] ;
369 - sp:variable _:b48 298 + sp:variable _:b49
370 ] [ rdf:type sp:Bind ; 299 ] [ rdf:type sp:Bind ;
371 sp:expression 300 sp:expression
372 - [ rdf:type ep-dpr-spin-lib:selectProductionFacilityType ; 301 + [ rdf:type ep-dpr-spin-lib:buildProductFlowURI ;
373 - sp:arg1 _:b53 302 + sp:arg1 _:b48 ;
303 + sp:arg2 _:b49
374 ] ; 304 ] ;
375 - sp:variable _:b49 305 + sp:variable _:b34
376 ]) 306 ])
377 ] ; 307 ] ;
378 spin:rule 308 spin:rule
379 [ rdf:type sp:Construct ; 309 [ rdf:type sp:Construct ;
380 rdfs:comment """STEP 20103 record the flows 310 rdfs:comment """STEP 20103 record the flows
381 nothing is done with flowDirection"""^^xsd:string ; 311 nothing is done with flowDirection"""^^xsd:string ;
382 - sp:templates ([ sp:object _:b55 ; 312 + sp:templates ([ sp:object _:b50 ;
383 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ; 313 sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
384 - sp:subject _:b56 314 + sp:subject _:b51
385 ] [ sp:object <http://www.reportinghub.no/ep/schema/flow#ProductionFlow> ; 315 ] [ sp:object <http://www.reportinghub.no/ep/schema/flow#ProductionFlow> ;
386 sp:predicate rdf:type ; 316 sp:predicate rdf:type ;
387 - sp:subject _:b55 317 + sp:subject _:b50
388 - ] [ sp:object _:b57 ; 318 + ] [ sp:object _:b52 ;
389 sp:predicate rdf:type ; 319 sp:predicate rdf:type ;
390 - sp:subject _:b55 320 + sp:subject _:b50
391 - ] [ sp:object _:b58 ; 321 + ] [ sp:object _:b53 ;
392 sp:predicate rdf:type ; 322 sp:predicate rdf:type ;
393 - sp:subject _:b55 323 + sp:subject _:b50
394 - ] [ sp:object _:b59 ; 324 + ] [ sp:object _:b54 ;
395 sp:predicate rdfs:label ; 325 sp:predicate rdfs:label ;
396 - sp:subject _:b55 326 + sp:subject _:b50
397 ]) ; 327 ]) ;
398 - sp:where ([ sp:object _:b60 ; 328 + sp:where ([ sp:object _:b55 ;
399 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ; 329 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ;
400 sp:subject spin:_this 330 sp:subject spin:_this
401 - ] [ sp:object _:b61 ; 331 + ] [ sp:object _:b56 ;
402 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ; 332 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
403 - sp:subject _:b60 333 + sp:subject _:b55
404 - ] [ sp:object _:b62 ; 334 + ] [ sp:object _:b57 ;
405 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ; 335 sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
406 - sp:subject _:b61 336 + sp:subject _:b56
407 - ] [ sp:object _:b63 ; 337 + ] [ sp:object _:b58 ;
408 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#flowRef> ; 338 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#flowRef> ;
409 - sp:subject _:b60 339 + sp:subject _:b55
410 - ] [ sp:object _:b59 ; 340 + ] [ sp:object _:b54 ;
411 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ; 341 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ;
412 - sp:subject _:b63 342 + sp:subject _:b58
413 - ] [ sp:object _:b64 ; 343 + ] [ sp:object _:b59 ;
414 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ; 344 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ;
415 - sp:subject _:b63 345 + sp:subject _:b58
416 ] [ rdf:type sp:Optional ; 346 ] [ rdf:type sp:Optional ;
417 sp:elements ([ sp:object 347 sp:elements ([ sp:object
418 [ sp:varName "flowDirection"^^xsd:string 348 [ sp:varName "flowDirection"^^xsd:string
419 ] ; 349 ] ;
420 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#directionRef> ; 350 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#directionRef> ;
421 - sp:subject _:b63 351 + sp:subject _:b58
422 ]) 352 ])
423 ] [ rdf:type sp:Optional ; 353 ] [ rdf:type sp:Optional ;
424 sp:elements ([ sp:object 354 sp:elements ([ sp:object
425 [ sp:varName "flowQualifier"^^xsd:string 355 [ sp:varName "flowQualifier"^^xsd:string
426 ] ; 356 ] ;
427 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#qualifierRef> ; 357 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#qualifierRef> ;
428 - sp:subject _:b63 358 + sp:subject _:b58
429 ]) 359 ])
430 ] [ rdf:type sp:Bind ; 360 ] [ rdf:type sp:Bind ;
431 sp:expression 361 sp:expression
432 [ rdf:type ep-spin-lib:normalizeString ; 362 [ rdf:type ep-spin-lib:normalizeString ;
433 - sp:arg1 _:b62 363 + sp:arg1 _:b57
434 ] ; 364 ] ;
435 - sp:variable _:b65 365 + sp:variable _:b60
436 ] [ rdf:type sp:Bind ; 366 ] [ rdf:type sp:Bind ;
437 sp:expression 367 sp:expression
438 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ; 368 [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
439 - sp:arg1 _:b65 369 + sp:arg1 _:b60
440 ] ; 370 ] ;
441 - sp:variable _:b56 371 + sp:variable _:b51
442 ] [ rdf:type sp:Bind ; 372 ] [ rdf:type sp:Bind ;
443 sp:expression 373 sp:expression
444 [ rdf:type ep-spin-lib:normalizeString ; 374 [ rdf:type ep-spin-lib:normalizeString ;
445 - sp:arg1 _:b59 375 + sp:arg1 _:b54
446 ] ; 376 ] ;
447 - sp:variable _:b66 377 + sp:variable _:b61
448 ] [ rdf:type sp:Bind ; 378 ] [ rdf:type sp:Bind ;
449 sp:expression 379 sp:expression
450 [ rdf:type ep-dpr-spin-lib:buildProductionFlowURI ; 380 [ rdf:type ep-dpr-spin-lib:buildProductionFlowURI ;
451 - sp:arg1 _:b66 381 + sp:arg1 _:b61
452 ] ; 382 ] ;
453 - sp:variable _:b55 383 + sp:variable _:b50
454 ] [ rdf:type sp:Bind ; 384 ] [ rdf:type sp:Bind ;
455 sp:expression 385 sp:expression
456 [ rdf:type ep-dpr-spin-lib:selectProductionFlowPurposeType ; 386 [ rdf:type ep-dpr-spin-lib:selectProductionFlowPurposeType ;
457 - sp:arg1 _:b64 387 + sp:arg1 _:b59
458 ] ; 388 ] ;
459 - sp:variable _:b57 389 + sp:variable _:b52
460 ] [ rdf:type sp:Bind ; 390 ] [ rdf:type sp:Bind ;
461 sp:expression 391 sp:expression
462 [ rdf:type ep-dpr-spin-lib:selectProductionFlowDefinitionType ; 392 [ rdf:type ep-dpr-spin-lib:selectProductionFlowDefinitionType ;
463 - sp:arg1 _:b64 393 + sp:arg1 _:b59
464 ] ; 394 ] ;
465 - sp:variable _:b58 395 + sp:variable _:b53
466 ]) 396 ])
467 ] ; 397 ] ;
468 spin:rule 398 spin:rule
469 [ rdf:type sp:Construct ; 399 [ rdf:type sp:Construct ;
470 - rdfs:comment "STEP 20101a Record the Temporal part of the flows for the day"^^xsd:string ; 400 + rdfs:comment """STEP 20101a Record the Temporal part of the flows for the day
401 +"""^^xsd:string ;
471 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/flow#TemporalPartOfAFlow> ; 402 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/flow#TemporalPartOfAFlow> ;
472 sp:predicate rdf:type ; 403 sp:predicate rdf:type ;
473 - sp:subject _:b67 404 + sp:subject _:b62
474 ] [ sp:object spin:_this ; 405 ] [ sp:object spin:_this ;
475 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 406 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
476 - sp:subject _:b67 407 + sp:subject _:b62
477 ]) ; 408 ]) ;
478 - sp:where ([ sp:object _:b68 ; 409 + sp:where ([ sp:object _:b63 ;
479 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ; 410 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ;
480 sp:subject spin:_this 411 sp:subject spin:_this
481 - ] [ sp:object _:b69 ; 412 + ] [ sp:object _:b64 ;
482 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimStart> ; 413 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimStart> ;
483 sp:subject spin:_this 414 sp:subject spin:_this
484 - ] [ sp:object _:b70 ; 415 + ] [ sp:object _:b65 ;
485 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimStart> ; 416 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dTimStart> ;
486 sp:subject spin:_this 417 sp:subject spin:_this
487 ] [ rdf:type sp:Bind ; 418 ] [ rdf:type sp:Bind ;
488 sp:expression 419 sp:expression
489 [ rdf:type ep-spin-lib:normalizeString ; 420 [ rdf:type ep-spin-lib:normalizeString ;
490 - sp:arg1 _:b68 421 + sp:arg1 _:b63
491 ] ; 422 ] ;
492 - sp:variable _:b71 423 + sp:variable _:b66
493 ] [ rdf:type sp:Bind ; 424 ] [ rdf:type sp:Bind ;
494 sp:expression 425 sp:expression
495 [ rdf:type ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI ; 426 [ rdf:type ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI ;
496 - sp:arg1 _:b71 ; 427 + sp:arg1 _:b66 ;
497 - sp:arg2 _:b69 ; 428 + sp:arg2 _:b64 ;
498 - sp:arg3 _:b70 429 + sp:arg3 _:b65
430 + ] ;
431 + sp:variable _:b62
432 + ])
433 + ] ;
434 + spin:rule
435 + [ rdf:type sp:Construct ;
436 + rdfs:comment """STEP 20102 Record the Facility that has the flows
437 +Nothing is done with the namingSystem!"""^^xsd:string ;
438 + sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/facility#ProductionFacility> ;
439 + sp:predicate rdf:type ;
440 + sp:subject _:b67
441 + ] [ sp:object _:b68 ;
442 + sp:predicate rdf:type ;
443 + sp:subject _:b67
444 + ] [ sp:object _:b69 ;
445 + sp:predicate rdfs:label ;
446 + sp:subject _:b67
447 + ]) ;
448 + sp:where ([ sp:object _:b70 ;
449 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#facilityRef> ;
450 + sp:subject spin:_this
451 + ] [ sp:object _:b71 ;
452 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#nameRef> ;
453 + sp:subject _:b70
454 + ] [ sp:object _:b69 ;
455 + sp:predicate <http://www.linkedmodel.org/schema/dtype#value> ;
456 + sp:subject _:b71
457 + ] [ rdf:type sp:Optional ;
458 + sp:elements ([ sp:object
459 + [ sp:varName "facilityNamingSystem"^^xsd:string
460 + ] ;
461 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#namingSystem> ;
462 + sp:subject _:b71
463 + ])
464 + ] [ rdf:type sp:Optional ;
465 + sp:elements ([ sp:object _:b72 ;
466 + sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#kindRef> ;
467 + sp:subject _:b71
468 + ])
469 + ] [ rdf:type sp:Bind ;
470 + sp:expression
471 + [ rdf:type ep-spin-lib:normalizeString ;
472 + sp:arg1 _:b69
473 + ] ;
474 + sp:variable _:b73
475 + ] [ rdf:type sp:Bind ;
476 + sp:expression
477 + [ rdf:type ep-dpr-spin-lib:buildProductionFacilityURI ;
478 + sp:arg1 _:b73
499 ] ; 479 ] ;
500 sp:variable _:b67 480 sp:variable _:b67
481 + ] [ rdf:type sp:Bind ;
482 + sp:expression
483 + [ rdf:type ep-dpr-spin-lib:selectProductionFacilityType ;
484 + sp:arg1 _:b72
485 + ] ;
486 + sp:variable _:b68
501 ]) 487 ])
502 ] ; 488 ] ;
503 spin:rule 489 spin:rule
...@@ -505,34 +491,34 @@ nothing is done with flowDirection"""^^xsd:string ; ...@@ -505,34 +491,34 @@ nothing is done with flowDirection"""^^xsd:string ;
505 rdfs:comment "STEP 20101b Record the Temporal part of the flows for the day"^^xsd:string ; 491 rdfs:comment "STEP 20101b Record the Temporal part of the flows for the day"^^xsd:string ;
506 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/flow#TemporalPartOfAFlow> ; 492 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/flow#TemporalPartOfAFlow> ;
507 sp:predicate rdf:type ; 493 sp:predicate rdf:type ;
508 - sp:subject _:b72 494 + sp:subject _:b74
509 ] [ sp:object spin:_this ; 495 ] [ sp:object spin:_this ;
510 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 496 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
511 - sp:subject _:b72 497 + sp:subject _:b74
512 ]) ; 498 ]) ;
513 - sp:where ([ sp:object _:b73 ; 499 + sp:where ([ sp:object _:b75 ;
514 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ; 500 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#name> ;
515 sp:subject spin:_this 501 sp:subject spin:_this
516 - ] [ sp:object _:b74 ; 502 + ] [ sp:object _:b76 ;
517 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dateStart> ; 503 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dateStart> ;
518 sp:subject spin:_this 504 sp:subject spin:_this
519 - ] [ sp:object _:b75 ; 505 + ] [ sp:object _:b77 ;
520 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dateStart> ; 506 sp:predicate <http://www.witsml.org/schemas/131/addendum/combo#dateStart> ;
521 sp:subject spin:_this 507 sp:subject spin:_this
522 ] [ rdf:type sp:Bind ; 508 ] [ rdf:type sp:Bind ;
523 sp:expression 509 sp:expression
524 [ rdf:type ep-spin-lib:normalizeString ; 510 [ rdf:type ep-spin-lib:normalizeString ;
525 - sp:arg1 _:b73 511 + sp:arg1 _:b75
526 ] ; 512 ] ;
527 - sp:variable _:b76 513 + sp:variable _:b78
528 ] [ rdf:type sp:Bind ; 514 ] [ rdf:type sp:Bind ;
529 sp:expression 515 sp:expression
530 [ rdf:type ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI ; 516 [ rdf:type ep-dpr-spin-lib:buildProductionFlowsForAPeriodURI ;
531 - sp:arg1 _:b76 ; 517 + sp:arg1 _:b78 ;
532 - sp:arg2 _:b74 ; 518 + sp:arg2 _:b76 ;
533 - sp:arg3 _:b75 519 + sp:arg3 _:b77
534 ] ; 520 ] ;
535 - sp:variable _:b72 521 + sp:variable _:b74
536 ]) 522 ])
537 ] ; 523 ] ;
538 spin:rule 524 spin:rule
...@@ -541,7 +527,7 @@ nothing is done with flowDirection"""^^xsd:string ; ...@@ -541,7 +527,7 @@ nothing is done with flowDirection"""^^xsd:string ;
541 kind and periodKind are not yet processed"""^^xsd:string ; 527 kind and periodKind are not yet processed"""^^xsd:string ;
542 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/flow#TemporalPartOfAFlow> ; 528 sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/flow#TemporalPartOfAFlow> ;
543 sp:predicate rdf:type ; 529 sp:predicate rdf:type ;
544 - sp:subject _:b77 530 + sp:subject _:b79
545 ]) ; 531 ]) ;
546 sp:where ([ sp:object 532 sp:where ([ sp:object
547 [ sp:varName "kind"^^xsd:string 533 [ sp:varName "kind"^^xsd:string
...@@ -560,219 +546,227 @@ kind and periodKind are not yet processed"""^^xsd:string ; ...@@ -560,219 +546,227 @@ kind and periodKind are not yet processed"""^^xsd:string ;
560 sp:subject spin:_this 546 sp:subject spin:_this
561 ] [ sp:object spin:_this ; 547 ] [ sp:object spin:_this ;
562 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ; 548 sp:predicate <http://www.reportinghub.no/ep/schema/core#derivedFrom> ;
563 - sp:subject _:b77 549 + sp:subject _:b79
564 ]) 550 ])
565 ] . 551 ] .
566 552
567 -_:b58 553 +_:b53
568 sp:varName "productionFlowDefinitionType"^^xsd:string . 554 sp:varName "productionFlowDefinitionType"^^xsd:string .
569 555
570 -_:b57 556 +_:b52
571 sp:varName "productionFlowPurposeType"^^xsd:string . 557 sp:varName "productionFlowPurposeType"^^xsd:string .
572 558
573 -_:b55 559 +_:b50
574 sp:varName "productionFlow"^^xsd:string . 560 sp:varName "productionFlow"^^xsd:string .
575 561
576 -_:b66 562 +_:b61
577 sp:varName "normalizedFlowName"^^xsd:string . 563 sp:varName "normalizedFlowName"^^xsd:string .
578 564
579 -_:b56 565 +_:b51
580 sp:varName "productionFacility"^^xsd:string . 566 sp:varName "productionFacility"^^xsd:string .
581 567
582 -_:b65 568 +_:b60
583 sp:varName "normalizedFacilityName"^^xsd:string . 569 sp:varName "normalizedFacilityName"^^xsd:string .
584 570
585 -_:b64 571 +_:b59
586 sp:varName "flowKind"^^xsd:string . 572 sp:varName "flowKind"^^xsd:string .
587 573
588 -_:b59 574 +_:b54
589 sp:varName "flowName"^^xsd:string . 575 sp:varName "flowName"^^xsd:string .
590 576
591 -_:b63 577 +_:b58
592 sp:varName "flowRef"^^xsd:string . 578 sp:varName "flowRef"^^xsd:string .
593 579
594 -_:b62 580 +_:b57
595 sp:varName "facilityName"^^xsd:string . 581 sp:varName "facilityName"^^xsd:string .
596 582
597 -_:b61 583 +_:b56
598 sp:varName "facilityNameRef"^^xsd:string . 584 sp:varName "facilityNameRef"^^xsd:string .
599 585
600 -_:b60 586 +_:b55
601 sp:varName "facilityRef"^^xsd:string . 587 sp:varName "facilityRef"^^xsd:string .
602 588
603 -_:b33 589 +_:b62
604 - sp:varName "productFlow"^^xsd:string . 590 + sp:varName "productionFlowsForAPeriod"^^xsd:string .
605 591
606 -_:b47 592 +_:b66
607 - sp:varName "normalizedProductTypeName"^^xsd:string . 593 + sp:varName "normalizedProductionFlowsName"^^xsd:string .
608 594
609 -_:b34 595 +_:b65
610 - sp:varName "productionFlow"^^xsd:string . 596 + sp:varName "dTimEnd"^^xsd:string .
611 597
612 -_:b46 598 +_:b64
613 - sp:varName "normalizedFlowName"^^xsd:string . 599 + sp:varName "dTimStart"^^xsd:string .
614 600
615 -_:b45 601 +_:b63
616 - sp:varName "normalizedFacilityName"^^xsd:string . 602 + sp:varName "productionFlowsName"^^xsd:string .
617 603
618 -_:b44 604 +_:b79
619 - sp:varName "productTypeName"^^xsd:string . 605 + sp:varName "productionFlowsForAPeriod"^^xsd:string .
620 606
621 -_:b35 607 +_:b78
622 - sp:varName "productType"^^xsd:string . 608 + sp:varName "normalizedProductionFlowsName"^^xsd:string .
623 609
624 -_:b43 610 +_:b77
625 - sp:varName "productKind"^^xsd:string . 611 + sp:varName "dateEnd"^^xsd:string .
626 612
627 -_:b41 613 +_:b76
628 - sp:varName "product"^^xsd:string . 614 + sp:varName "dateStart"^^xsd:string .
629 615
630 -_:b42 616 +_:b75
631 - sp:varName "flow"^^xsd:string . 617 + sp:varName "productionFlowsName"^^xsd:string .
632 618
633 -_:b40 619 +_:b74
634 - sp:varName "flowName"^^xsd:string . 620 + sp:varName "productionFlowsForAPeriod"^^xsd:string .
635 621
636 -_:b39 622 +_:b73
637 - sp:varName "flowRef"^^xsd:string . 623 + sp:varName "normalizedFacilityName"^^xsd:string .
638 624
639 -_:b38 625 +_:b72
640 - sp:varName "facilityName"^^xsd:string . 626 + sp:varName "facilityKind"^^xsd:string .
641 627
642 -_:b37 628 +_:b71
643 sp:varName "facilityNameRef"^^xsd:string . 629 sp:varName "facilityNameRef"^^xsd:string .
644 630
645 -_:b36 631 +_:b70
646 sp:varName "facilityRef"^^xsd:string . 632 sp:varName "facilityRef"^^xsd:string .
647 633
648 -_:b54 634 +_:b69
649 - sp:varName "normalizedFacilityName"^^xsd:string . 635 + sp:varName "facilityName"^^xsd:string .
650 636
651 -_:b53 637 +_:b68
652 - sp:varName "facilityKind"^^xsd:string . 638 + sp:varName "productionFacilityType"^^xsd:string .
653 639
654 -_:b52 640 +_:b67
655 - sp:varName "facilityNameRef"^^xsd:string . 641 + sp:varName "productionFacility"^^xsd:string .
656 642
657 -_:b51 643 +_:b2 sp:varName "productionFlowsForAPeriod"^^xsd:string .
644 +
645 +_:b15
646 + sp:varName "standardTempPres"^^xsd:string .
647 +
648 +_:b16
658 sp:varName "facilityRef"^^xsd:string . 649 sp:varName "facilityRef"^^xsd:string .
659 650
660 -_:b50 651 +_:b17
652 + sp:varName "facilityNameRef"^^xsd:string .
653 +
654 +_:b18
661 sp:varName "facilityName"^^xsd:string . 655 sp:varName "facilityName"^^xsd:string .
662 656
663 -_:b49 657 +_:b19
664 - sp:varName "productionFacilityType"^^xsd:string . 658 + sp:varName "flowRef"^^xsd:string .
665 659
666 -_:b48 660 +_:b20
667 - sp:varName "productionFacility"^^xsd:string . 661 + sp:varName "flowName"^^xsd:string .
668 662
669 -_:b71 663 +_:b21
670 - sp:varName "normalizedProductionFlowsName"^^xsd:string . 664 + sp:varName "productRef"^^xsd:string .
671 665
672 -_:b70 666 +_:b22
673 - sp:varName "dTimEnd"^^xsd:string . 667 + sp:varName "productKind"^^xsd:string .
674 668
675 -_:b69 669 +_:b24
676 - sp:varName "dTimStart"^^xsd:string . 670 + sp:varName "productType"^^xsd:string .
677 671
678 -_:b68 672 +_:b23
679 - sp:varName "productionFlowsName"^^xsd:string . 673 + sp:varName "productTypeName"^^xsd:string .
680 674
681 -_:b67 675 +_:b25
682 - sp:varName "productionFlowsForAPeriod"^^xsd:string . 676 + sp:varName "periodRef"^^xsd:string .
683 677
684 -_:b76 678 +_:b26
685 - sp:varName "normalizedProductionFlowsName"^^xsd:string . 679 + sp:varName "periodKind"^^xsd:string .
686 680
687 -_:b75 681 +_:b5 sp:varName "startTime"^^xsd:string .
688 - sp:varName "dateEnd"^^xsd:string .
689 682
690 -_:b74 683 +_:b6 sp:varName "endTime"^^xsd:string .
691 - sp:varName "dateStart"^^xsd:string .
692 684
693 -_:b73 685 +_:b27
694 - sp:varName "productionFlowsName"^^xsd:string . 686 + sp:varName "volumeRef"^^xsd:string .
695 687
696 -_:b72 688 +_:b9 sp:varName "realVolume"^^xsd:string .
697 - sp:varName "productionFlowsForAPeriod"^^xsd:string .
698 689
699 -_:b77 690 +_:b28
700 - sp:varName "productionFlowsForAPeriod"^^xsd:string . 691 + sp:varName "uomVolume"^^xsd:string .
692 +
693 +_:b29
694 + sp:varName "volumeStdRef"^^xsd:string .
695 +
696 +_:b13
697 + sp:varName "realVolumeStd"^^xsd:string .
701 698
702 _:b30 699 _:b30
703 - sp:varName "normalizedFacilityName"^^xsd:string . 700 + sp:varName "uomVolumeStd"^^xsd:string .
704 701
705 _:b31 702 _:b31
706 - sp:varName "normalizedFlowName"^^xsd:string . 703 + sp:varName "normalizedFacilityName"^^xsd:string .
707 704
708 _:b32 705 _:b32
706 + sp:varName "normalizedFlowName"^^xsd:string .
707 +
708 +_:b33
709 sp:varName "normalizedProductTypeName"^^xsd:string . 709 sp:varName "normalizedProductTypeName"^^xsd:string .
710 710
711 +_:b4 sp:varName "productFlow"^^xsd:string .
712 +
711 _:b8 sp:varName "relationshipToMeasure"^^xsd:string . 713 _:b8 sp:varName "relationshipToMeasure"^^xsd:string .
712 714
713 _:b3 sp:varName "temporalPartOfAFlowDurationType"^^xsd:string . 715 _:b3 sp:varName "temporalPartOfAFlowDurationType"^^xsd:string .
714 716
715 _:b12 717 _:b12
716 - sp:varName "volumeAtStdType"^^xsd:string . 718 + sp:varName "volumeStdType"^^xsd:string .
717 719
718 -_:b2 sp:varName "productionFlowsForAPeriod"^^xsd:string . 720 +_:b10
721 + sp:varName "volumeScale"^^xsd:string .
719 722
720 _:b14 723 _:b14
721 - sp:varName "standardTempPres"^^xsd:string . 724 + sp:varName "volumeStdScale"^^xsd:string .
722 725
723 -_:b15 726 +_:b38
724 sp:varName "facilityRef"^^xsd:string . 727 sp:varName "facilityRef"^^xsd:string .
725 728
726 -_:b16 729 +_:b39
727 sp:varName "facilityNameRef"^^xsd:string . 730 sp:varName "facilityNameRef"^^xsd:string .
728 731
729 -_:b17 732 +_:b40
730 sp:varName "facilityName"^^xsd:string . 733 sp:varName "facilityName"^^xsd:string .
731 734
732 -_:b18 735 +_:b41
733 sp:varName "flowRef"^^xsd:string . 736 sp:varName "flowRef"^^xsd:string .
734 737
735 -_:b19 738 +_:b42
736 sp:varName "flowName"^^xsd:string . 739 sp:varName "flowName"^^xsd:string .
737 740
738 -_:b20 741 +_:b43
739 - sp:varName "flow"^^xsd:string . 742 + sp:varName "productRef"^^xsd:string .
740 -
741 -_:b4 sp:varName "product"^^xsd:string .
742 743
743 -_:b21 744 +_:b44
744 sp:varName "productKind"^^xsd:string . 745 sp:varName "productKind"^^xsd:string .
745 746
746 -_:b23 747 +_:b36
747 sp:varName "productType"^^xsd:string . 748 sp:varName "productType"^^xsd:string .
748 749
749 -_:b22 750 +_:b45
750 sp:varName "productTypeName"^^xsd:string . 751 sp:varName "productTypeName"^^xsd:string .
751 752
752 -_:b24 753 +_:b46
753 - sp:varName "period"^^xsd:string . 754 + sp:varName "productNameRef"^^xsd:string .
754 -
755 -_:b25
756 - sp:varName "periodKind"^^xsd:string .
757 -
758 -_:b5 sp:varName "startTime"^^xsd:string .
759 -
760 -_:b6 sp:varName "endTime"^^xsd:string .
761 755
762 -_:b26 756 +_:b37
763 - sp:varName "volumeRef"^^xsd:string . 757 + sp:varName "productFlowName"^^xsd:string .
764 758
765 -_:b10 759 +_:b47
766 - sp:varName "realVolume"^^xsd:string . 760 + sp:varName "normalizedFacilityName"^^xsd:string .
767 761
768 -_:b27 762 +_:b48
769 - sp:varName "uomVolume"^^xsd:string . 763 + sp:varName "normalizedFlowName"^^xsd:string .
770 764
771 -_:b28 765 +_:b35
772 - sp:varName "volumeStdRef"^^xsd:string . 766 + sp:varName "productionFlow"^^xsd:string .
773 767
774 -_:b13 768 +_:b49
775 - sp:varName "realVolumeStd"^^xsd:string . 769 + sp:varName "normalizedProductTypeName"^^xsd:string .
776 770
777 -_:b29 771 +_:b34
778 - sp:varName "uomVolumeStd"^^xsd:string . 772 + sp:varName "productFlow"^^xsd:string .
......
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<WITSMLComposite xmlns="http://www.witsml.org/schemas/131/addendum/combo" version="1.3.1.0">
3 +<documentInfo>
4 +<DocumentName namingSystem="EC">Jotun Daily Production Report
5 +</DocumentName>
6 +<DocumentAlias namingSystem="EC">Daily Activity Report
7 +</DocumentAlias>
8 +<DocumentAlias namingSystem="EC">Daily Production Report
9 +</DocumentAlias>
10 +<DocumentAlias namingSystem="EC">Daily Production and Activity Report
11 +</DocumentAlias>
12 +<DocumentAlias namingSystem="EC">Daily Production and Operation Report
13 +</DocumentAlias>
14 +<DocumentDate>2011-08-01T00:00:00
15 +</DocumentDate>
16 +<documentClass namingSystem="EC">Partner confidential
17 +</documentClass>
18 +<documentClass namingSystem="EC">DPR
19 +</documentClass>
20 +<FileCreationInformation>
21 +<FileCreationDate>2011-08-02T11:45:44
22 +</FileCreationDate>
23 +<SoftwareName>EnergyComponents
24 +</SoftwareName>
25 +<FileCreator>Jotun
26 +</FileCreator>
27 +<Comment>File created by: Jotun
28 +</Comment>
29 +</FileCreationInformation>
30 +<SecurityInformation>
31 +<Class>Partner confidential
32 +</Class>
33 +<System>License partners
34 +</System>
35 +<EndDate>2010-01-15T00:00:00
36 +</EndDate>
37 +<Comment>Valid for partners only
38 +</Comment>
39 +</SecurityInformation>
40 +<AuditTrail>
41 +<Event>
42 +<EventDate>2011-08-02T06:56:22
43 +</EventDate>
44 +<ResponsibleParty>Jotun
45 +</ResponsibleParty>
46 +<Comment>Initial allocation run
47 +</Comment>
48 +</Event>
49 +</AuditTrail>
50 +<Owner>Jotun
51 +</Owner>
52 +</documentInfo>
53 +<productionOperationSet>
54 +<productionOperation uid="74B7107850B124EEE044001E0B83D0E2">
55 +<name>Jotun field
56 +</name>
57 +<installation>Jotun field
58 +</installation>
59 +<contextFacility kind="field" namingSystem="EC" uidRef="74B7107850B124EEE044001E0B83D0E2">Jotun field
60 +</contextFacility>
61 +<kind>DPR
62 +</kind>
63 +<periodKind>day
64 +</periodKind>
65 +<dateStart>2011-08-01
66 +</dateStart>
67 +<dateEnd>2011-08-02
68 +</dateEnd>
69 +<operator>
70 +<name>ExxonMobil
71 +</name>
72 +<role>operator
73 +</role>
74 +</operator>
75 +<title namingSystem="EC">Jotun Daily Production Report
76 +</title>
77 +<geographicContext>
78 +<field namingSystem="EC">Jotun field
79 +</field>
80 +</geographicContext>
81 +<issueDate>2011-08-02
82 +</issueDate>
83 +<installationReport uid="74B7107850C124EEE044001E0B83D0E2">
84 +<installation kind="platform">Jotun A
85 +</installation>
86 +<bedsAvailable>60
87 +</bedsAvailable>
88 +<crewCount type="contractor crew">16
89 +</crewCount>
90 +<crewCount type="own crew">24
91 +</crewCount>
92 +<crewCount type="personnel on board">40
93 +</crewCount>
94 +<operationalHSE uid="74B7107850C124EEE044001E0B83D0E2">
95 +<IncidentCount>31
96 +</IncidentCount>
97 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
98 +<safetyCount period="day" type="safety meeting">0
99 +</safetyCount>
100 +<safetyCount period="year to date" type="safety meeting">16
101 +</safetyCount>
102 +</safety>
103 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
104 +<safetyCount period="day" type="miscellaneous">0
105 +</safetyCount>
106 +<safetyCount period="year to date" type="miscellaneous">29
107 +</safetyCount>
108 +</safety>
109 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
110 +<safetyCount period="day" type="total permits">14
111 +</safetyCount>
112 +<safetyCount period="year to date" type="total permits">2150
113 +</safetyCount>
114 +</safety>
115 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
116 +<safetyCount period="day" type="drill or exercise">0
117 +</safetyCount>
118 +<safetyCount period="year to date" type="drill or exercise">50
119 +</safetyCount>
120 +</safety>
121 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
122 +<safetyCount period="day" type="hazard report card">3
123 +</safetyCount>
124 +<safetyCount period="year to date" type="hazard report card">1524
125 +</safetyCount>
126 +</safety>
127 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
128 +<safetyCount period="day" type="spill or leak">0
129 +</safetyCount>
130 +<safetyCount period="year to date" type="spill or leak">2
131 +</safetyCount>
132 +</safety>
133 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
134 +<safetyCount period="day" type="first aid">0
135 +</safetyCount>
136 +<safetyCount period="year to date" type="first aid">1
137 +</safetyCount>
138 +</safety>
139 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
140 +<safetyCount period="day" type="restricted work">0
141 +</safetyCount>
142 +<safetyCount period="year to date" type="restricted work">3
143 +</safetyCount>
144 +</safety>
145 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
146 +<safetyCount period="day" type="lost time incident">0
147 +</safetyCount>
148 +<safetyCount period="year to date" type="lost time incident">0
149 +</safetyCount>
150 +</safety>
151 +<safety uid="74B7107850C124EEE044001E0B83D0E2">
152 +<safetyCount period="day" type="permit with SJA">14
153 +</safetyCount>
154 +<safetyCount period="year to date" type="permit with SJA">2150
155 +</safetyCount>
156 +</safety>
157 +<weather uid="74B7107850C124EEE044001E0B83D0E2">
158 +<dTim>2011-08-01T00:00:00
159 +</dTim>
160 +<tempSurfaceMx uom="degC">15
161 +</tempSurfaceMx>
162 +<significantWave uom="m">1.5
163 +</significantWave>
164 +<maxWave uom="m">2.5
165 +</maxWave>
166 +<periodWave uom="s">5.5
167 +</periodWave>
168 +<aziWind uom="dega">140
169 +</aziWind>
170 +<velWind uom="m/s">9
171 +</velWind>
172 +</weather>
173 +</operationalHSE>
174 +<productionActivity>
175 +<lostProduction>
176 +<volumeAndReason uom="SM3" reasonLost="no entry">262
177 +</volumeAndReason>
178 +</lostProduction>
179 +<waterCleaningQuality uid="74B7107850C124EEE044001E0B83D0E2">
180 +<samplePoint>Jotun Produced Water Overboard
181 +</samplePoint>
182 +<oilInWaterProduced uom="ppm">9.9
183 +</oilInWaterProduced>
184 +</waterCleaningQuality>
185 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
186 +<dTimStart>2011-08-01T17:10:00
187 +</dTimStart>
188 +<dTimEnd>2011-08-01T17:35:00
189 +</dTimEnd>
190 +<supplyShip>North Vanguard
191 +</supplyShip>
192 +</marineOperation>
193 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
194 +<dTimStart>2011-08-01T00:00:00
195 +</dTimStart>
196 +<dTimEnd>2011-08-01T23:59:00
197 +</dTimEnd>
198 +<supplyShip>Esvagt Capri
199 +</supplyShip>
200 +</marineOperation>
201 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
202 +<activity uid="74B7107850C124EEE044001E0B83D0E2">
203 +<dTimStart>2011-08-01T00:00:00
204 +</dTimStart>
205 +<dTimEnd>2011-08-01T00:00:00
206 +</dTimEnd>
207 +<comment>Slop to WI : 0,0 m3
208 +</comment>
209 +</activity>
210 +</marineOperation>
211 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
212 +<activity uid="74B7107850C124EEE044001E0B83D0E2">
213 +<dTimStart>2011-08-01T00:00:00
214 +</dTimStart>
215 +<dTimEnd>2011-08-01T00:00:00
216 +</dTimEnd>
217 +<comment>FW. 180 m3.
218 +</comment>
219 +</activity>
220 +</marineOperation>
221 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
222 +<activity uid="74B7107850C124EEE044001E0B83D0E2">
223 +<dTimStart>2011-08-01T00:00:00
224 +</dTimStart>
225 +<dTimEnd>2011-08-01T00:00:00
226 +</dTimEnd>
227 +<comment>Total slop 1070.0 m3
228 +</comment>
229 +</activity>
230 +</marineOperation>
231 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
232 +<activity uid="74B7107850C124EEE044001E0B83D0E2">
233 +<dTimStart>2011-08-01T00:00:00
234 +</dTimStart>
235 +<dTimEnd>2011-08-01T00:00:00
236 +</dTimEnd>
237 +<comment>Diesel onboard. 1065 m3
238 +</comment>
239 +</activity>
240 +</marineOperation>
241 +<marineOperation uid="74B7107850C124EEE044001E0B83D0E2">
242 +<activity uid="74B7107850C124EEE044001E0B83D0E2">
243 +<dTimStart>2011-08-01T00:00:00
244 +</dTimStart>
245 +<dTimEnd>2011-08-01T00:00:00
246 +</dTimEnd>
247 +<comment>Helifuel 2470 ltr.
248 +</comment>
249 +</activity>
250 +</marineOperation>
251 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
252 +<type>maintenance
253 +</type>
254 +<dTimStart>2011-08-01T00:00:00
255 +</dTimStart>
256 +<dTimEnd>2011-08-01T00:00:00
257 +</dTimEnd>
258 +<comment>Cleaning of fresh water tank port side
259 +</comment>
260 +</operationalComment>
261 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
262 +<type>maintenance
263 +</type>
264 +<dTimStart>2011-08-01T00:00:00
265 +</dTimStart>
266 +<dTimEnd>2011-08-01T00:00:00
267 +</dTimEnd>
268 +<comment>Preparations for SD 2011
269 +</comment>
270 +</operationalComment>
271 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
272 +<type>maintenance
273 +</type>
274 +<dTimStart>2011-08-01T00:00:00
275 +</dTimStart>
276 +<dTimEnd>2011-08-01T00:00:00
277 +</dTimEnd>
278 +<comment>Meetings attitude / culture differences
279 +</comment>
280 +</operationalComment>
281 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
282 +<type>maintenance
283 +</type>
284 +<dTimStart>2011-08-01T00:00:00
285 +</dTimStart>
286 +<dTimEnd>2011-08-01T00:00:00
287 +</dTimEnd>
288 +<comment>Repair alarm on HPU aft
289 +</comment>
290 +</operationalComment>
291 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
292 +<type>maintenance
293 +</type>
294 +<dTimStart>2011-08-01T00:00:00
295 +</dTimStart>
296 +<dTimEnd>2011-08-01T00:00:00
297 +</dTimEnd>
298 +<comment>Repair h.p. washer in water treatment room
299 +</comment>
300 +</operationalComment>
301 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
302 +<type>maintenance
303 +</type>
304 +<dTimStart>2011-08-01T00:00:00
305 +</dTimStart>
306 +<dTimEnd>2011-08-01T00:00:00
307 +</dTimEnd>
308 +<comment>Repair heating desk in galley
309 +</comment>
310 +</operationalComment>
311 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
312 +<type>maintenance
313 +</type>
314 +<dTimStart>2011-08-01T00:00:00
315 +</dTimStart>
316 +<dTimEnd>2011-08-01T00:00:00
317 +</dTimEnd>
318 +<comment>Scaffolding TP 10 and TP 60
319 +</comment>
320 +</operationalComment>
321 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
322 +<type>maintenance
323 +</type>
324 +<dTimStart>2011-08-01T00:00:00
325 +</dTimStart>
326 +<dTimEnd>2011-08-01T00:00:00
327 +</dTimEnd>
328 +<comment>PM's according to plan
329 +</comment>
330 +</operationalComment>
331 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
332 +<type>maintenance
333 +</type>
334 +<dTimStart>2011-08-01T00:00:00
335 +</dTimStart>
336 +<dTimEnd>2011-08-01T00:00:00
337 +</dTimEnd>
338 +<comment>NORISOL: Painting program according to plan
339 +</comment>
340 +</operationalComment>
341 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
342 +<type>maintenance
343 +</type>
344 +<dTimStart>2011-08-01T00:00:00
345 +</dTimStart>
346 +<dTimEnd>2011-08-01T00:00:00
347 +</dTimEnd>
348 +<comment>AAK: Inspection program according to plan
349 +</comment>
350 +</operationalComment>
351 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
352 +<type>production
353 +</type>
354 +<dTimStart>2011-08-01T13:54:00
355 +</dTimStart>
356 +<dTimEnd>2011-08-01T13:54:00
357 +</dTimEnd>
358 +<comment>Startet firepump aft for test
359 +</comment>
360 +</operationalComment>
361 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
362 +<type>production
363 +</type>
364 +<dTimStart>2011-08-01T14:07:00
365 +</dTimStart>
366 +<dTimEnd>2011-08-01T14:07:00
367 +</dTimEnd>
368 +<comment>Firepump aft stopped
369 +</comment>
370 +</operationalComment>
371 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
372 +<type>production
373 +</type>
374 +<dTimStart>2011-08-01T17:15:00
375 +</dTimStart>
376 +<dTimEnd>2011-08-01T17:15:00
377 +</dTimEnd>
378 +<comment>Firepumps fore testet ok
379 +</comment>
380 +</operationalComment>
381 +<operationalComment uid="74B7107850C124EEE044001E0B83D0E2">
382 +<type>production
383 +</type>
384 +<dTimStart>2011-08-01T23:59:00
385 +</dTimStart>
386 +<dTimEnd>2011-08-01T23:59:00
387 +</dTimEnd>
388 +<comment>Total GL to JoB: 1447482 Sm3
389 +</comment>
390 +</operationalComment>
391 +</productionActivity>
392 +</installationReport>
393 +<installationReport uid="74B7107850C224EEE044001E0B83D0E2">
394 +<installation kind="platform">Jotun B
395 +</installation>
396 +<bedsAvailable>90
397 +</bedsAvailable>
398 +<operationalHSE uid="74B7107850C224EEE044001E0B83D0E2">
399 +<IncidentCount>0
400 +</IncidentCount>
401 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
402 +<safetyCount period="day" type="safety meeting">0
403 +</safetyCount>
404 +<safetyCount period="year to date" type="safety meeting">1
405 +</safetyCount>
406 +</safety>
407 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
408 +<safetyCount period="day" type="miscellaneous">0
409 +</safetyCount>
410 +<safetyCount period="year to date" type="miscellaneous">1
411 +</safetyCount>
412 +</safety>
413 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
414 +<safetyCount period="day" type="total permits">0
415 +</safetyCount>
416 +<safetyCount period="year to date" type="total permits">544
417 +</safetyCount>
418 +</safety>
419 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
420 +<safetyCount period="day" type="drill or exercise">0
421 +</safetyCount>
422 +<safetyCount period="year to date" type="drill or exercise">7
423 +</safetyCount>
424 +</safety>
425 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
426 +<safetyCount period="day" type="hazard report card">0
427 +</safetyCount>
428 +<safetyCount period="year to date" type="hazard report card">240
429 +</safetyCount>
430 +</safety>
431 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
432 +<safetyCount period="day" type="spill or leak">0
433 +</safetyCount>
434 +<safetyCount period="year to date" type="spill or leak">2
435 +</safetyCount>
436 +</safety>
437 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
438 +<safetyCount period="day" type="first aid">0
439 +</safetyCount>
440 +<safetyCount period="year to date" type="first aid">0
441 +</safetyCount>
442 +</safety>
443 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
444 +<safetyCount period="day" type="restricted work">0
445 +</safetyCount>
446 +<safetyCount period="year to date" type="restricted work">0
447 +</safetyCount>
448 +</safety>
449 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
450 +<safetyCount period="day" type="lost time incident">0
451 +</safetyCount>
452 +<safetyCount period="year to date" type="lost time incident">0
453 +</safetyCount>
454 +</safety>
455 +<safety uid="74B7107850C224EEE044001E0B83D0E2">
456 +<safetyCount period="day" type="permit with SJA">0
457 +</safetyCount>
458 +<safetyCount period="year to date" type="permit with SJA">547
459 +</safetyCount>
460 +</safety>
461 +<weather uid="74B7107850C224EEE044001E0B83D0E2">
462 +<dTim>2011-08-01T00:00:00
463 +</dTim>
464 +</weather>
465 +</operationalHSE>
466 +<productionActivity/>
467 +</installationReport>
468 +</productionOperation>
469 +</productionOperationSet>
470 +<productVolumeSet>
471 +<productVolume uid="74B7107850C124EEE044001E0B83D0E2">
472 +<name>Jotun A
473 +</name>
474 +<installation>Jotun A
475 +</installation>
476 +<contextFacility kind="platform" namingSystem="EC" uidRef="74B7107850C124EEE044001E0B83D0E2">Jotun A
477 +</contextFacility>
478 +<kind>DPR
479 +</kind>
480 +<periodKind>day
481 +</periodKind>
482 +<dateStart>2011-08-01
483 +</dateStart>
484 +<dateEnd>2011-08-02
485 +</dateEnd>
486 +<operator>
487 +<name>ExxonMobil
488 +</name>
489 +<role>operator
490 +</role>
491 +</operator>
492 +<title namingSystem="EC">Jotun Daily Production Report
493 +</title>
494 +<geographicContext>
495 +<field namingSystem="EC">Jotun field
496 +</field>
497 +</geographicContext>
498 +<issueDate>2011-08-02
499 +</issueDate>
500 +<standardTempPres>15 degC 1 atm
501 +</standardTempPres>
502 +<facility uid="74B7107850B124EEE044001E0B83D0E2">
503 +<name kind="lease" namingSystem="EC" uidRef="74B7107850B124EEE044001E0B83D0E2">Jotun field
504 +</name>
505 +<facilityParent1 kind="field" namingSystem="EC" uidRef="74B7107850C124EEE044001E0B83D0E2">Jotun A
506 +</facilityParent1>
507 +<contextFacility kind="field" namingSystem="EC" uidRef="JOTUN">JOTUN
508 +</contextFacility>
509 +<flow uid="55C52ED2E79624313E1AB28D4059ECE1">
510 +<name>Jotun Total Flare Gas - Jotun
511 +</name>
512 +<kind>consume - flare
513 +</kind>
514 +<direction>outlet
515 +</direction>
516 +<qualifier>allocated
517 +</qualifier>
518 +<product>
519 +<kind>gas
520 +</kind>
521 +<name>Jotun Total Flare Gas
522 +</name>
523 +<period>
524 +<kind>daily month to date
525 +</kind>
526 +<dTimStart>2011-08-01T00:00:00
527 +</dTimStart>
528 +<dTimEnd>2011-08-01T00:00:00
529 +</dTimEnd>
530 +<volume uom="Mcf">0.05203
531 +</volume>
532 +<volumeStd uom="m3">1470.452621410282974
533 +</volumeStd>
534 +</period>
535 +<period>
536 +<kind>day
537 +</kind>
538 +<dTimStart>2011-08-01T00:00:00
539 +</dTimStart>
540 +<dTimEnd>2011-08-02T00:00:00
541 +</dTimEnd>
542 +<volume uom="Mcf">0.05203
543 +</volume>
544 +<volumeStd uom="m3">1470.452621410282974
545 +</volumeStd>
546 +</period>
547 +<period>
548 +<kind>month to date
549 +</kind>
550 +<dTimStart>2011-08-01T00:00:00
551 +</dTimStart>
552 +<dTimEnd>2011-08-01T00:00:00
553 +</dTimEnd>
554 +<volume uom="Mcf">0.05203
555 +</volume>
556 +<volumeStd uom="m3">1470.452621410282974
557 +</volumeStd>
558 +</period>
559 +</product>
560 +</flow>
561 +</facility>
562 +</productVolume>
563 +</productVolumeSet>
564 +</WITSMLComposite>
...\ No newline at end of file ...\ No newline at end of file