Next Article in Journal
Acoustic Roughness Measurement of Railway Tracks: Laboratory Investigation of External Disturbances on the Chord-Method with an Optical Measurement Approach
Next Article in Special Issue
Generation of Synthetic Compressional Wave Velocity Based on Deep Learning: A Case Study of Ulleung Basin Gas Hydrate in the Republic of Korea
Previous Article in Journal
A SOA-Based Engineering Process Model for the Life Cycle Management of System-of-Systems in Industry 4.0
Previous Article in Special Issue
A Hybrid Neural Network Model for Predicting Bottomhole Pressure in Managed Pressure Drilling
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Rate of Penetration Prediction Method for Ultra-Deep Wells Based on LSTM–FNN

1
School of Petroleum Engineering, China University of Petroleum, Beijing 102249, China
2
State Key Laboratory of Petroleum Resources and Prospecting, Beijing 102249, China
*
Author to whom correspondence should be addressed.
Submission received: 7 June 2022 / Revised: 24 July 2022 / Accepted: 26 July 2022 / Published: 1 August 2022

Abstract

:
The drilling process is complex, especially for ultra-deep wells, which face the problems of high temperature, high pressure and poor drilling resistance in their formation. In order to establish an ROP (the Rate of Penetration) prediction model for ultra-deep wells, the characteristics of ultra-deep well drilling operations, such as formation temperature and formation pressure, are fully considered in the process of parameter optimization. Combined with the drilling mechanism and mutual information correlation coefficient, the final input parameters are determined. The powerful nonlinear fitting ability of the artificial intelligence method is very suitable for predicting the ROP. Considering the time sequence of multi-source data, this paper combines the powerful timing information-based mining ability of the LSTM (Long Short-Term Memory Neural Network) with the nonlinear fitting ability of FNN (Fully Connected Neural Network), and establishes an intelligent prediction model of the ROP based on a LSTM–FNN. The results show that the average relative error and R 2 of the LSTM–FNN model on the data of well 1 and well 2 are better than the FNN and LSTM models. In addition, the accuracy of the LSTM–FNN model on the data of adjacent wells is reduced by only 5%, which further verifies the good mobility of the model.

1. Introduction

Deep and ultra-deep well drilling has become the key focus of the future of oil and gas exploitation [1]. With the increase of well depth, the geological conditions become more complex, well formation becomes more difficult and drillability worsens, resulting in a low drilling efficiency, high safety risk, long drilling cycles and other problems [2]. However, the prediction of the rate of penetration (ROP) can lower drilling risks and optimize drilling parameters in advance, which is of great significance to the improvement of the efficiency of deep drilling [3].
With the progress of information technology, intelligent drilling and completion technology has begun to enter the field. Information technology, microelectronics technology, robotics technology, communication network technology and drilling and completion engineering have been closely combined and integrated, which has greatly promoted the innovation of oil drilling and production technology [4]. The intelligent prediction of the ROP is one of the most important aspects to intelligent drilling and completion. Although the ROP prediction is very important to improve drilling efficiency, it is difficult to match these factors with the ROP and establish an accurate ROP prediction model [5].
In recent years, with the deepening of the oilfield digitization process, the massive drilling data and efficient computing power of computers provide good conditions for data-driven ROP prediction. There are several Machine Learning (ML) methods [2,6], which have been applied in ROP prediction, such as Random Forest (RF) [7], Gradient Boosting Machines (GBM), K-nearest Neighbors (KNN) [3] and Support Vector Machine (SVM) [8,9]. However, when these machine learning models are trained using a large amount of drilling data, they facing the challenges of long training times and overfitting. When the volume of drilling data is very large, deep learning possesses a clear advantage, as computational efficiency and single-well prediction accuracy are significantly improved. A large number of researchers have begun to use fully connected neural network (FNN) to establish the ROP prediction [4,5,10,11,12], and compare it with machine learning models and ROP equations [13]. The results show that the established model has high precision and a fast training speed, which is better than the conventional machine learning and ROP equation model [14,15,16]. Abiodun Ismail Laval [4] et al. optimized the key parameters of the ROP and selected the density of rock, porosity and point load index as input parameters, and ROP as an output parameter, and a drilling data set with a total sample of 71 was established. Using these drilling data, an ROP prediction model is established based on the FNN algorithm, and the relative error on the test set is 14%. Furthermore, considering the timing characteristics between the drilling parameters and ROP, some scholars established an ROP prediction model by using recurrent neural network (RNN) [17,18,19,20], long short-term memory neural network (LSTM) and gated recurrent neural network (GRU). The hyperparameters of the neural network algorithm, such as network structure, activation function and weight parameters, have significant influence on the prediction effect of the model [21,22]. Some scholars have attempted to use a genetic algorithm (GA) [23], particle swarm optimization (PSO) and other algorithms to optimize the model’s hyperparameters [24,25] and to obtain the optimal hyperparameters and achieve the best prediction effect. Some scholars have also improved the effect of the model by combining the structures of various neural networks, as seen with Shuo Zhu [26].
However, for the problem of deep well drilling, the existing intelligent prediction models for the ROP tend to ignore the characteristics of deep well drilling, such as high temperature and high pressure. In addition, multiple drilling parameters do have time series correlation with ROP. However, the direct prediction of the ROP only after RNN or LSTM calculation is likely to lose other correlation characteristics. Therefore, the current intelligent prediction model of ROP still needs to be optimized.
Based on the characteristics of deep well drilling and data correlation, this paper analyzes and optimizes the input parameters of a deep well ROP intelligent prediction model. At the same time, considering the time series correlation and other complex correlations between multiple parameters and the ROP, the existing LSTM structure is optimized, and an intelligent prediction model of the ROP based on an LSTM–FNN algorithm is established. The accuracy and mobility of the model are analyzed through the field actual drilling data, which verifies the reliability and superiority of the model established in this paper.

