Holger Knublauch

Attempting to fix conflicts, and to set ttl files to binary

# Saved by TopBraid on Wed Jul 27 19:44:43 PDT 2011
# Saved by TopBraid on Tue Aug 02 12:39:11 BST 2011
# baseURI: http://www.reportinghub.no/ep/schema/1.1/activity
# imports: http://www.linkedmodel.org/1.2/schema/vaem
# imports: http://www.reportinghub.no/ep/schema/1.1/well
......@@ -76,6 +76,11 @@ ep-activity:DailyDrillingActivity
[ rdf:type owl:Restriction ;
owl:allValuesFrom ep-activity:DrillingActivity ;
owl:onProperty ep-activity:hasSubActivity
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom <http://www.reportinghub.no/ep/schema/well#WellBore> ;
owl:onProperty ep-activity:onWellBore
] .
ep-activity:DailyDrillingReport
......@@ -103,6 +108,10 @@ ep-activity:DrillingActivity
rdfs:label "Drilling activity"^^xsd:string ;
rdfs:subClassOf ep-activity:OffshoreWellActivity .
ep-activity:FinalDailyDrillingReport
rdf:type owl:Class ;
rdfs:subClassOf ep-activity:DailyDrillingReport .
ep-activity:MonthlyDrillingActivity
rdf:type owl:Class ;
rdfs:label "Weekly drilling activity"^^xsd:string ;
......@@ -123,6 +132,10 @@ ep-activity:MonthlyProductionActivity
owl:onProperty ep-activity:hasSubActivity
] .
ep-activity:NormalDailyDrillingReport
rdf:type owl:Class ;
rdfs:subClassOf ep-activity:DailyDrillingReport .
ep-activity:OffshoreActivity
rdf:type owl:Class ;
rdfs:label "Offshore activity"^^xsd:string ;
......@@ -153,6 +166,10 @@ ep-activity:OffshoreWellActivity
owl:onProperty ep-activity:onWell
] .
ep-activity:PreliminaryDailyDrillingReport
rdf:type owl:Class ;
rdfs:subClassOf ep-activity:DailyDrillingReport .
ep-activity:ProductionActivity
rdf:type owl:Class ;
rdfs:label "Production activity"^^xsd:string ;
......@@ -188,6 +205,11 @@ ep-activity:WeeklyProductionActivity
owl:onProperty ep-activity:hasSubActivity
] .
ep-activity:createdAt
rdf:type owl:DatatypeProperty , owl:FunctionalProperty ;
rdfs:label "created at"^^xsd:string ;
rdfs:range <http://www.linkedmodel.org/schema/vaem#dateUnion> .
ep-activity:finishedAt
rdf:type owl:DatatypeProperty ;
rdfs:label "finished at"^^xsd:string ;
......@@ -205,6 +227,10 @@ ep-activity:onWell
rdf:type owl:ObjectProperty ;
rdfs:label "on well"^^xsd:string .
ep-activity:onWellBore
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:label "on WellBore"^^xsd:string .
ep-activity:reportOn
rdf:type owl:ObjectProperty ;
rdfs:label "report on"^^xsd:string .
......
......@@ -19,7 +19,7 @@
<http://www.reportinghub.no/1.1/schema/epvv>
rdf:type owl:Ontology ;
owl:imports <http://www.reportinghub.no/1.1/schema/epa> , <http://www.linkedmodel.org/1.0/schema/dtype> , <http://www.linkedmodel.org/1.2/schema/vaem> , <http://spinrdf.org/spin> ;
owl:versionInfo "TBD"^^xsd:string .
owl:versionInfo "TBD by RH"^^xsd:string .
epvv:Discrepancy
rdf:type owl:Class ;
......
# Saved by TopBraid on Wed Aug 03 06:33:37 BST 2011
# baseURI: http://www.reportinghub.no/ep/spin/1.1/lib
# imports: http://spinrdf.org/spin
......@@ -9,7 +10,6 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix smf: <http://topbraid.org/sparqlmotionfunctions#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spif: <http://spinrdf.org/spif#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
......@@ -22,8 +22,49 @@
ep-spin-lib:Function
rdf:type spin:Function ;
rdfs:label "Function"^^xsd:string ;
rdfs:subClassOf spin:Functions ;
spin:abstract "true"^^xsd:boolean .
rdfs:subClassOf spin:Functions .
ep-spin-lib:buildDailyDrillingActivityURI
rdf:type spin:Function ;
rdfs:label "build DailyDrillingActivity URI"^^xsd:string ;
rdfs:subClassOf ep-spin-lib:Function ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables (_:b1) ;
sp:where ([ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildURI ;
sp:arg1 "https://www.reportinghub.no/ep/data/DailyDrillingActivity#" ;
sp:arg2 [ rdf:type fn:concat ;
sp:arg1 spin:_arg1 ;
sp:arg2 "$" ;
sp:arg3 spin:_arg2
]
] ;
sp:variable _:b1
])
] .
ep-spin-lib:buildDailyDrillingReportURI
rdf:type spin:Function ;
rdfs:label "build DailyDrillingReport URI"^^xsd:string ;
rdfs:subClassOf ep-spin-lib:Function ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables (_:b2) ;
sp:where ([ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildURI ;
sp:arg1 "https://www.reportinghub.no/ep/data/DailyDrillingReport#" ;
sp:arg2 [ rdf:type fn:concat ;
sp:arg1 spin:_arg1 ;
sp:arg2 "$" ;
sp:arg3 spin:_arg2
]
] ;
sp:variable _:b2
])
] .
ep-spin-lib:buildURI
rdf:type spin:Function ;
......@@ -31,16 +72,16 @@ ep-spin-lib:buildURI
rdfs:subClassOf ep-spin-lib:Function ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables (_:b1) ;
sp:resultVariables (_:b3) ;
sp:where ([ rdf:type sp:Bind ;
sp:expression
[ rdf:type sp:iri ;
[ rdf:type smf:resource ;
sp:arg1 [ rdf:type fn:concat ;
sp:arg1 spin:_arg1 ;
sp:arg2 spin:_arg2
]
] ;
sp:variable _:b1
sp:variable _:b3
])
] ;
spin:constraint
......@@ -60,14 +101,14 @@ ep-spin-lib:buildWellBoreURI
rdfs:subClassOf ep-spin-lib:Function ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables (_:b2) ;
sp:resultVariables (_:b4) ;
sp:where ([ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildURI ;
sp:arg1 "https://www.reportinghub.no/ep/data/L_9999/W_9999#" ;
sp:arg1 "https://www.reportinghub.no/ep/data/WellBore#" ;
sp:arg2 spin:_arg1
] ;
sp:variable _:b2
sp:variable _:b4
])
] .
......@@ -77,14 +118,14 @@ ep-spin-lib:buildWellURI
rdfs:subClassOf ep-spin-lib:Function ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables (_:b3) ;
sp:resultVariables (_:b5) ;
sp:where ([ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildURI ;
sp:arg1 "https://www.reportinghub.no/ep/data/L_9999#" ;
sp:arg1 "https://www.reportinghub.no/ep/data/Well#" ;
sp:arg2 spin:_arg1
] ;
sp:variable _:b3
sp:variable _:b5
])
] .
......@@ -94,75 +135,75 @@ ep-spin-lib:normalizeString
rdfs:subClassOf ep-spin-lib:Function ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables (_:b4) ;
sp:resultVariables (_:b6) ;
sp:where ([ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:regex ;
[ rdf:type smf:regex ;
sp:arg1 spin:_arg1 ;
sp:arg2 "\\((.*)\\)" ;
sp:arg3 ""
] ;
sp:variable _:b5
sp:variable _:b7
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:trim ;
sp:arg1 _:b5
[ rdf:type smf:trim ;
sp:arg1 _:b7
] ;
sp:variable _:b6
sp:variable _:b8
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:encodeURL ;
sp:arg1 _:b6
[ rdf:type smf:encodeURL ;
sp:arg1 _:b8
] ;
sp:variable _:b7
sp:variable _:b9
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:regex ;
sp:arg1 _:b7 ;
[ rdf:type smf:regex ;
sp:arg1 _:b9 ;
sp:arg2 "%2F" ;
sp:arg3 "_"
] ;
sp:variable _:b8
sp:variable _:b10
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:regex ;
sp:arg1 _:b8 ;
[ rdf:type smf:regex ;
sp:arg1 _:b10 ;
sp:arg2 "%[0-9A-F][0-9A-F]" ;
sp:arg3 ""
] ;
sp:variable _:b9
sp:variable _:b11
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:regex ;
sp:arg1 _:b9 ;
[ rdf:type smf:regex ;
sp:arg1 _:b11 ;
sp:arg2 "\\+" ;
sp:arg3 "_"
] ;
sp:variable _:b10
sp:variable _:b12
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:regex ;
sp:arg1 _:b10 ;
[ rdf:type smf:regex ;
sp:arg1 _:b12 ;
sp:arg2 "_+" ;
sp:arg3 "_"
] ;
sp:variable _:b11
sp:variable _:b13
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type spif:regex ;
sp:arg1 _:b11 ;
[ rdf:type smf:regex ;
sp:arg1 _:b13 ;
sp:arg2 "\\*" ;
sp:arg3 ""
] ;
sp:variable _:b12
sp:variable _:b14
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type xsd:string ;
sp:arg1 [ rdf:type spif:upperCase ;
sp:arg1 _:b12
sp:arg1 [ rdf:type smf:upperCase ;
sp:arg1 _:b14
]
] ;
sp:variable _:b4
sp:variable _:b6
])
] ;
spin:constraint
......@@ -171,29 +212,35 @@ ep-spin-lib:normalizeString
spl:valueType xsd:string
] .
_:b2 sp:varName "uri"^^xsd:string .
_:b4 sp:varName "uri"^^xsd:string .
_:b3 sp:varName "uri"^^xsd:string .
_:b5 sp:varName "uri"^^xsd:string .
_:b1 sp:varName "uri"^^xsd:string .
_:b14
sp:varName "t4"^^xsd:string .
_:b5 sp:varName "s1"^^xsd:string .
_:b13
sp:varName "t3"^^xsd:string .
_:b6 sp:varName "s2"^^xsd:string .
_:b12
sp:varName "t2"^^xsd:string .
_:b7 sp:varName "t0a"^^xsd:string .
_:b11
sp:varName "t1"^^xsd:string .
_:b8 sp:varName "t0b"^^xsd:string .
_:b10
sp:varName "t0b"^^xsd:string .
_:b9 sp:varName "t1"^^xsd:string .
_:b9 sp:varName "t0a"^^xsd:string .
_:b10
sp:varName "t2"^^xsd:string .
_:b8 sp:varName "s2"^^xsd:string .
_:b11
sp:varName "t3"^^xsd:string .
_:b7 sp:varName "s1"^^xsd:string .
_:b12
sp:varName "t4"^^xsd:string .
_:b6 sp:varName "normalizedStr"^^xsd:string .
_:b4 sp:varName "normalizedStr"^^xsd:string .
_:b3 sp:varName "uri"^^xsd:string .
_:b2 sp:varName "uri"^^xsd:string .
_:b1 sp:varName "uri"^^xsd:string .
......
# Saved by TopBraid on Wed Aug 03 06:33:37 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......
# Saved by TopBraid on Wed Aug 03 12:31:51 BST 2011
# baseURI: http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport
# imports: http://www.reportinghub.no/ep/spin/1.1/lib
# imports: http://www.reportinghub.no/ep/transform/1.1/ddr
# imports: http://spinrdf.org/spin
@prefix NPD_1104121247071: <file:///www.reportinghub.no/examples/xml/NPD_110412124707.xml#> .
@prefix ddr-normalization: <http://www.reportinghub.no/ep/transform/ddr/normalization#> .
@prefix ddr-normalization-1.1: <http://www.reportinghub.no/ep/transform/1.1/ddr/normalization#> .
@prefix ep-spin-lib: <http://www.reportinghub.no/ep/spin/lib#> .
@prefix normalization: <http://www.reportinghub.no/ep/transform/normalization#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.reportinghub.no/ep/schema/ddr#Obj_drillReport>
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 102 Transfer dTimEnd"^^xsd:string ;
sp:templates ([ sp:object _:b1 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#finishedAt> ;
sp:subject _:b2
]) ;
sp:where ([ sp:object _:b3 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b4 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b1 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimEnd> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b3
] ;
sp:variable _:b5
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b5 ;
sp:arg2 _:b4
] ;
sp:variable _:b2
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 107 Transfer sum24Hr"^^xsd:string ;
sp:templates ([ sp:object _:b6 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#sum24Hr> ;
sp:subject _:b7
]) ;
sp:where ([ sp:object _:b8 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b9 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b10 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasStatusInfo> ;
sp:subject spin:_this
] [ sp:object _:b6 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#sum24Hr> ;
sp:subject _:b10
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b8
] ;
sp:variable _:b11
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b11 ;
sp:arg2 _:b9
] ;
sp:variable _:b7
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 106 Transfer distDrill"^^xsd:string ;
sp:templates ([ sp:object _:b12 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasDistDrill> ;
sp:subject _:b13
]) ;
sp:where ([ sp:object _:b14 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b15 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b16 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasStatusInfo> ;
sp:subject spin:_this
] [ sp:object _:b12 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasDistDrill> ;
sp:subject _:b16
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b14
] ;
sp:variable _:b17
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b17 ;
sp:arg2 _:b15
] ;
sp:variable _:b13
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 104 Create Well"^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/well#Well> ;
sp:predicate rdf:type ;
sp:subject _:b18
] [ sp:object _:b19 ;
sp:predicate rdfs:label ;
sp:subject _:b18
] [ sp:object _:b18 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWell> ;
sp:subject _:b20
] [ sp:object _:b21 ;
sp:predicate <http://www.reportinghub.no/ep/schema/core#hasPart> ;
sp:subject _:b18
]) ;
sp:where ([ sp:object _:b22 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b19 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWell> ;
sp:subject spin:_this
] [ sp:object _:b23 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b21 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b20
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b22
] ;
sp:variable _:b24
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b24 ;
sp:arg2 _:b23
] ;
sp:variable _:b20
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b19
] ;
sp:variable _:b25
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildWellURI ;
sp:arg1 _:b25
] ;
sp:variable _:b18
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """STEP 103b
Classify a DailyDrillingReport as preliminary"""^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#PreliminaryDailyDrillingReport> ;
sp:predicate rdf:type ;
sp:subject _:b26
]) ;
sp:where ([ sp:object _:b27 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b28 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ sp:object <http://www.reportinghub.no/ep/schema/ddr#ORV_preliminary> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasVersionKind> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b27
] ;
sp:variable _:b29
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b29 ;
sp:arg2 _:b28
] ;
sp:variable _:b26
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """STEP 101 Create DailyDrillingReport, DailyDrillingActivity and WellBore
Minimum data - createDate, dTimStart, nameWellBore
Add a link from Obj_DrillReport to DailyDrillingReport to support other CONSTRUCT clauses (is this useful?)"""^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#DailyDrillingReport> ;
sp:predicate rdf:type ;
sp:subject _:b30
] [ sp:object <http://www.reportinghub.no/ep/schema/activity#DailyDrillingActivity> ;
sp:predicate rdf:type ;
sp:subject _:b31
] [ sp:object _:b31 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#reportOn> ;
sp:subject _:b30
] [ sp:object _:b32 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#createdAt> ;
sp:subject _:b30
] [ sp:object _:b33 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#startedAt> ;
sp:subject _:b31
] [ sp:object <http://www.reportinghub.no/ep/schema/well#WellBore> ;
sp:predicate rdf:type ;
sp:subject _:b34
] [ sp:object _:b34 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b31
] [ sp:object _:b35 ;
sp:predicate rdfs:label ;
sp:subject _:b34
] [ sp:object spin:_this ;
sp:predicate <http://www.linkedmodel.org/schema/dtype#derivedFrom> ;
sp:subject _:b30
]) ;
sp:where ([ sp:object _:b35 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b33 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b32 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b35
] ;
sp:variable _:b36
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b36 ;
sp:arg2 _:b32
] ;
sp:variable _:b30
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b36 ;
sp:arg2 _:b33
] ;
sp:variable _:b31
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildWellBoreURI ;
sp:arg1 _:b36
] ;
sp:variable _:b34
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 108 Transfer forecast24Hr"^^xsd:string ;
sp:templates ([ sp:object _:b37 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#forecast24Hr> ;
sp:subject _:b38
]) ;
sp:where ([ sp:object _:b39 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b40 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b41 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasStatusInfo> ;
sp:subject spin:_this
] [ sp:object _:b37 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#forecast24Hr> ;
sp:subject _:b41
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b39
] ;
sp:variable _:b42
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b42 ;
sp:arg2 _:b40
] ;
sp:variable _:b38
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 109 Transfer md"^^xsd:string ;
sp:templates ([ sp:object _:b43 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasMd> ;
sp:subject _:b44
]) ;
sp:where ([ sp:object _:b45 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b46 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b47 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasStatusInfo> ;
sp:subject spin:_this
] [ sp:object _:b44 ;
sp:predicate <http://www.reportinghub.no/ep/schema/activity#onWellBore> ;
sp:subject _:b48
] [ sp:object _:b43 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasMd> ;
sp:subject _:b47
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b45
] ;
sp:variable _:b49
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b49 ;
sp:arg2 _:b46
] ;
sp:variable _:b48
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """STEP 103c
Classify a DailyDrillingReport as final"""^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#FinalDailyDrillingReport> ;
sp:predicate rdf:type ;
sp:subject _:b50
]) ;
sp:where ([ sp:object _:b51 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b52 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ sp:object <http://www.reportinghub.no/ep/schema/ddr#ORV_final> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasVersionKind> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b51
] ;
sp:variable _:b53
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b53 ;
sp:arg2 _:b52
] ;
sp:variable _:b50
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment """STEP 103a
Classify a DailyDrillingReport as normal"""^^xsd:string ;
sp:templates ([ sp:object <http://www.reportinghub.no/ep/schema/activity#NormalDailyDrillingReport> ;
sp:predicate rdf:type ;
sp:subject _:b54
]) ;
sp:where ([ sp:object _:b55 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b56 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#createDate> ;
sp:subject spin:_this
] [ sp:object <http://www.reportinghub.no/ep/schema/ddr#ORV_normal> ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasVersionKind> ;
sp:subject spin:_this
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b55
] ;
sp:variable _:b57
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingReportURI ;
sp:arg1 _:b57 ;
sp:arg2 _:b56
] ;
sp:variable _:b54
])
] ;
spin:rule
[ rdf:type sp:Construct ;
rdfs:comment "STEP 105 Transfer ropCurrent"^^xsd:string ;
sp:templates ([ sp:object _:b58 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasRopCurrent> ;
sp:subject _:b59
]) ;
sp:where ([ sp:object _:b60 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#nameWellbore> ;
sp:subject spin:_this
] [ sp:object _:b61 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#dTimStart> ;
sp:subject spin:_this
] [ sp:object _:b62 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasStatusInfo> ;
sp:subject spin:_this
] [ sp:object _:b58 ;
sp:predicate <http://www.reportinghub.no/ep/schema/ddr#hasRopCurrent> ;
sp:subject _:b62
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:normalizeString ;
sp:arg1 _:b60
] ;
sp:variable _:b63
] [ rdf:type sp:Bind ;
sp:expression
[ rdf:type ep-spin-lib:buildDailyDrillingActivityURI ;
sp:arg1 _:b63 ;
sp:arg2 _:b61
] ;
sp:variable _:b59
])
] .
<http://www.reportinghub.no/ep/transform/1.1/ddr/drillReport>
rdf:type owl:Ontology ;
owl:imports <http://spinrdf.org/spin> , <http://www.reportinghub.no/ep/transform/1.1/ddr> , <http://www.reportinghub.no/ep/spin/1.1/lib> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
_:b50
sp:varName "dailyDrillingReport"^^xsd:string .
_:b53
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b52
sp:varName "createDate"^^xsd:string .
_:b51
sp:varName "nameWellBore"^^xsd:string .
_:b26
sp:varName "dailyDrillingReport"^^xsd:string .
_:b29
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b28
sp:varName "createDate"^^xsd:string .
_:b27
sp:varName "nameWellBore"^^xsd:string .
_:b54
sp:varName "dailyDrillingReport"^^xsd:string .
_:b57
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b56
sp:varName "createDate"^^xsd:string .
_:b55
sp:varName "nameWellBore"^^xsd:string .
_:b5 sp:varName "normalizedWellBoreName"^^xsd:string .
_:b4 sp:varName "dTimStart"^^xsd:string .
_:b3 sp:varName "nameWellBore"^^xsd:string .
_:b2 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b1 sp:varName "dTimEnd"^^xsd:string .
_:b42
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b41
sp:varName "statusInfo"^^xsd:string .
_:b40
sp:varName "dTimStart"^^xsd:string .
_:b39
sp:varName "nameWellBore"^^xsd:string .
_:b38
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b37
sp:varName "forecast24Hr"^^xsd:string .
_:b63
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b62
sp:varName "statusInfo"^^xsd:string .
_:b61
sp:varName "dTimStart"^^xsd:string .
_:b60
sp:varName "nameWellBore"^^xsd:string .
_:b59
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b58
sp:varName "ropCurrentValue"^^xsd:string .
_:b11
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b10
sp:varName "statusInfo"^^xsd:string .
_:b9 sp:varName "dTimStart"^^xsd:string .
_:b8 sp:varName "nameWellBore"^^xsd:string .
_:b7 sp:varName "dailyDrillingActivity"^^xsd:string .
_:b6 sp:varName "sum24Hr"^^xsd:string .
_:b25
sp:varName "normalizedWellName"^^xsd:string .
_:b24
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b23
sp:varName "dTimStart"^^xsd:string .
_:b22
sp:varName "nameWellBore"^^xsd:string .
_:b21
sp:varName "wellBore"^^xsd:string .
_:b20
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b19
sp:varName "nameWell"^^xsd:string .
_:b18
sp:varName "well"^^xsd:string .
_:b49
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b48
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b47
sp:varName "statusInfo"^^xsd:string .
_:b46
sp:varName "dTimStart"^^xsd:string .
_:b45
sp:varName "nameWellBore"^^xsd:string .
_:b44
sp:varName "wellBore"^^xsd:string .
_:b43
sp:varName "md"^^xsd:string .
_:b17
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b16
sp:varName "statusInfo"^^xsd:string .
_:b15
sp:varName "dTimStart"^^xsd:string .
_:b14
sp:varName "nameWellBore"^^xsd:string .
_:b13
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b12
sp:varName "distDrill"^^xsd:string .
_:b36
sp:varName "normalizedWellBoreName"^^xsd:string .
_:b35
sp:varName "nameWellBore"^^xsd:string .
_:b34
sp:varName "wellBore"^^xsd:string .
_:b33
sp:varName "dTimStart"^^xsd:string .
_:b32
sp:varName "createDate"^^xsd:string .
_:b31
sp:varName "dailyDrillingActivity"^^xsd:string .
_:b30
sp:varName "dailyDrillingReport"^^xsd:string .
# Saved by TopBraid on Wed Aug 03 12:31:51 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix visual: <http://topbraid.org/visual#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
[] rdf:type inference:Configuration ;
composite:child
[ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
<http://spinrdf.org/spin#topSPINOptions>
"singlePass" ;
composite:index "0"^^xsd:int
] .
# Saved by TopBraid on Wed Aug 03 07:44:47 BST 2011
# baseURI: null
@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
......@@ -12,7 +13,5 @@
[] rdf:type inference:Configuration ;
composite:child
[ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
<http://spinrdf.org/spin#topSPINOptions>
"singlePass" ;
composite:index "0"^^xsd:int
] .
......
<witsml:drillReports version="1.4.0.0" xmlns:witsml="http://www.witsml.org/schemas/1series" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.witsml.org/schemas/1series http://www.npd.no/schema//DDRS/1series/WITSML_drillReport_profiled_schema_phase2.xsd"><witsml:documentInfo><witsml:documentName>Drill Report</witsml:documentName><witsml:owner>IIP</witsml:owner></witsml:documentInfo><witsml:drillReport><witsml:nameWell>NO 25/11-G-3</witsml:nameWell><witsml:nameWellbore>NO 25/11-G-3 T2</witsml:nameWellbore><witsml:name>name</witsml:name><witsml:dTimStart>2010-01-01T00:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-02T00:00:00.000Z</witsml:dTimEnd><witsml:versionKind>normal</witsml:versionKind><witsml:createDate>2010-02-05T14:35:20.000Z</witsml:createDate>
<witsml:wellAlias><witsml:name>25/11-G-3</witsml:name><witsml:namingSystem>NPD code</witsml:namingSystem></witsml:wellAlias>
<witsml:wellboreAlias><witsml:name>25/11-G-3 T2</witsml:name><witsml:namingSystem>NPD code</witsml:namingSystem></witsml:wellboreAlias><witsml:wellboreAlias><witsml:name>5829</witsml:name><witsml:namingSystem>NPD number</witsml:namingSystem></witsml:wellboreAlias>
<witsml:wellboreInfo><witsml:dTimSpud>2009-12-27T00:00:00.000Z</witsml:dTimSpud><witsml:operator>Statoil</witsml:operator><witsml:drillContractor>Odfjell Drilling AS</witsml:drillContractor><witsml:rigAlias><witsml:name>GRANE</witsml:name><witsml:namingSystem>NPD Name</witsml:namingSystem></witsml:rigAlias><witsml:rigAlias><witsml:name>283285</witsml:name><witsml:namingSystem>NPD code</witsml:namingSystem></witsml:rigAlias></witsml:wellboreInfo>
<witsml:statusInfo><witsml:dTim>2010-01-02T00:00:00.000Z</witsml:dTim><witsml:md uom="m">2867</witsml:md><witsml:diaHole uom="in">0</witsml:diaHole><witsml:mdDiaHoleStart uom="m">2860</witsml:mdDiaHoleStart><witsml:strengthForm uom="g/cm3">1.6</witsml:strengthForm><witsml:mdStrengthForm uom="m">2853</witsml:mdStrengthForm><witsml:tvdStrengthForm uom="m">1738</witsml:tvdStrengthForm><witsml:diaCsgLast uom="in">14</witsml:diaCsgLast><witsml:mdCsgLast uom="m">2853</witsml:mdCsgLast><witsml:tvdCsgLast uom="m">1738.4</witsml:tvdCsgLast><witsml:presTestType>formation integrity test</witsml:presTestType><witsml:mdPlanned uom="m">-9999</witsml:mdPlanned><witsml:distDrill uom="m">-9999</witsml:distDrill><witsml:elevKelly uom="m">69.9</witsml:elevKelly><witsml:sum24Hr>Pulled out of hole with 12 1/4&quot; clean-out assembly, broke and laid out same. Washed BOP and wellhead area. Performed BOP test. Picked up 13 3/8&quot; whipstock and made up same to window mill assembly. Ran in hole with whipstock/window mill assembly on 6 5/8&quot; DP to 673 m.</witsml:sum24Hr><witsml:forecast24Hr>Run in hole with whipstock/window mill assembly to 2750 m, orient and set whipstock. Mill out window and 5 m rathole, raise mud weight to 1,45 SG while milling out window. Circulate well clean.</witsml:forecast24Hr><witsml:ropCurrent uom="m/h">-9999</witsml:ropCurrent></witsml:statusInfo>
<witsml:fluid><witsml:type>Versatec</witsml:type><witsml:dTim>2010-01-01T23:15:00.000Z</witsml:dTim><witsml:md uom="m">3079</witsml:md><witsml:presBopRating uom="bar">0</witsml:presBopRating ><witsml:mudClass>oil based</witsml:mudClass><witsml:density uom="g/cm3">1.39</witsml:density><witsml:pv uom="mPa.s">26</witsml:pv><witsml:yp uom="Pa">9.5</witsml:yp></witsml:fluid>
<witsml:extendedReport dTim="2010-01-02T00:00:00.000Z">Depth: 1627. Ran in hole with whipstock/window mill assembly on 6 5/8&quot; DP to 1627 m. Running speed 3 min/stand. Experinsed problems with Vertical Pipe Handling system. Depth: 1653. Initialized and reset setpoints for Vertical Pipe Handling system. Depth: 2089. Ran in hole with whipstock/window mill assembly on 6 5/8&quot; DP to 2089 m. Running speed 3 min/stand.</witsml:extendedReport >
<witsml:activity><witsml:dTimStart>2010-01-01T00:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T01:30:00.000Z</witsml:dTimEnd><witsml:md uom="m">197</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Pulled out of hole with 12 1/4&quot; clean-out assembly on 6 5/8&quot; DP to 197 m.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T01:30:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T01:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">76</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Pulled out of hole with 12 1/4&quot; clean-out assembly on 6 5/8&quot; HWDP to 76 m.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T01:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T02:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">76</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Held prejob meeting prior to handle clean-out assembly.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T02:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T02:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">76</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Cleaned around rotary table. Removed hydraulic slips and installed master bushing.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T02:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T04:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Broke and laid out clean-out assembly. Broke and laid down 8&quot; DC, jar, MWD assembly, 8&quot; DC and mill assembly.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T04:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T05:15:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Cleared and cleaned the rigfloor.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T05:15:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T06:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">27</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop/wellhead equipment</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Washed BOP and wellhead area. Made up jet sub and 6 5/8&quot; HWDP. Ran in hole and washed BOP.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T06:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T06:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">54</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop/wellhead equipment</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Washed BOP and wellhead area. Made up jet sub and 6 5/8&quot; HWDP. Ran in hole and washed BOP/wellhead area with 2000 lpm/19 bar, 5 rpm/1 kNm. Pumped a full riser volumen at 54 m.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T06:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T07:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">320</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop/wellhead equipment</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Ran in hole with 6 5/8&quot; DP to 280 m, made up Spring Loaded Test tool and landed same in well head.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T07:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T12:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">320</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop activities</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Performed BOP test. Test #1, #2, #3, and #4 to 20 bar/5 min, 260 bar/10 min.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T12:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T13:30:00.000Z</witsml:dTimEnd><witsml:md uom="m">320</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop activities</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>equipment failure</witsml:stateDetailActivity><witsml:comments>BOP test #5 failed, troubleshooted and found leakage in HP manifold D12, was not able to determine which valve there was leaking, therefore isolated manifold and continued testing.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T13:30:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T14:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">320</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop activities</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Performed BOP test. Test #5 and #6 to 20 bar/5 min, 260 bar/10 min. Held prejob meeting concerning pick-up and running of whipstock assembly while performing BOP test #5 and #6.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T14:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T16:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop/wellhead equipment</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Pulled out of hole with SLT tool and 6 5/8&quot; DP, broke and laid down jet sub.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T16:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T16:15:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>drilling -- bop/wellhead equipment</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Cleared and cleaned rigfloor.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T16:15:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T17:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Picked up 6 5/8&quot; HWDP, Multicycle Valve, 8&quot; DC, x-o and kellycock(closed), made up DDM and tested Multicycle Valve with 2500 lpm/28 bar, cycled valve 5 times and veryfied that bypass valve closed. Pulled out and broke off x-o and kellycock.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T17:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T18:15:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Picked up window mill assembly and made up same to Multicycle Valve.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T18:15:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T18:45:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Picked up 13 3/8&quot; whipstock and made up same to window mill assembly. Installed jets and connected hydraulic hose between mill and whipstock.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T18:45:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T19:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">0</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Held prejob meeting with ongoing crew.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T19:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T20:15:00.000Z</witsml:dTimEnd><witsml:md uom="m">40</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Filled mill assembly with oil, ran in hole with whipstock/window mill assembly. Picked up MWD, aligned MWD scrabeline and whipstock, 34 degr. L, ran in hole to 40 m.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T20:15:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T20:30:00.000Z</witsml:dTimEnd><witsml:md uom="m">40</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Plugged in cable and loaded data/veryfied MWD tool.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T20:30:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T21:30:00.000Z</witsml:dTimEnd><witsml:md uom="m">90</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Ran in hole with whipstock/window mill assembly on 8&quot; DC to 90 m.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T21:30:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-01T22:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">90</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Removed master bushing and installed the hydraulic slips.</witsml:comments></witsml:activity><witsml:activity><witsml:dTimStart>2010-01-01T22:00:00.000Z</witsml:dTimStart><witsml:dTimEnd>2010-01-02T00:00:00.000Z</witsml:dTimEnd><witsml:md uom="m">673</witsml:md><witsml:phase>fixed</witsml:phase><witsml:proprietaryCode>plug abandon -- mill</witsml:proprietaryCode><witsml:state>ok</witsml:state><witsml:stateDetailActivity>success</witsml:stateDetailActivity><witsml:comments>Ran in hole with whipstock/window mill assembly on 6 5/8&quot; DP to 673 m. Running speed 3 min/stand.</witsml:comments></witsml:activity>
<witsml:equipFailureInfo><witsml:dTim>2009-12-31T00:00:00.000Z</witsml:dTim><witsml:md uom="m">2823</witsml:md><witsml:equipClass>pipe handling equ syst -- vertical pipe handling equ syst</witsml:equipClass><witsml:eTimMissProduction uom="min">180</witsml:eTimMissProduction><witsml:dTimRepair>2009-12-30T11:30:00.000Z</witsml:dTimRepair><witsml:description>Feilfunksjon på URA. Det er avvik mellom posisjon kloa på URA har og det DrillView viser.</witsml:description></witsml:equipFailureInfo>
</witsml:drillReport></witsml:drillReports>
\ No newline at end of file