Abstract

The movement of rock formations caused by mining eventually leads to the mining subsidence damage of the surface. In order to accurately and efficiently predict the surface subsidence caused by mining, an object-oriented method combined with the classical probability integration method is introduced in this paper, and an object-oriented probability integration prediction model framework is established. MATLAB2019 is used to develop the application program of the prediction model, the reliability of the prediction model is tested by engineering cases, and the main influencing factors of mining subsidence are analyzed at the same time. The results show that the predicted results of the model are basically consistent with the case. The prediction model developed in this paper using the object-oriented method combined with the probability integration method is reliable. It is feasible to apply the object-oriented method to mining subsidence prediction.

1. Introduction

Surface subsidence caused by mining leads to the destruction of surface land resources, collapse of buildings, and destruction of roads and induces geological disasters and soil erosion, which seriously threatens the ecological environment and infrastructure safety of mining areas [1]. A series of secondary problems, such as vegetation and water environment pollution and land resource destruction caused by mining, have seriously affected the sustainable development of the mining industry [2, 3]. A large number of scholars have studied the prediction of mining subsidence, and by anticipating the basic information of surface subsidence in advance, it can not only guide mine production and disaster prevention but also reduce the environmental and resource damage caused by mining subsidence through optimizing the mining plan and treatment countermeasures in advance [4, 5]. The study of mining subsidence has been a hot research topic in the mining industry, and the common research methods mainly include similar simulation and numerical simulation [68]. Accurate prediction and assessment of mining subsidence is an important prerequisite for reducing mining damage and subsidence disasters, as well as protecting ecological environment [9]. Simulation-based methods have strong versatility and can adapt to a large number of complex engineering application requirements. Similar models have high costs and are difficult to analyze a large number of changing model parameters. The reliability of numerical models is closely related to the professional background and engineering experience of the modeler [10, 11]. In recent years, with the development of AI technology, mining scientists and technicians have introduced AI models into the field of mining subsidence prediction and obtained certain research results [1214]. The research on mining subsidence prediction has achieved many research results, and each method has its own advantages and disadvantages. Artificial intelligence, machine learning, and other methods are mainly good at mining and analyzing the nonrelationship between data labels and features from a large amount of data. Linear relationship often has higher requirements and dependence on the quality of data [15]. At present, the main prediction method for mining subsidence research and engineering practice in China is the probability integration method, which is widely employed due to its rich theory and convenient calculation [16]. There are many methods for predicting mining subsidence, and each has certain characteristics; however, in most cases, decision makers are more concerned with the reliability and applicability of the prediction model, rather than a particular research method or model, since each has its own advantages and drawbacks. Therefore, those with simpler algorithm principles, easier development procedures, higher reliability, and easier way of implementation have better application value in engineering practice, program design, and decision support. The rapid development of computer technology has provided an important basis for the design and development of complex models and mathematical principles, especially in the complex prediction process of mining subsidence. To take full advantage of the computing performance can effectively promote the progress of mining subsidence research. Instead of consuming a lot of energy to study the program development and algorithm design, researchers are more likely to study the performance and improvement strategies of the predicted model [17]. In view of the above analysis, this paper combines the classical object-oriented methodology with the probability integration method of mining subsidence to design the framework of the object-oriented probability integration prediction model, develop the prediction procedure of the combined model, and also verify the correctness and feasibility of the developed model through engineering cases. Meanwhile, the main factors affecting mining subsidence were analyzed to provide scientific guidance for mining subsidence management decisions.

2. Object-Oriented Probability Integration Model

2.1. Mining Subsidence Model

After extraction of the ore body, the roof collapses and breaks with the expansion of the goaf. Mining activities have an influence in the upward direction, causing a series of complex activities such as fracture penetration, bending, delamination, and dislocation in the overlying rock layer, which eventually lead to violent mining subsidence on the surface [18, 19]. After scientific research and field practice by a large number of scholars, a variety of methods and models for surface subsidence prediction have been developed, mainly including numerical simulation, physics experiment, mechanical model, probability integration method, and nonlinear model [20, 21]. The probability integration method is one of the most widely used mining subsidence prediction methods in China due to its high accuracy and convenience with fewer parameters [22]. The mining subsidence model is shown in Figure 1, where denotes the burial depth of the ore body, the thickness of the ore body, , the inflection point offset, the radius of influence, , the maximum subsidence value, and the subsidence coefficient.

2.2. Basic Principles of Probability Integration Method