2. Artificial Intelligence Algorithm

2.1. Fully Connected Neural Network

A fully connected neural network (FNN) is a computational model that can be used to approximate functional relationships between variables, identify features or perform other complex tasks. A typical fully connected neural network is shown in Figure 1, which consists of multiple layers, each of which contains many nodes.
The neural network starts from the input layer, and the output of the previous layer acts as the input of the next layer until the final result is output. As neurons receive input data from other neurons, each with some weight, the total input value received by the neurons will be compared to the neuron threshold and then processed through the activation function to generate the neuron output. As shown in Equation (1), the input matrix of the neural network is recorded as X i n , the output matrix is recorded as Y o u t   , the output matrix of n layer is recorded as   Y n   , the weight matrix is   W n   and the bias matrix is recorded as B n   , where n [   1   ,   4   ] . The structure of the fully connected neural network is expressed as follows:
{ Y 1 = X i n Y 2 = φ a c t i v e ( W 2 Y 1 + B 2 ) Y 3 = φ a c t i v e ( W 3 Y 2 + B 3 ) Y o u t = Y 4 = W 4 Y 3 + B 4      
φ a c t i v e is the activation function. Tanh and ReLU activation functions are widely used.
Tanh function: As shown in Equation (2), the range of the tanh function is (−1,1), and the average value of the activation function is close to 0, which is more conducive to improving the accuracy of the next layer of learning, but easily causes the problem of gradient disappearance. x is the input parameter of the activation function.
t a n h ( x ) = e x e x e x + e x  
ReLU function: As shown in Equation (3), only the linear function exists in the ReLU function, and the calculation speed is faster. There is no gradient saturation problem when the input parameter is positive.
R e L U ( x ) = m a x ( 0 , x )

2.2. Long Short-Term Memory Neural Network

A long short-term memory neural network (LSTM) is a neural network with the ability to remember short- and long-term information, which was proposed by Hochreiter and Schmidhuber [27] in 1997. Due to the prosperity of deep learning, LSTM has been modified by Felix Gers [28] and others many times. Eventually, a relatively systematic and complete LSTM algorithm was formed, and it has been widely used in many realms.
LSTM is a special recurrent neural network algorithm. Recurrent neural networks (RNNs) are sensitive to short-term information and seldom use long-term information. It is therefore difficult to deal with the dependencies between long term and short term information. Traditional RNNs always entail gradient vanishing, but LSTM can effectively avoid this problem. The specific structure of LSTM is shown in Figure 2.
LSTM has two transmission states; cell state ( C t ) and hidden state ( h t ). Throughout the entire process, C t changes quite slowly. Usually, the output C t in each different node is C t 1 of the previous cell plus several signals, while h t varies greatly. Additionally, in the LSTM algorithm, individual neurons are replaced by a unit structure. Each unit contains three gates: the forgetting gate, the input gate and the output gate. The whole process of LSTM can be briefly described by the Equation (4), below. In this equation, W is the weight in the whole process whereas b is the bias.
[ c ˜ t o t i t f t ] = [ t a n h σ σ σ ] ( W [ x t h t 1 ] + b ) c t = f t · c t 1 + i t · c ˜ t h t = o t · tan h ( c t )
Forgetting gate: The forgetting gate is a key component in the LSTM unit. It can control which information of the input is retained and which is forgotten, and avoid the problems of gradient vanishing and gradient explosion. The structure of the forgetting gate is shown in Figure 3a.
The forgetting gate determines what information the neural network discards from the previous cell state. The gate reads h t 1 and x t , then maps them to a signal f t between 0 and 1 by a sigmoid function. Finally, this signal f t is multiplied c t 1 of the previous cell state to determine what information is discarded. The signal of 1 indicates that the information is completely retained, while the signal of 0 indicates the information is completely discarded. The calculation expression is shown in Equation (5):
f t = σ ( W f [ h t 1 , x t ] + b f )
Input gate: The input gate is used to control how much of the input information is saved to the memory cell. The input gate consists of two parts. First, the input gate generates candidate state c ˜ t of the current unit through a tanh layer as seen in Equation (6):
C ˜ t = tan h ( W C [ h t 1 , x t ] + b C )
Second, the sigmoid function in the input gate produces a signal i t between 0 and 1. This is used to control how much information the candidate state c ˜ t needs to save. The structure of the signal acquisition in the input gate is shown in Figure 3b. The signal i t will be generated by the following equation (Equation (7):
i t = σ ( W i [ h t 1 , x t ] + b i )
The structure of obtaining C t in the input gate is shown in Figure 3c. Through the input gate, the old cell state will be updated to the new cell state. With the signal f t * C t 1 generated by the forgetting gate, the signal i t generated by the sigmoid function and the candidate state c ˜ t generated by the tanh layer, the new cell state C t will be obtained by Equation (8):
C t = f t C t 1 + i t C ˜ t
Output gate: Output signals are based on cell states, and there is also a filtering process. The structure of the output gate is shown in Figure 3d below. There are also two operation parts: first, the sigmoid function in the output gate will generate the control signal o t between 0 and 1. The signal o t will be generated by Equation (9):
o t = σ ( W o [ h t 1 , x t ] + b o )
Second, the final output signal h t is obtained by the output signal t a n h ( C t ) multiplied with the control signal o t . The signal h t will be generated by Equation (10):
h t = o t tan h ( C t )
The output gate controls the influence of the current cell unit, and also determines which part of the cell unit will be output at the time of step t. The structure of the output gate is shown in Figure 3d.

3. Field Data Processing

3.1. Data Introduction

Compared with deep well drilling operations, ultra-deep well drilling operations face more difficulties and challenges. Under the harsh drilling environment of high temperature and high pressure in deep formation, the properties of drilling fluid will change, so it is difficult to both carry rock cuttings and cool the bit in time, resulting in a reduced ROP and accelerated bit wear. In addition, with the increase of well depth, the formation abrasiveness increases, the drillability is poor, the formation pressure system is complex and the safe density window is narrow, which increases the difficulty of drilling parameter optimization. Therefore, in the process of establishing the prediction model of ROP in ultra-deep wells, it is necessary to focus on the complex correlation between parameters such as bottom hole temperature (T), formation pressure, rock physical properties, bit type and ROP.
The drilling and logging data used in this paper come from two vertical and ultra-deep wells in a block of the Tarim oil fields, which are marked as well 1 and well 2, respectively. The straight-line distance between the two wells is 5098 m, and the well depth is more than 6000 m. The deep formation is mainly interbedded with mudstone and siltstone, and the difference in rock physical properties is small. The specific input parameters are shown in Table 1.

3.2. Feature Correlation Analysis

Through feature selection, on the one hand, the correlation between various parameters and the ROP can be clarified; on the other hand, irrelevant parameters can be removed to reduce the complexity and improve the calculation efficiency of the model. The depth neural network model has a strong nonlinear fitting ability, and the Spearman and Pearson test methods are mostly used to test the linear relationship between multiple parameters and the ROP. For the nonlinear correlation test, this paper introduces the mutual information feature selection method.
Mutual information I (X: Y) of continuous random variables X and Y is as follows:
I ( X ; Y ) = H ( X ) + H ( Y ) H ( X , Y ) =     p ( x , y ) log p ( x , y ) p ( x ) p ( y ) d x d y
In Equation (11), H ( X ) and H ( Y ) are the unconditional entropy of variables X and Y, respectively, H ( X , Y ) is the joint entropy of variables X and y, and p ( x , y ) is the joint probability distribution of X and Y; p ( x ) and p ( y ) are marginal probability distributions, respectively.
Mutual information is easily affected by the amount of data. In order to eliminate the influence of the amount of data on the value of mutual information, it is necessary to normalize the mutual information, as shown in the following formula:
NMI ( X ; Y ) = 2 I ( X , Y ) H ( X ) + H ( Y )
The value range of NMI is [0, 1]. If the NMI value of X and Y is 0, it means that the two variables are independent variables or mutually independent variables; that is, they have no information contained in each other. On the contrary, the closer the mutual information value is to 1, the higher the degree of correlation between the two variables, and the more the same amount of information is contained.
This paper focuses on the correlation analysis of engineering parameters. As shown in Figure 4, the NMI of the rotary table speed, riser pressure, outlet flow and outlet conductivity are about 0.08, which is relatively small, indicating that the correlation between the above parameters and mechanical ROP is low and should be removed.
At the same time, the NMI value of the main pump impulse and inlet flow remains large (0.81) and the NMI value of the inlet flow and ROP is greater than that of the main pump impulse and ROP. In order to reduce the characteristic dimension of the ROP prediction model, the total pump impulse speed is removed.

3.3. Time Series Data Processing

As shown in the Figure 5, before the time series transform processing for drilling data, the drilling data shall be sampled every 1.0 m. The series data containing different characteristic parameters and ROP values, and the data matrix shape is [n, m], where n is the number of samples and m is the characteristic number of each sample. The time series data needs to combine the data within a time interval to form a sequential data set. The depth was taken as the timing scale to divide the time series. Since the drilling rate before the t time step also belonged to known data, the drilling rate before the t time step was taken as the new input feature when constructing the time series data, and the input of the time series data included as all sampling points 10 m before the t time [(xt−10, yt−10), (xt−9, yt−9), (xt−8, yt−8),…, (xt−3, yt−3), (xt−2, yt−2), (xt−1, yt−1), (xt, yt)].
The output time t + 1 is the drilling rate of one meter below the sampling point (yt+1). The time steps of the input parameters have an important influence on the models. In order to ensure the precision of the ROP prediction models, the time steps of the drilling data should be greater than 1 m. For the input parameters, the longer the time steps are, the more information is usually contained. However, with the increase of time steps length, the complexity of the model increases and the calculation speed decreases. In order to ensure the timeliness of the model, the time steps of input parameters should not be too large.

4. Model Construction

4.1. Model Workflow

The frame of the intelligent ROP prediction model established in this paper is shown in Figure 6. According to the drilling characteristics of ultra-deep wells, the key influencing factors are analyzed and the model input parameters are preliminarily determined. The characteristic parameters are analyzed by cross relation number, the input parameters are optimized, and the characteristic dimension is reduced. The original data were transformed into time series data, and the drilling rate prediction model was built by LSTM and FNN in a series. By optimizing the super-parameters of the model, the optimal prediction model was obtained.

4.2. Parameter Optimization

In this paper, well depth is the basis of the time series data division. From the perspective of the model, different time series data lengths contains different information, which leads to a difference in model training accuracy. From the analysis of the actual drilling process, the depth range reflects how much information of engineering geological parameters before the time step is considered when the model predicts the drilling rate of the next time step, so the step length of the time series data is a model hyperparameter that needs to be prioritized. The hyperparameters to be optimized in the process of model establishment include: the timing data input step, that is, the well depth range of each time series data; the number of LSTM layers; the number of LSTM hidden layer neurons; the number of FNN layers; the number of FNN neurons; the FNN activation function; and the model learning rate. The specific hyperparameter search range is shown in the Table 2.
80% of the drilling data of well 1 were randomly selected as the training set and 20% as the test set to optimize the hyperparameter of the model. The mean relative error (MRE) and regression determination coefficient ( R 2 ) were selected as the standards to test the prediction accuracy of the model, As shown in Equations (13) and (14).
MRE = 1 n i = 1 n [ | y i p y i | y i ] × 100
R 2 = 1 i = 1 n ( y i y p ) 2 i = 1 n ( y i y ¯ ) 2
where, n is the number of samples, y i p is the predicted value, y i is the true value and y ¯ is the average of the actual values.
According to the calculation results, when the parameters in Table 3 are selected for the model, the model achieves the optimal prediction accuracy. At this time, the prediction accuracy of the model on the test set, where the MRE is 12%,   R 2 , is 0.90.

5. File Application

In order to verify the migration effect of the intelligent ROP prediction model based on LSTM–FNN, we will take 80% of the data of well 1 as the training set and 20% as the test set, and use the optimal ROP prediction model to predict the ROP of well 2. In addition, prediction models of the ROP are established based on LSTM and FNN algorithms. The prediction accuracy of the model is shown in Table 4. The prediction results of the model are shown in Figure 7 and Figure 8. Figure 7a–c are the partial prediction results of the FNN, LSTM and LSTM–FNN on test set 1, respectively. Figure 8a–c are the partial prediction results of the FNN, LSTM and LSTM–FNN on test set 2, respectively.
As shown in Table 4, the relative error difference between the FNN and LSTM on the training set, test set 1 and test set 2 is small, about 1%. Although the LSTM ROP prediction model increases the time series information processing process compared with the FNN model, the accuracy of the model has not been greatly improved.
As shown in Figure 9a, on the training set, the relative errors of the LSTM–FNN model are 4.17% and 5.07% lower than those of the LSTM and FNN models, respectively; on test set 1, the relative errors of the LSTM–FNN model are 4.92% and 4.91% lower than those of the LSTM and FNN models, respectively; on test set 2, the relative errors of the LSTM–FNN model are 7.33% and 8.07% lower than those of the LSTM and FNN models, respectively. After adding an FNN network to the output layer of the LSTM, the accuracy of the model is greatly improved.
It can be seen from Figure 9a that the MRE of the FNN model in the training set, test set 1 and test set 2 are 18.12%, 20.02% and 26.30%, respectively. The maximum MRE difference of the FNN model in the three data sets is 8.18%; the MRE of the LSTM model in the training set, test set 1 and test set 2 are 17.23%, 20.03% and 25.56%, respectively. The maximum MRE difference of the model in the three data sets is 8.33%; the MRE of the LSTM–FNN model in the training set, test set 1 and test set 2 are 13.05%, 15.11% and 18.23%, respectively. The maximum MRE difference of the model in the three data sets is 5.18%; the results show that LSTM–FNN not only has higher accuracy than the other two models on similar data sets and migrated data sets, but also has the lowest reduction in model accuracy.
R 2 is the fitting degree of the established model to the data, and the straight range is [0, 1]. The closer R 2 is to 1, the better the model is. According to Figure 9b on the three data sets, the R 2 of the LSTM–FNN model is 0.9, 0.87 and 0.83, respectively; these results are higher than those of the other two models. This further demonstrates that the LSTM–FNN model fully excavates data information to establish an ROP prediction model.

6. Conclusions

Ultra-deep well drilling is faced with challenges such as high temperature and high pressure at the bottom of the well, strong formation abrasiveness and staggered soft and hard formations. Accurate ROP prediction is of great significance for bit tool optimization and engineering parameter optimization.
The influence of temperature, pressure and other parameters on the ROP should be fully considered in the process of the ROP prediction of ultra-deep wells. In this paper, the drilling mechanism and data correlation analyses are combined to optimize the input parameters of the model.
In the process of establishing the ROP prediction model, the LSTM–FNN model is established to fully mine the time series information and nonlinear information between multiple parameters and the ROP. Compared with the single FNN and LSTM ROP prediction models, the MRE of the model is reduced by 8.07% and the R 2 is increased by 0.27 at most. In addition, on the new data set, the accuracy and R 2 reduction of the LSTM–FNN model are the smallest, indicating that the model has strong migration ability. This paper verifies that the optimal combination of network structures can improve the fitting ability of the algorithm, and this plays an important role in improving the accuracy and mobility of the model.

Author Contributions

Conceptualization, H.L. and X.S.; methodology, H.L., X.S. and Y.J.; software, H.L. and Z.P.; validation, H.L.; formal analysis, X.S. and H.L.; investigation, X.S. and H.L.; resources, Z.P.; data curation, X.S.; writing—original draft preparation, X.S. and H.L.; writing—review and editing, X.S. and Y.J.; supervision, Y.J.; funding acquisition, X.S. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by National Key Research and Development Program of China (funded by National Natural Science Foundation of China, No. 2019YFA0708300), the Strategic Cooperation Technology Projects of CNPC and CUPB (funded by China National Petroleum Corporation, No. ZLZX2020-03), the National Science Fund for Distinguished Young Scholars (funded by National Natural Science Foundation of China, No. 52125401) and Science Foundation of China University of Petroleum, Beijing (funded by China University of petroleum, Beijing, No. 2462022SZBH002).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The data are not publicly available due to involve the information of Chinese oil fields and need to be kept confidential.

Acknowledgments

The authors want to thank the National Natural Science Foundation of China and the CNPC for the financial support.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Diaz, M.B.; Kim, K.Y.; Shin, H.-S.; Zhuang, L. Predicting rate of penetration during drilling of deep geothermal well in Korea using artificial neural networks and real-time data collection. J. Nat. Gas Sci. Eng. 2019, 67, 225–232. [Google Scholar] [CrossRef]
  2. Zhou, F.; Fan, H.; Liu, Y.; Ye, Y.; Diao, H.; Wang, Z.; Rached, R.; Tu, Y.; Davio, E. Application of Xgboost Algorithm in Rate of Penetration Prediction with Accuracy. In Proceedings of the International Petroleum Technology Conference, Riyadh, Saudi Arabia, 21–23 February 2022. [Google Scholar]
  3. Zhang, H.; Lu, B.; Liao, L.; Bao, H.; Wang, Z.; Hou, X.; Mulunjkar, A.; Jin, X. Combining Machine Learning and Classic Drilling Theories to Improve Rate of Penetration Prediction. In Proceedings of the SPE/IADC Middle East Drilling Technology Conference and Exhibition, Abu Dhabi, United Arab Emirates, 25–27 May 2021. [Google Scholar]
  4. Lawal, A.I.; Kwon, S.; Onifade, M. Prediction of rock penetration rate using a novel antlion optimized ANN and statistical modelling. J. Afr. Earth Sci. 2021, 182, 104287. [Google Scholar] [CrossRef]
  5. Elmgerbi, A.M.; Ettinger, C.P.; Tekum, P.M.; Thonhauser, G.; Nascimento, A. Application of Machine Learning Techniques for Real Time Rate of Penetration Optimization. In Proceedings of the SPE/IADC Middle East Drilling Technology Conference and Exhibition, Abu Dhabi, United Arab Emirates, 25–27 May 2021. [Google Scholar]
  6. Hazbeh, O.; Aghdam, S.K.-y.; Ghorbani, H.; Mohamadian, N.; Ahmadi Alvar, M.; Moghadasi, J. Comparison of accuracy and computational performance between the machine learning algorithms for rate of penetration in directional drilling well. Pet. Res. 2021, 6, 271–282. [Google Scholar] [CrossRef]
  7. Hegde, C.; Wallace, S.; Gray, K. Using Trees, Bagging, and Random Forests to Predict Rate of Penetration During Drilling. In Proceedings of the SPE Middle East Intelligent Oil and Gas Conference and Exhibition, Abu Dhabi, United Arab Emirates, 15–16 September 2015. [Google Scholar]
  8. Kor, K.; Altun, G. Is Support Vector Regression method suitable for predicting rate of penetration? J. Pet. Sci. Eng. 2020, 194, 107542. [Google Scholar] [CrossRef]
  9. Abdulmalek, A.S.; Salaheldin, E.; Abdulazeez, A.; Mohammed, M.; Abdulwahab, Z.A.; Mohamed, I.M. Prediction of Rate of Penetration of Deep and Tight Formation Using Support Vector Machine. In Proceedings of the SPE Kingdom of Saudi Arabia Annual Technical Symposium and Exhibition, Dammam, Saudi Arabia, 23–26 April 2018. [Google Scholar]
  10. Amadi, K.; Iyalla, I.; Prabhu, R. Modeling and Predicting Performance of Autonomous Rotary Drilling System Using Machine Learning Techniques. In Proceedings of the SPE Nigeria Annual International Conference and Exhibition, Lagos, Nigeria, 1–3 August 2021. [Google Scholar]
  11. Mahmoud, A.A.; Elkatatny, S.; Al-AbdulJabbar, A.; Moussa, T.; Gamal, H.; Shehri, D.A. Artificial Neural Networks Model for Prediction of the Rate of Penetration While Horizontally Drilling Carbonate Formations. In Proceedings of the 54th U.S. Rock Mechanics/Geomechanics Symposium, Golden, CO, USA, 28 June–1 July 2020. [Google Scholar]
  12. Al-AbdulJabbar, A.; Elkatatny, S.; Mahmoud, M.; Abdulraheem, A. Predicting Rate of Penetration Using Artificial Intelligence Techniques. In Proceedings of the SPE Kingdom of Saudi Arabia Annual Technical Symposium and Exhibition, Dammam, Saudi Arabia, 23–26 April 2018. [Google Scholar]
  13. Aliyev, R.; Paul, D. A Novel Application of Artificial Neural Networks to Predict Rate of Penetration. In Proceedings of the SPE Western Regional Meeting, San Jose, CA, USA, 23–26 April 2019. [Google Scholar]
  14. Negara, A.; Saad, B. Combining Insight from Physics-Based Models into Data-Driven Model for Predicting Drilling Rate of Penetration. In Proceedings of the International Petroleum Technology Conference, Dammam, Saudi Arabia, 13–15 January 2020. [Google Scholar]
  15. Soares, C.; Gray, K. Real-time predictive capabilities of analytical and machine learning rate of penetration (ROP) models. J. Pet. Sci. Eng. 2019, 172, 934–959. [Google Scholar] [CrossRef]
  16. Diaz, M.B.; Kim, K.Y.; Shin, H.S. On-Line Prediction Model for Rate of Penetration (ROP) With Cumulating Field Data in Real Time. In Proceedings of the 4th ISRM Young Scholars Symposium on Rock Mechanics, Jeju, Korea, 10–12 May 2017. [Google Scholar]
  17. Hong, Y.; Yoo, J.; Wang, S.; Yoon, S. Augmented Machine Learning Approach of Rate of Penetration Prediction for North Sea Oilfield. In Proceedings of the Offshore Technology Conference Asia, Kuala Lumpur, Malaysia, 2–6 November 2020. [Google Scholar]
  18. Alkinani, H.H.; Al-Hameedi, A.T.T.; Dunn-Norman, S. Data-driven recurrent neural network model to predict the rate of penetration. Upstream Oil Gas Technol. 2021, 7, 100047. [Google Scholar] [CrossRef]
  19. Li, Y.; Samuel, R. Prediction of Penetration Rate Ahead of the Bit through Real-Time Updated Machine Learning Models. In Proceedings of the SPE/IADC International Drilling Conference and Exhibition, The Hague, The Netherlands, 5–7 March 2019. [Google Scholar]
  20. Alkinani, H.H.; Al-Hameedi, A.T.; Dunn-Norman, S.; Flori, R.E.; Al-Alwani, M.A.; Mutar, R.A. Dynamic Neural Network Model to Predict the Rate of Penetration Prior to Drilling. In Proceedings of the 53rd U.S. Rock Mechanics/Geomechanics Symposium, New York, NY, USA, 23–26 June 2019. [Google Scholar]
  21. Bardhan, A.; Kardani, N.; GuhaRay, A.; Burman, A.; Samui, P.; Zhang, Y. Hybrid ensemble soft computing approach for predicting penetration rate of tunnel boring machine in a rock environment. J. Rock Mech. Geotech. Eng. 2021, 13, 1398–1412. [Google Scholar] [CrossRef]
  22. Li, C.; Cheng, C. Prediction and Optimization of Rate of Penetration using a Hybrid Artificial Intelligence Method based on an Improved Genetic Algorithm and Artificial Neural Network. In Proceedings of the Abu Dhabi International Petroleum Exhibition & Conference, Abu Dhabi, United Arab Emirates, 9–12 November 2020. [Google Scholar]
  23. Elkatatny, S. Rate of Penetration Prediction Using Self-Adaptive Differential Evolution-Artificial Neural Network. In Proceedings of the SPE Kingdom of Saudi Arabia Annual Technical Symposium and Exhibition, Dammam, Saudi Arabia, 23–26 April 2018. [Google Scholar]
  24. Amadi, K.W.; Iyalla, I.; Liu, Y.; Alsaba, M.; Kuten, D. Evaluation of Derived Controllable Variables for Predicting Rop Using Artificial Intelligence in Autonomous Downhole Rotary Drilling System. In Proceedings of the SPE/IADC Middle East Drilling Technology Conference and Exhibition, Abu Dhabi, United Arab Emirates, 25–27 May 2021. [Google Scholar]
  25. Adetifa, O.; Iyalla, I.; Amadi, K. Comparative Evaluation of Artificial Intelligence Models for Drilling Rate of Penetration Prediction. In Proceedings of the SPE Nigeria Annual International Conference and Exhibition, Lagos, Nigeria, 1–3 August 2021. [Google Scholar]
  26. Zhu, S.; Song, X.; Zhu, Z.; Yao, X.; Liu, M. Intelligent Prediction of Stuck Pipe Using Combined Data-Driven and Knowledge-Driven Model. Appl. Sci. 2022, 12, 5282. [Google Scholar] [CrossRef]
  27. Hochreiter, S.; Schmidhuber, J. Long Short-Term Memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef] [PubMed]
  28. Gers, F.A.; Schmidhuber, J.; Cummins, F. Learning to Forget: Continual Prediction with LSTM. Neural Comput. 2000, 12, 2451–2471. [Google Scholar] [CrossRef] [PubMed]
Figure 1. The FNN structure.
Figure 1. The FNN structure.
Applsci 12 07731 g001
Figure 2. The LSTM structure [27].
Figure 2. The LSTM structure [27].
Applsci 12 07731 g002
Figure 3. The LSTM internal structures: (a) the forgetting gate structure; (b) signal acquisition in the input gate; (c) obtaining C t in the input gate; (d) the output gate structure [27].
Figure 3. The LSTM internal structures: (a) the forgetting gate structure; (b) signal acquisition in the input gate; (c) obtaining C t in the input gate; (d) the output gate structure [27].
Applsci 12 07731 g003aApplsci 12 07731 g003b
Figure 4. Mutual information correlation coefficient.
Figure 4. Mutual information correlation coefficient.
Applsci 12 07731 g004
Figure 5. Schematic diagram of time series data construction.
Figure 5. Schematic diagram of time series data construction.
Applsci 12 07731 g005
Figure 6. LSTM–FNN network framework.
Figure 6. LSTM–FNN network framework.
Applsci 12 07731 g006
Figure 7. ROP prediction results on test set 1: (a) ROP prediction results of FNN model; (b) ROP prediction results of LSTM model; (c) ROP prediction results of LSTM-FNN model.
Figure 7. ROP prediction results on test set 1: (a) ROP prediction results of FNN model; (b) ROP prediction results of LSTM model; (c) ROP prediction results of LSTM-FNN model.
Applsci 12 07731 g007
Figure 8. ROP prediction results on test set 2: (a) ROP prediction results of FNN model; (b) ROP prediction results of LSTM model; (c) ROP prediction results of LSTM-FNN model.
Figure 8. ROP prediction results on test set 2: (a) ROP prediction results of FNN model; (b) ROP prediction results of LSTM model; (c) ROP prediction results of LSTM-FNN model.
Applsci 12 07731 g008
Figure 9. Comparison chart of ROP prediction results: (a)the MRE of three ROP prediction models; (b) the R 2 of three ROP prediction models.
Figure 9. Comparison chart of ROP prediction results: (a)the MRE of three ROP prediction models; (b) the R 2 of three ROP prediction models.
Applsci 12 07731 g009
Table 1. Drilling parameters.
Table 1. Drilling parameters.
ItemsParameter
GeologicalGamma Ray (GR), Spontaneous Potential (SP), Acoustic (AC)
EngineeringWell Depth, Rotational Speed (RPM), Weight on Bit (WOB), Torque, Hook Load (HL), Riser Pressure (RP), Inlet Flow (IF), Outlet Flow (OF), Inlet Temperature (IT), Outlet Temperature (OT), Inlet Density of Drilling Fluid (ID), Outlet Density of Drilling Fluid (OD), Inlet Conductivity (IC), Outlet Conductivity (OC), Pump Impulse Speed (PIS)
TrajectoryDeviation Angle, Borehole Curvature
Drilling FluidDensity, Viscosity, Plastic Viscosity, Yield
Drilling BitBit Size, Bit Type, Bit Footage (BF)
Table 2. LSTM–FNN model parameter combination.
Table 2. LSTM–FNN model parameter combination.
LSTMFNNModel Parameters
Step LengthLayersNeuralLayerNeuralActive FunctionLearning Rate
5110132ReLU1 × 10−3
10220264
153303128Tanh1 × 10−4
204404256
Table 3. LSTM–FNN model parameter selection.
Table 3. LSTM–FNN model parameter selection.
LSTMFNNModel Parameters
Step LengthLayersNeuralLayerNeuralActive FunctionLearning Rate
102303128ReLU1 × 10−3
Table 4. Precision comparison of ROP prediction models.
Table 4. Precision comparison of ROP prediction models.
ModelTrain Set
Well 1 (80%)
Test Set 1
Well 1 (20%)
Test Set 2
Well 2 (100%)
MRE R 2 MRE R 2 MRE R 2
FNN18.120.7220.020.6926.300.58
LSTM17.230.8320.030.7125.560.65
LSTM + FNN13.050.9015.110.8718.230.83
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Liu, H.; Jin, Y.; Song, X.; Pei, Z. Rate of Penetration Prediction Method for Ultra-Deep Wells Based on LSTM–FNN. Appl. Sci. 2022, 12, 7731. https://0-doi-org.brum.beds.ac.uk/10.3390/app12157731

AMA Style

Liu H, Jin Y, Song X, Pei Z. Rate of Penetration Prediction Method for Ultra-Deep Wells Based on LSTM–FNN. Applied Sciences. 2022; 12(15):7731. https://0-doi-org.brum.beds.ac.uk/10.3390/app12157731

Chicago/Turabian Style

Liu, Hongtao, Yan Jin, Xianzhi Song, and Zhijun Pei. 2022. "Rate of Penetration Prediction Method for Ultra-Deep Wells Based on LSTM–FNN" Applied Sciences 12, no. 15: 7731. https://0-doi-org.brum.beds.ac.uk/10.3390/app12157731

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop