Study on Evaluation and Prediction for Shale Gas PDC Bit in Luzhou Block Sichuan Based on BP Neural Network and Bit Structure
Abstract
:1. Introduction
2. Sensitivity Analysis of Structural Characteristics of Drill Bit
3. Bit Footage and ROP Prediction Model
4. Conclusions
- (1)
- The number of blades, cutting angle of cutters, crown top rotation radius, internal cone angle, and diameter of cutters are the main structural characteristics that affect the bit’s ROP and footage. The cutter-arrangement method and the design of crown rotation radius and internal cone angle are the main optimization objectives to improve the bit’s performance. However, the degree of effect varies depending on the formation conditions. The cutting angle of cutters has a bigger influence on the ROP than the crown rotation radius and internal cone angle in formations with high abrasiveness and poor drill ability. Still, the inverse is true in formations with good drill ability. The drill bit structure can be reasonably optimized based on geological conditions.
- (2)
- The blade number, crown top rotation radius, inner cone angle, and cutting angle of cutter have a greater influence on the ROP than the footage, whereas the thickness of blades, gauge length, gauge width, gauge diameter length, and equivalent diameter of nozzle have a greater influence on the footage than the ROP, allowing the bit structure to be reasonably optimized based on field operation requirements. The drill bit structure can be reasonably optimized based on on-site operation requirements.
- (3)
- Based on analyzing and obtaining the characteristic parameters of the drill bit and the on-site usage data of the drill bit, a BP neural network is used to establish a prediction model for the mechanical drilling speed and footage of the drill bit in specific layers, and the optimal number of hidden layer units for each prediction model is obtained. The goodness of fit is greater than 85%, and the model’s accuracy is outstanding. It can provide a theoretical basis for the optimization of structural characteristics and the prediction of application effect of shale gas bits in specific formations in Luzhou block, Sichuan province.
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
Appendix A
Drill Bit Structure | Analysis Method for Structural Characteristics of Drill Bits | Schematic Diagram of Drill Bit Feature Analysis | |
---|---|---|---|
Hydraulic structural parameters | Nozzle | The measurement of nozzle size is achieved by applying the point cloud data of the cylindrical surface inside the nozzle through the “domain” in Geomagic reverse modeling software (GeomagicDesignX software), to fit and calculate the cylinder that generates the nozzle, and using measurement commands to measure it. | |
Channel | The measurement of channel depth and width is achieved by capturing the contour of the drill bit using the patch sketch in Geomagic reverse modeling software, and then fitting the contour point cloud data to measure the channel depth and width. | ||
Cutting structure parameters | Crown shape | It is necessary to comprehensively utilize a series of operations such as “domain”, “basic surface”, “conversion surface”, “surface filling”, and “rotation”. The operation steps are often complex and the methods are not unique. The core concept is to use “domain” to apply and fit the cutting teeth on the drill bit, and convert them into a surface model. By using the rotated surface sketch, the contours of all teeth are projected onto the blade surface and the drill bit profile curve is planned to be collaboratively drawn. | |
To extract the cutter wing curve, it is necessary to use the patch sketch to rotate, intercept the contour line of a cutter wing, and draw the cutter wing curve by fitting the data points spaced on the cutter wing. | |||
Coronal parameters | The analyzed coronal parameters include internal cone angle, coronal rotation radius, and gauge diameter segment length. By extracting the drill bit profile curve and blade curve above, the crown parameters can be measured. | ||
Diameter preserving | The design parameters for diameter preservation analyzed in the analysis of rock-breaking structure characteristics of drill bits include diameter preservation length and diameter preservation width; The measurement of diameter preservation length requires the use of sketches, the identification of diameter preservation and gauge characteristics using experience, and the measurement of diameter preservation data. | ||
The measuring of the diameter preserving width is to use the surface sketch to intercept the point cloud of the cross section of the diameter, and to measure the fitting. | |||
The spiral Angle of the gauge is produced by smearing the “domain”, and the gauge side is automatically fitted, and the outline of a single gauge is captured by the surface sketch and measured. | |||
Blade | The thickness of the blade is obtained by using a surface sketch to capture the cross-sectional contour data points at the blade, fitting the edges on both sides of the blade, and measuring the length of its connecting line, which is the blade thickness. | ||
Cutter structure parameters | The structural parameters of the analyzed cutters include the diameter, the cutting angle range, the cutter edge height, and the cutter shape. The height of the cutter edge is measured based on the drawn drill bit profile curve and blade curve, and the judgment of the cutter shape can be directly obtained through observation. The cutter diameter was measured using a “ domain “ smear fitted cylinder. | ||
Before measuring the cutting angle of cutters, it is necessary to construct a blade surface, which is used as the reference for measuring the cutting angle of cutters. For conventional cylindrical cutters, the cutting angle of the cutter is determined by measuring the angle between the fitted cutter surface and the corresponding blade flank surface by applying a “domain” fitting to the surface of the cutter. For special-shaped cutters, the cylindrical surface of the cutter is fitted by applying “domain” to obtain the axis of the cylindrical surface. The angle between the axis and the corresponding blade surface is measured as the residual angle of the cutting angle of the cutter. |
Appendix B
Algorithm A1. The calculation code of Spearman rank correlation coefficient. |
%% Clear all variables in the workspace. clear all; clc; %% Load variables. load Inputdata.mat; % Load drill bit structure output variables. load Outputdata.mat; % Load drill bit footage and ROP output variables. %% Calculate the Spearman correlation coefficients. for i = 1: size (Outputdate,2); % The “size” represents the number of columns in a two-dimensional matrix of input variables. for j = 1: size (Inputdata,2); % The “size” represents the number of columns in a two-dimensional matrix of output variables. Data= [Inputdata (:, j) Outputdate (:, i)]; % Create a 2-column matrix DATA, with the first column being the j-th column of the input variable and the second column being the i-th column of the output variable. Spearman = corr (Data, ‘type’, ‘Spearman’); % Calculate the correlation coefficient of Spearman type based on the established matrix. S (j,i) = Spearman(1,2); % Establish a matrix S with 1 row and 2 columns, corresponding to two Spearman correlation coefficients for each drill bit structure with respect to footage and drilling speed. end end |
Appendix C
Algorithm A2. The prediction program code based on the BP neural network algorithm. |
%% Clear all variables in the workspace. clear all; clc; %% Training/testing set generation. load Inputdata.mat; load Outputdata.mat; pca_gj = data (:,:); temp = randperm (size (pca_gj, 1)); % Randomly generate training and testing sets. % Create training set. P_train = pca_gj (temp (1: 4), :)’; T_train = output (temp (1: 4), :)’; % Create test set. P_test = pca_gj (temp (5: end), :)’; T_test = output (temp (5: end), :)’; N = size(P_test,2); %% BP neural network creation, training, and simulation testing. % Create a network. net = newff (P_train, T_train, 9); % Set training parameters. net.trainParam.epochs = 10,000; % Training frequency, set to 10,000 times here. net.trainParam.goal = 1 × 10−3; % The minimum error of the training objective is set to 1 × 10−3 here. net.trainParam.lr = 0.01; % Learning rate, set to 0.01 here. % Training Network net = train (net, P_train, T_train); % Simulation test T_sim_bp = sim(net,P_test); %% performance evaluation % relative error error_bp(1,:) = abs(T_sim_bp(1,:)—T_test(1,:))./T_test(1,:); error_bp(2,:) = abs(T_sim_bp(2,:)—T_test(2,:))./T_test(2,:); % coefficient of determination R^2 R2_bp(1) = (N * sum(T_sim_bp(1,:) .* T_test(1,:))—sum(T_sim_bp(1,:)) * sum(T_test(1,:)))^2/((N * sum((T_sim_bp(1,:)).^2)—(sum(T_sim_bp(1,:)))^2) * (N * sum((T_test(1,:)).^2)—(sum(T_test(1,:)))^2)); R2_bp(2) = (N * sum(T_sim_bp(2,:) .* T_test(2,:))—sum(T_sim_bp(2,:)) * sum(T_test(2,:)))^2/((N * sum((T_sim_bp(2,:)).^2)—(sum(T_sim_bp(2,:)))^2) * (N * sum((T_test(2,:)).^2)—(sum(T_test(2,:)))^2)); % Result comparison result_bp = [T_test’ T_sim_bp’ error_bp’] %% Draw a picture Figure (1) Plot (1: N, T_test (1, :), ‘b: *’, 1: N, T_sim_bp (1, :), ‘r-o’) Legend (‘ true value ‘, ‘BP predicted value ‘) xlabel (‘forecasting sample ‘) ylabel (‘ Predicted value 1’) Figure (2) Plot (1: N, T_test (2, :), ‘b: *’, 1: N, T_sim_bp (2, :), ‘r-o’) Legend (‘ true value ‘, ‘BP predicted value ‘) xlabel (‘forecasting sample ‘) ylabel (‘ Predicted value 2’) |
References
- Guo, T. Key geological issues and main controls on accumulation and enrichment of Chinese shale gas. Pet. Explor. Dev. 2016, 43, 349–359. [Google Scholar] [CrossRef]
- Xu, Q.; Xu, F.; Jiang, B.; Zhao, Y.; Zhao, X.; Ding, R.; Wang, J. Geology and transitional shale gas resource potentials in the Ningwu Basin, China. Energy Explor. Exploit. 2018, 36, 1482–1497. [Google Scholar] [CrossRef]
- Li, S.Z.; Zhou, Z.; Nie, H.K.; Zhang, L.F.; Song, T.; Liu, W.B.; Li, H.H.; Xu, Q.C.; Wei, S.Y.; Tao, S. Distribution characteristics, exploration and development, geological theories research progress and exploration directions of shale gas in China. China Geol. 2022, 5, 110–135. [Google Scholar] [CrossRef]
- Yu, G.; Liu, H.; Li, H.; Fang, Y.; Luo, L. Prediction on peak production of shale gas, southern Sichuan Basin. Nat. Gas Explor. Dev. 2023, 46, 97. [Google Scholar]
- Melikoglu, M. Geothermal energy in Turkey and around the World: A review of the literature and an analysis based on Turkey’s Vision 2023 energy targets. Renew. Sustain. Energy Rev. 2017, 76, 485–492. [Google Scholar] [CrossRef]
- Hu, X.; Xie, J.; Cai, W.C.; Wang, R.; Davarpanah, A. Thermodynamic effects of cycling carbon dioxide injectivity in shale reservoirs. J. Pet. Sci. Eng. 2020, 195, 107717. [Google Scholar] [CrossRef]
- Lei, Q.; Xu, Y.; Yang, Z.; Cai, B.; Wang, X.; Zhou, L.; Liu, H.; Xu, M.; Wang, L.; Li, S. Progress and development directions of stimulation techniques for ultra-deep oil and gas reservoirs. Pet. Explor. Dev. 2021, 48, 221–231. [Google Scholar] [CrossRef]
- Ma, X.H.; Wang, H.Y.; Zhou, S.W.; Shi, Z.S.; Zhang, L.F. Deep shale gas in China: Geological characteristics and development strategies. Energy Rep. 2021, 7, 1903–1914. [Google Scholar] [CrossRef]
- Cheng, Z.; Li, G.S.; Huang, Z.W.; Sheng, M.; Wu, X.G.; Yang, J.W. Analytical modelling of rock cutting force and failure surface in linear cutting test by single PDC cutter. J. Pet. Sci. Eng. 2019, 177, 306–316. [Google Scholar] [CrossRef]
- Song, X.; Pei, Z.; Wang, P.; Zhang, G. Intelligent prediction for rate of penetration based on support vector machine regression. Xinjiang Oil Gas 2022, 18, 14–20. [Google Scholar]
- Yan, J. Study on Optimization of PDC Bit Based on BP Neural Network. Master’s Thesis, China University of Petroleum (East China), Dongying, China, 2019. [Google Scholar]
- Shi, X.; Liu, G.; Gong, X.L.; Zhang, J.L.; Wang, J.; Zhang, H.N. An Efficient Approach for Real-Time Prediction of Rate of Penetration in Offshore Drilling. Math. Probl. Eng. 2016, 2016, 3575380. [Google Scholar] [CrossRef]
- Bourgoyne, A.T.; Young, F.S. A Multiple Regression Approach to Optimal Drilling and Abnormal Pressure Detection. Soc. Pet. Eng. J. 1974, 14, 371–384. [Google Scholar] [CrossRef]
- Wang, K.; Wei, F. Applications of Logging Information in Predicting Formation Anti-Drilling Parameters. Pet. Drill. Tech. 2003, 31, 61–62. [Google Scholar]
- Li, C. Study of method for predict rate of penetration based of multiple regression analysis. Sci. Technol. Eng. 2013, 13, 1740–1744. [Google Scholar]
- Mazen, A.Z.; Rahmanian, N.; Mujtaba, I.; Hassanpour, A. Prediction of Penetration Rate for PDC Bits Using Indices of Rock Drillability, Cuttings Removal, and Bit Wear. SPE Drill. Complet. 2020, 36, 320–337. [Google Scholar] [CrossRef]
- Chen, H.D.; Jin, Y.; Zhang, W.D.; Zhang, J.F.; Ma, L.; Lu, Y.H. Deep Neural Network Prediction of Mechanical Drilling Speed. Energies 2022, 15, 3037. [Google Scholar] [CrossRef]
- Aalizad, S.A.; Rashidinejad, F. Prediction of penetration rate of rotary-percussive drilling using artificial neural networks—A case study. Arch. Min. Sci. 2012, 57, 715–728. [Google Scholar]
- Su, X.; Sun, J.; Gao, X.; Wang, M. Prediction method of drilling rate of penetration based on GBDT algorithm. Comput. Appl. Softw. 2019, 36, 87–92. [Google Scholar]
- Ahmed, O.S.; Aman, B.M.; Zahrani, M.A. Stuck Pipe Early Warning System Utilizing Moving Window Machine Learning Approach. In Proceedings of the Abu Dhabi International Petroleum Exhibition & Conference, Abu Dhabi, United Arab Emirates, 11–14 November 2019. [Google Scholar]
- Liu, S.; Sun, J.; Gao, X.; Wang, M. Analysis and Establishment of Drilling Speed Prediction Model for Drilling Machinery Based on Artificial Neural Networks. Comput. Sci. 2019, 46, 605–608. [Google Scholar]
- 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]
- Hazbeh, O.; Aghdam, S.K.; Ghorbani, H.; Mohamadian, N.; Alvar, M.A.; 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]
- 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]
- Zhang, H.; Zhang, G.; Wang, G.; Wang, L.; Liu, Y.; Ren, Y.; Zheng, S. Classification and Prediction Method for ROP Based on Genetic Algorithm Optimization Random Forest Model. Sci. Technol. Eng. 2022, 22, 15572–15578. [Google Scholar]
- 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]
- Burghes, D.N. Teaching Spearman’s Rank Correlation Coefficient. Teach. Stat. 2007, 15, 68–69. [Google Scholar] [CrossRef]
- Hauke, J.; Kossowski, T. Comparison of Values of Pearson’s and Spearman’s Correlation Coefficients on the Same Sets of Data. Quageo 2011, 30, 87–93. [Google Scholar] [CrossRef]
Footage (m) | ROP (m/h) | Size (mm) | Model Name | Crown Top Rotation Radius (mm) | Gauge Diameter Length (mm) | Blade Number | Crown Top Blade Thickness (mm) | Gauge Length (mm) | Gauge Width (mm) | Nozzle Number | Equivalent Diameter of Nozzle (mm) | Radial Flow Channel Depth (mm) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
762 | 18.59 | 406.4 | SD6647VZ | 155.07 | 24.48 | 6 | 65.22 | 46.56 | 58.48 | 9 | 35.21 | 69.42 |
772 | 7.21 | 406.4 | SD6648BZ | 166.74 | 31.77 | 6 | 69.4 | 58.7 | 66.88 | 12 | 44 | 102.87 |
483.57 | 9.94 | 406.4 | TS1665B | 167.23 | 27.64 | 6 | 70.585 | 61.3 | 46.5 | 9 | 31.83 | 51.63 |
1065 | 9.22 | 406.4 | TS616 | 163.14 | 24.32 | 6 | 61.915 | 73.17 | 45.71 | 9 | 31.83 | 56.27 |
821 | 11.25 | 406.4 | TS1656B | 161.47 | 28.59 | 5 | 76.105 | 73.9 | 58.44 | 9 | 31.83 | 51.75 |
513.5 | 12.8 | 406.4 | T1665 | 174 | 28.44 | 6 | 70.515 | 70.65 | 50.78 | 9 | 31.83 | 40.42 |
347.33 | 13.99 | 406.4 | TS1666B | 159.4 | 36.34 | 6 | 67.305 | 75.47 | 48.89 | 9 | 31.83 | 61.89 |
422 | 11.68 | 406.4 | TS1655B | 175 | 53.6 | 5 | 74.415 | 74.5 | 57.3 | 8 | 40.41 | 50.7 |
305.64 | 9.952 | 406.4 | T1655BS | 160.2 | 61.7 | 5 | 83.02 | 104.1 | 75.6 | 8 | 40.41 | 65 |
677 | 13.24 | 406.4 | CAS6164N | 146.1 | 63.04 | 6 | 69.93 | 127 | 93.84 | 9 | 35.72 | 81.79 |
541.63 | 9.15 | 406.4 | CAS6164W | 151.95 | 62.97 | 6 | 72.94 | 127 | 98.41 | 9 | 35.72 | 84.02 |
385.97 | 14.48 | 406.4 | DS653AB | 152.2 | 63.41 | 5 | 68.895 | 120.3 | 64.32 | 8 | 40.41 | 72.86 |
601 | 8.84 | 406.4 | HS5163BU | 167.98 | 51.21 | 5 | 65.275 | 61.91 | 60.33 | 10 | 40.16 | 98.28 |
442.75 | 11.81 | 406.4 | HS5163BMK | 160.67 | 55.91 | 5 | 70.505 | 65.37 | 70.68 | 8 | 40.41 | 76.6 |
461 | 10.72 | 406.4 | HS6163BU | 177.12 | 38.6 | 6 | 53.545 | 56.92 | 74.56 | 9 | 40.16 | 93.39 |
563.71 | 11.8 | 406.4 | KS1662DGRS | 126 | 29.75 | 6 | 65.215 | 108.4 | 76.93 | 9 | 31.83 | 56.07 |
420.6 | 11.32 | 406.4 | ES1626ET | 158.5 | 63 | 6 | 71.68 | 134.4 | 76.53 | 9 | 33.38 | 79.2 |
644 | 6.92 | 311.2 | SD6542B | 111.18 | 25.21 | 5 | 58.585 | 54.69 | 62.54 | 8 | 44.9 | 59.31 |
388 | 7.76 | 311.2 | SD6632BZ | 88.29 | 37.18 | 6 | 52.33 | 89.13 | 72.955 | 9 | 44.56 | 59.16 |
415 | 6.39 | 311.2 | SD6642B | 115.91 | 32.2 | 6 | 60.595 | 74.32 | 52.18 | 9 | 50.85 | 59.64 |
625 | 5.515 | 311.2 | TS1655BP | 120 | 54.4 | 5 | 59.5 | 78.6 | 51.4 | 8 | 40.41 | 58.6 |
543.1 | 5.71 | 311.2 | TS1655B | 130.5 | 36 | 5 | 52.35 | 55.3 | 43.5 | 7 | 42 | 48.8 |
387.6 | 4.87 | 311.2 | T1665 | 135.4 | 46.8 | 6 | 55 | 63.4 | 44 | 9 | 33.38 | 45.3 |
327.1 | 6.23 | 311.2 | TS616 | 123.93 | 46.19 | 6 | 53.685 | 68.38 | 46.19 | 9 | 33.38 | 46.75 |
137 | 3.61 | 311.2 | TS1653 | 107.84 | 50.24 | 5 | 56.5 | 64.1 | 50.26 | 8 | 40.41 | 53.74 |
188.67 | 6.7 | 311.2 | TS1653B | 110.95 | 44.09 | 5 | 58.69 | 68.59 | 44.2 | 8 | 40.41 | 56.63 |
192.63 | 4.8 | 311.2 | TS1655BTS | 106.7 | 51.972 | 5 | 61.785 | 77.19 | 51.97 | 7 | 46.2 | 48.74 |
589 | 9.28 | 311.2 | DS653H | 118.33 | 57.39 | 5 | 58.68 | 68.96 | 57.23 | 8 | 33.68 | 60.84 |
223 | 6.43 | 311.2 | DS664H | 111.75 | 36.15 | 6 | 55.69 | 75.09 | 37.86 | 9 | 33.38 | 63.84 |
224 | 4.96 | 311.2 | DS674H | 108.01 | 52.08 | 7 | 40.99 | 61.53 | 51.95 | 10 | 40.16 | 62.14 |
217 | 4.43 | 311.2 | DM653H | 76.84 | 39.82 | 5 | 63.815 | 69.79 | 40.58 | 7 | 42 | 78.76 |
338.75 | 6.21 | 311.2 | KMD1662ART | 124.6 | 57.6 | 6 | 62.685 | 109.9 | 104 | 9 | 38.1 | 57.08 |
385.26 | 6.87 | 311.2 | KS1652DFGRT | 121.5 | 52 | 5 | 60.415 | 82 | 76.9 | 9 | 38.1 | 66.2 |
120.5 | 5.13 | 311.2 | KS1652FGRY | 125 | 105 | 6 | 54.395 | 126 | 108 | 8 | 40.41 | 54.72 |
411.75 | 6 | 311.2 | ES1656TEU | 125.4 | 73.1 | 6 | 65 | 98.7 | 55.64 | 9 | 38.1 | 66 |
569 | 7.16 | 311.2 | ES1635E | 112 | 49.07 | 5 | 58.45 | 97.8 | 78.12 | 8 | 44.9 | 64.4 |
1021 | 8.59 | 215.9 | ES1655L | 87.7 | 51.4 | 5 | 47.8 | 76.66 | 61.05 | 7 | 46.2 | 35.6 |
The Stage | The Rock Strata | The Well Depth |
---|---|---|
Second spud-1 | Shaximiao Formation~Ziliujing Formation (Lianggaoshan Formation) | 80 m~900 ± 50 m |
Second spud-2 | Ziliujing Formation~Xujiahe Formation | 900 ± 50 m~1100 ± 50 m |
Third spud-1 | Xujiahe Formation | 1100 ± 50 m~1600 ± 50 m |
Third spud-2 | Jialingjiang Formation~Longtan Formation (Feixianguan Formation, Changxing Formation) | 1600 ± 50 m~2600 ± 50 m |
Third spud-3 | Maokou Formation~Qixia Formation | 2600 ± 50 m~2950 ± 50 m |
Fourth spud-1 | Qixia Formation to Shiniulan Formation (Liangshan Formation~Hanjiadian Formation) | 2950 ± 50 m~3500 ± 50 m |
Fourth spud-2 | Shiniulan Formation~Longmaxi Formation | 3500 ± 50 m~5900 ± 50 m |
Shaximiao Formation to Ziliujing Formation | Xujiahe Formation | ||
---|---|---|---|
Number of Hidden Layer Neurons | Mean Squared Error (MSE) | Number of Hidden Layer Neurons | Mean Squared Error (MSE) |
5 | 3.537 | 5 | 1.545 |
6 | 3.824 | 6 | 1.279 |
7 | 2.412 | 7 | 1.185 |
8 | 2.285 | 8 | 0.962 |
9 | 1.856 | 9 | 0.804 |
10 | 1.562 | 10 | 0.787 |
11 | 1.884 | 11 | 0.583 |
12 | 2.050 | 12 | 0.671 |
13 | 1.968 | 13 | 0.727 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Chen, Y.; Sang, Y.; Wang, X.; Ye, X.; Shi, H.; Wu, P.; Li, X.; Xiong, C. Study on Evaluation and Prediction for Shale Gas PDC Bit in Luzhou Block Sichuan Based on BP Neural Network and Bit Structure. Appl. Sci. 2024, 14, 4370. https://doi.org/10.3390/app14114370
Chen Y, Sang Y, Wang X, Ye X, Shi H, Wu P, Li X, Xiong C. Study on Evaluation and Prediction for Shale Gas PDC Bit in Luzhou Block Sichuan Based on BP Neural Network and Bit Structure. Applied Sciences. 2024; 14(11):4370. https://doi.org/10.3390/app14114370
Chicago/Turabian StyleChen, Ye, Yu Sang, Xudong Wang, Xiaoke Ye, Huaizhong Shi, Pengcheng Wu, Xinlong Li, and Chao Xiong. 2024. "Study on Evaluation and Prediction for Shale Gas PDC Bit in Luzhou Block Sichuan Based on BP Neural Network and Bit Structure" Applied Sciences 14, no. 11: 4370. https://doi.org/10.3390/app14114370
APA StyleChen, Y., Sang, Y., Wang, X., Ye, X., Shi, H., Wu, P., Li, X., & Xiong, C. (2024). Study on Evaluation and Prediction for Shale Gas PDC Bit in Luzhou Block Sichuan Based on BP Neural Network and Bit Structure. Applied Sciences, 14(11), 4370. https://doi.org/10.3390/app14114370