The probability integration method based on the random medium theory has become relatively mature and most widely applied prediction theory in China [23], named due to the fact that the movement and deformation prediction formula used contains probability integration. With rigorous mathematical derivation and a large amount of domestic field practice data for theoretical improvement and correction, the method has been fully applied and improved in mining subsidence prediction, guiding a large number of field engineering practice, and a typical probability integration theory model is shown in Figure 2 [24], in which (a) is semi-infinite mining model, (b) is horizontal-limited mining model, (c) is inclined mining model, and (d) is main influence radius model.

The basic mining model of surface subsidence caused by mining of the ore body is mainly depicted in Figure 2. In order to facilitate the program development of the model, on the basis of previous research, this paper organizes the calculation formulas of the probability integral method predicted by the subsidence model and organizes the main subsidence calculations and horizontal movement calculations with other formulas [25]. The basic mathematical models of mining subsidence values, horizontal movement, inclination, deformation, and other indicators involved in the probability integration method are shown in the following equations [26, 27].

In the equations, is error function, is the thickness of the ore body, is the dip angle of the ore body (°), is the subsidence coefficient, is the horizontal movement coefficient, is the burial depth of the ore body, is the influence radius, is the main influence tangent, is the subsidence value, is the horizontal movement value, is the curvature, is the inclination, and is the horizontal deformation.

2.3. Basic Principles of Object-Oriented Method

The objective world is a mixed system composed of a large number of various complex entities interacting and linking with each other, and each entity has its own internal state and activity mechanism, so the system of the objective world is also a complex giant system formed by the combination of a large number of subsystems. Object-oriented methodology provides a unified method and framework for analyzing, designing, and implementing systems by simulating human way of thinking, decomposing the solution problem layer by layer, and realizing the mapping isomorphism of problem space and solution space. Object-oriented technology shows great potential and advantages in dealing with large and complex problems [28, 29], which is essentially a method of analyzing, designing, and developing software systems using techniques such as objects, classes, encapsulation, and inheritance [30]. After continuous research and improvement, it has been widely employed in scientific research and engineering cases in various industries and has achieved many practical results [3133]. Compared with the traditional process-oriented analysis methods, object-oriented technology is object-centered and message-driven and simulates the properties and behaviors of objective entities through object-encapsulated data and methods, which improves the stability and cohesiveness of programs, reduces coupling, and provides greater convenience for the analysis and program development of complex problems [34]. In this work, parameters are calculated by object-encapsulated probability integration method to define subsidence and horizontal movement calculation methods, and model calculation in complex limited and inclined situation is achieved through polymorphic techniques with basic semi-infinite mining as a base class. Combining the probability integration method model with the object-oriented technology, the object-oriented probability integration model is developed and designed, and the object tree of the model is also established as to the inheritance system of the main classes and the needs of management control, etc., as shown in Figure 3.

According to the object tree structure of the model, we established the abstract design and organizational relationship of the main classes used in the prediction model through UML as shown in Figure 4. All user-defined classes inherit from the handle class of MATLAB and define common variables such as mining depth (), dip angle (), and function methods for calculating subsidence and horizontal movement in the semi-infinite mining class value. Horizontal finite mining and inclined mining are inherited from the semi-infinite mining model. By adding unique variables and rewriting related function methods, code reuse and mining subsidence prediction functions of different models are realized.

2.4. Research on Object-Oriented Probability Integral Subsidence Prediction Framework

The broken ore pillar extraction subsidence model based on probability integration theory is difficult to achieve efficient, fast, and repeated adjustment operations through manual calculation due to its large number of prediction parameters and large variation in the selection of empirical values of parameters. The use of object-oriented programming technology to establish a common program script can realize fast calculation and efficient adjustment of parameters, thus contributing to model solving. A high-cohesion, low-coupling object-oriented probability integration model based on MATLAB2019 was established by combining object-oriented abstract analysis and probability integration model and using object-oriented encapsulation, inheritance, polymorphism, and other technical features, the framework of which is shown in Figure 5. The framework includes the encapsulation and abstraction of semi-infinite mining, finite mining, and inclined mining models. The main parameters involved in the probability integration method are defined as variables, and the calculations such as subsidence and horizontal movement are defined as function interfaces. The subsidence visualization module and the data input and output interface are developed to enhance the interactivity of the model, improve the user experience, and improve the computing efficiency [35, 36].

3. Case Verification

In order to test the object-oriented probability integration model, the combinatorial model is validated in the paper using a practical case studied by previous scholars [27], as shown in Figure 6, where (a) is a semi-infinite mining model while (b) is a limited one.

