Atheer Al Attar, Iraq
Sep 25, 2016
This type of accident is called Blow Out, in Petroleum Engineering there is a series of calculations you have to perform to control the well.
These calculations are called Kill Sheet
output$imaasp <- reactive({(c()-input$cmw)*input$tvd*.052})
#Drill Pipe
vtoldrlp<-reactive({input$drlplngth*input$drlpvol})
output$vtoldrlp<-reactive(vtoldrlp())
#HWDP
hvtoldrlp<-reactive({input$hdrlplngth*input$hdrlpvol})
output$hvtoldrlp<-reactive(hvtoldrlp())
#DC
vtoldrlc<-reactive({input$drlclngth*input$drlcvol})
output$vtoldrlc<-reactive(vtoldrlc())
#Drill String
dsvol<-reactive(vtoldrlp()+hvtoldrlp()+vtoldrlc())
output$dsvol<-reactive(vtoldrlp()+hvtoldrlp()+vtoldrlc())