The computational flow of the combinatorial model employing the combined probability integration method with object-oriented technology is presented in Figure 7.

The calculated results of movement and deformation on the main section in case (a), Figure 6, are shown in Table 1, which are basically consistent with the conclusions of the case. The subsidence and horizontal movement curves of the semi-infinite mining towards the main section are demonstrated in Figure 8. The curve change law in Figure 8 suggests that in the case of semi-infinite mining, the mining subsidence gradually changes from 0 to a relatively fixed range and then reaches stability. The horizontal movement gradually grows to the peak and then starts to decrease. Under the semi-infinite mining conditions, certain strategies should be adopted to reduce the subsidence value, so as to control mining damage.

The calculation results of case (b) in Figure 6 are shown in Table 2, which basically match with the case, indicating that the object-oriented probability integration model for calculating mining subsidence is feasible. The movement deformation law of the finite mining case is presented in Figure 9, implying that the subsidence value of the center of the mining area is the largest in the limited mining case, the overlying rock body shows movement towards the center of the mining area, the monitoring of the subsidence above the mining area should be strengthened under the limited mining conditions, and the mining-induced subsidence damage can be prevented by optimizing the mining pillar or improving the mining method.

4. Sensitivity Analysis

When mining subsidence is predicted using the probability integration method, the application of the prediction model is significantly affected by different actual geological occurrence conditions, selection of prediction parameters, and the need for accuracy and safety. According to the actual engineering experience on site, the mining thickness of the ore body is an important factor that directly causes mining. Generally, the larger the mining thickness, the more severe the subsidence and the more serious the surface damage. The existence of the dip angle of the ore body leads to the reduction of the equivalent mining thickness, which can alleviate the subsidence damage caused by mining to a certain extent. Generally, as the dip angle of the coal seam increases, the subsidence caused by mining decreases. After increasing to a certain extent, the accuracy of the model will decrease. The selection of mining subsidence coefficient is mainly used to quantitatively describe comprehensive geological conditions. In practical applications, methods such as engineering analogy are mainly used for determination, and its selectivity has certain subjective factors, which have a great impact on the accuracy of model prediction. To this end, based on previous research, we selected indicators such as dip angle (), thickness (), and subsidence coefficient () to study the sensitivity of the object-oriented probability integration model [3738], which is shown in Figure 10.

As shown in Figure 10(a), as the dip angle increases, the maximum subsidence value tends to weaken, indicating that the mining subsidence caused by the horizontal ore body mining may be more severe than the mining subsidence caused by the inclined ore body mining. The reduction of mining thickness improves the subsidence damage caused by mining [39]. Due to the influence of the dip angle, the peak value of the horizontal movement will increase after mining. The main reason is the existence of the dip angle of the ore body, the change in the shape of the gob, and the overlying strata, in addition to the horizontal movement pointing to the center of the gob, which is easier to send along the gob. Shear movement depends on the dip of the ore body. Therefore, attention should be paid to horizontal movement deformation during the mining of high-dip ore bodies to prevent secondary disasters caused by rock shear dislocation [40]. Figure 10(b) suggests that both subsidence and horizontal movement value increase with the growing of the thickness of the ore body, and the magnitude of increase is more than obvious, which indicates that the mining thickness is an important factor to cause subsidence. When the mining thickness is large, the filling method can be considered to deal with the goaf to reduce the mining thickness of the ore body, so as to reduce the impact of mining and control the surface subsidence [4143]. As shown in Figure 10(c), selection of subsidence coefficient also has a significant effect on the prediction of mining subsidence, which is mainly related to overlying lithology and treatment method of the goaf. When the lithology is poor and the goaf is large, the subsidence is more violent. In the actual prediction, the selection should be made by analogy with the actual engineering geological conditions or similar engineering cases, so as to improve the prediction accuracy of the model and the reliability of the conclusion.

5. Engineering Application

Guangxi Tongkeng Mine has complex geological conditions and poor ore body occurrence conditions. In order to study the impact of pillar mining on the surface, the prediction model established in this paper is used to predict the mining subsidence of No. 92 pillar of the mine. At the same time, the predicted results are compared with those predicted by discrete element numerical model. The average thickness of No. 92 pillar in Tongkeng Mine , the average dip angle , the surface dip angle of 10°, and the ore body occurrence structure are shown in Figure 11.

The predicted mining subsidence results adopting the combined model established in the paper are demonstrated in Figure 11. It can be seen that the central area of the goaf has the most severe subsidence, the maximum subsidence value is about 11.5 m, the maximum horizontal movement is about 2.5 m, the maximum subsidence is less than the mining thickness of the ore body, and the maximum subsidence value appears in the center of the goaf. The subsidence curve is similar to the common coal mine stope subsidence law. It can be seen from the figure that after the ore body is mined, the overlying strata subside, and a subsidence basin is likely to appear near the center of the goaf. At the same time, due to the influence of the inclination angle of the ore body and the mining direction, the overlying rock mass does not completely move towards the center of the goaf. After the model is excavated, the overall model is inclined and deformed, which hinders the migration characteristics of the lower rock mass to the gob, while the upper rock mass increases the tendency to migrate to the gob along the inclined direction, so the horizontal shift curve offset occurs. This is also consistent with the actual mining rock movement law.

In the paper, the discrete element numerical simulation technique was applied to construct the mining model of No. 92 pillar and analyze the surface subsidence and deformation law during the backfilling process, shown in Figure 12.

As seen in Figure 13, with the mining of the ore pillar, the top plate breaks and collapses, the overlying rock layer bends and deforms, the surface subsidence gradually increases, and the mining impact area expands. Due to the influence of the dip angle of the ore body, after the ore body is extracted, the overlying rock body has a tendency to move to the center of the mining area in addition to the overall dip deformation of the mining model, which limits the horizontal movement of the overlying rock body to the mining area. The numerical simulation results imply that subsidence is the most intense in the center of the goaf, the value of which reaches about 12 meters, basically consistent with the theoretical calculation conclusion. The horizontal movement is approximately 2 meters, which is smaller compared with the theoretical calculation. The main reason may be that the overall inclined deformation of the model causes the overlying rock body in the goaf to have a tendency to move towards the center of the mining area but also superimposes the movement along the inclined direction, reducing the horizontal movement of the overlying rock body towards the center of the goaf. The numerical simulation is basically consistent with the conclusion of theoretical predicted mining subsidence.

6. Conclusion

By analyzing the occurrence and mining conditions of ore pillars, a mining subsidence predicted model applicable to the principle of random media was established by applying the principle of equivalent mining, and a visualized and interactive graphical prediction system was developed with the help of the MATLAB object-oriented programming technology. After analyzing the influence of commonly used empirical parameters in China, the theoretical projection was carried out with reference to similar engineering cases, while a numerical model of mining pillar mining was established employing discrete element numerical simulation technology for comparison and verification, and the main conclusions were obtained as follows. (1)In this study, object-oriented technology combined with traditional probability integral method is applied to the prediction of mining subsidence. The multivariate and complex calculation formulas involved in the abstract prediction model are abstracted by the object method as the internal attributes and methods, and an object-oriented development framework and application interface are constructed to improve the solution efficiency of the model and reduce the development and maintenance costs. It can quickly provide reasonable and reliable prediction results for designers and related departments. The correctness of the mining subsidence prediction model was verified through case tests, which proved that it is feasible to adopt the object-oriented technology to combine the probability integration method to build a model for mining subsidence prediction(2)Sensitivity analysis was conducted on the main factors affecting mining subsidence, namely, dip angle, thickness, and subsidence coefficient. The mining thickness of the ore body has the most drastic effect on mining subsidence, and the dip angle can reduce the maximum subsidence peak caused by mining to a certain extent. The selection of the subsidence coefficient has a significant impact on the accuracy of the mining subsidence prediction and should be selected in conjunction with similar engineering cases in application. The case test proves that it is feasible to use the object-oriented method combined with the probability integration method to abstract the complex multivariate and nonlinear prediction methods and to construct a combined prediction model for mining subsidence prediction(3)It is difficult to analyze the dynamic mining process and the structural support effect formed by overlying damage for the prediction of mining subsidence by the probability integration method, so the factors affecting the accuracy and reliability of the mining subsidence are more complicated in the process of metal mining. In the future, the mechanical properties of the overlying structure of the mining stope and the influence of the dynamic mining process, as well as more geological and mining influence factors, could be considered to improve the effectiveness of the model in the actual mining subsidence prediction

Data Availability

The data used by the researchers are for scientific research purposes rather than commercial purposes. Most of the data generated or analyzed during this study are included in this manuscript, and all of the data are available from the corresponding author on reasonable request.

Conflicts of Interest

The authors declare that they have no conflicts of interest.

Acknowledgments

The authors gratefully acknowledge the financial support by the Natural Sciences Foundation of China (No. 51774323).