Advanced Search

Indexed by SCI、CA、РЖ、PA、CSA、ZR、etc .

Shuhua ZHAI, Qian GAO, Jianguo SONG. Genetic Programming Approach for Predicting Surface Subsidence Induced by Mining. Journal of Earth Science, 2006, 17(4): 361-366.
Citation: Shuhua ZHAI, Qian GAO, Jianguo SONG. Genetic Programming Approach for Predicting Surface Subsidence Induced by Mining. Journal of Earth Science, 2006, 17(4): 361-366.

Genetic Programming Approach for Predicting Surface Subsidence Induced by Mining

Funds:

Jinchuan Group Ltd. 2004-01D

More Information
  • Corresponding author: Zhai Shuhua: zhaishuhuahbu@163.com
  • Received Date: 28 Jun 2006
  • Accepted Date: 25 Sep 2006
  • The surface subsidence induced by mining is a complex problem, which is related with many complex and uncertain factors. Genetic programming (GP) has a good ability to deal with complex and nonlinear problems, therefore genetic programming approach is proposed to predict mining induced surface subsidence in this article. First genetic programming technique is introduced, second, surface subsidence genetic programming model is set up by selecting its main affective factors and training relating to practical engineering data, and finally, predictions are made by the testing of data, whose results show that the relative error is approximately less than 10%, which can meet the engineering needs, and therefore, this proposed approach is valid and applicable in predicting mining induced surface subsidence. The model offers a novel method to predict surface subsidence in mining.

     

  • The study of surface subsidence resulting from underground mining holds significance in view of beneficial effects on national economy and people's living conditions. As is known, a large quantity of minerals need to be exploited for modernization construction. Mining leads to surface subsidence, some underground engineering and production facilities are destroyed accordingly, which blocks the development of production and retards people's living standard. To solve this contradiction, subsidence due to mining must be deeply researched and reasonable control technique must be devised to reduce its harmful effects to minimum level.

    Surface subsidence induced by mining is a complex problem, which is related with several factors. Genetic programming has a good ability to deal with complex and nonlinear problems, and therefore genetic programming approach is proposed to predict mining induced surface subsidence in this article. Genetic programming (Li and Kou, 2001; yun, 2000; Yun and Wang, 1997) is a novel global, random searched, and optimized technique, which is based on the principle of biology and evolution. It is imitative of chromosomes to express problems, and it is based on the Darwinian principle of "survival of the fittest" through the operation of selection, crossover and mutation, therefore the random generated initial population can approach the optimized solution step by step. Genetic programming is an interdisciplinary subject, which is formed by the intercrossing of biology and engineering, at present, it is becoming the third research point followed by the system of Expert and ANN. The details of the genetic programming and the implementation for the prediction of surface subsidence are the subject of this article.

    Genetic programming is a symbolic regression technique developed by Koza (schwefel, 1995; Koza, 1994, 1992). It is an evolutionary computational technique (like genetic algorithm, evolutionary strategy and evolutionary programming, etc.). Each generation is composed of several individuals, and it becomes a population, as usual, binary trees are used to represent its structures, that is to say, a population member in GP is a hierarchically structured tree consisting of functions and terminals. The functions and terminals are selected from a set of functions (operators) and a set of terminals. For example, the set of operators F can contain such functions expressed by

    where fi can be: (1) plus, minus, times, divide; (2) sin, cos, log, exp; (3) and, or, not; (4) ceil, floor; (5) min, max; (6) eq (equal), gt (greater than), le (less than or equal).

    The set of terminals T contain the arguments for the functions. For example, T={t1, t2, ……tm}, where t1 can be the variables of x, y, and z or the constants a, b or π. Now, a potential solution may be depicted as a rooted, labeled tree with ordered branches, using operations from the function set and arguments from the terminal set.

    The initial population of GP is generated by choosing random functions and terminals from F sets and T sets. There are three different methods available in GP to create the initial population.

    (1) "Fullinit". This is the Full method. In the standard procedure, the new tree receives non-terminal (internal) nodes until the initial tree depth (Dmax, the initial maximum depth/size of the new tree) is reached. The last depth level is limited to terminal nodes. As a result, trees initialized using this method will be perfectly balanced with all the branches of the same length.

    If size is used instead of depth, internal nodes are chosen until the size of the new tree is close to the specified size (Dmax), and only then terminals are chosen. Unlike the standard procedure, the size variation may not be able to create trees with the exact size specified, but only close (never exceeding).

    (2) "Growinit". This is the Grow method. In the standard procedure, each new node is randomly chosen between the terminals and non-terminals, except the nodes at the initial tree depth level, which must be the terminals. Trees created using this method may be unbalanced, with some branches much longer than others, and their depth may range from 1 to the value of the Dmax parameter. If the size variation is used, nodes will be chosen randomly. Before reaching the size specified in Dmax, care is taken on the choice of the internal nodes based on their arity, to make sure that theDmax will not be exceeded by the respective arguments (which now have to be terminals).

    (3) "Rampedinit". This is the Ramped Half-and-Half method. In the standard procedure, an equal number of individuals are initialized for each depth between 2 and the initial tree depth value. For each depth level considered, half of the individuals are initialized using the Full method, and the other half using the Grow method. The population of trees resulting from this initialization method is very diverse with balanced and unbalanced trees of several different depths. In the size variation, an equal number of individuals are initialized with sizes ranging from 2 to Dmax. As in the standard procedure, for each size, half of the trees are initialized using the Full method, and the other half using the Grow method.

    The fitness of individuals is major measure to evaluate the individual; fitness means the optimized results to approximate the true solution. Different problems have different fitness. In this article, the sum of the absolute difference is between expected output value and the value returned by the individual on all fitness cases. The best individuals are the ones that return values less different than the expected values, that are the ones with lower fitness.

    Similar to genetic algorithms, genetic operators need individuals to produce their children. These parents are selected according to one of the following sampling methods.

    (1) "Roulette". This method acts as if roulette with random pointers is spun, and each individual

    owns a portion of the roulette that corresponds to its expected number of children.

    (2) "Sus". This method also relies on the roulette, but the pointers are equally spaced.

    (3) "Tournament". This method chooses each parent by randomly drawing a number of individuals from the population and selecting only the best of them.

    (4) "Lexictour". This method implements lexicographic parsimony pressure. Like in "tournament", a random number of individuals are chosen from the population and the best of them is chosen. The main difference is, if two individuals are equally fit, the shortest one (the tree with less nodes) is chosen as the best. This technique has shown to effectively control bloat in different types of problems.

    Random nodes are chosen from both parent trees, and the respective branches are swapped, and this creates two offsprings. There is no bias towards choosing internal or terminal nodes as the crossing sites.

    In tree mutation, a random node is chosen from the parent tree and substituted by a new random tree created with the available terminals and functions. This novel random tree is created using the grow initialization method, and obeys the size/depth restrictions imposed on the trees created for the initial generation. Successive generations are created until very fit individuals are obtained. To assist the visualization of the genetic programming procedure a logic flow diagram is presented in Fig. 1.

    Figure  1.  Logic flow diagram of genetic programming procedure.

    The genetic programming will run until the stop condition indicated by the user is reached, there are three stop rules available. (1) The maximum generation G. When the generation reaches G, genetic programming will stop immediately. (2) The tolerate error. When the error meets the need, genetic programming will stop. (3) The variation of fitness. The variation tendency of fitness is observed, when fitness varies in small limits, genetic programming can be stopped.

    MATLAB is a widely used programming environment available for a large number of computer platforms. Its language is simple and easy to learn, yet fast and powerful in mathematical calculus. Furthermore, its extensive and straightforward data visualization tools make it a very appealing programming environment (Silva and Costa, 2004; Yin and Ding, 2002). Therefore genetic programming in MATLAB environment can be versatile and easily operational.

    It is proved that main factors affecting surface subsidence are seam thickness, seam depth, seam dip angle, and the stiffness coefficient. First, all the factors mentioned above are selected as input variables, and the maximum surface subsidence is the outputs. Therefore, the target is to find the relational expression between main factors and the maximum surface subsidence, which is used to predict the surface subsidence due to mining. The genetic programming model is trained using learning cases obtained from measured data (Bi and Wang, 2002; Cao and Jiang, 2002; Wang and Ding, 2001). Training samples are shown in Table 1 and the parameters of GP are provided in Table 2, after training of genetic programming, the best trees obtained are shown in Fig. 2, and the comparison of calculated result of GP with the observed values is shown in Table 3.

    Table  1.  Learning and training samples
     | Show Table
    DownLoad: CSV
    Table  2.  Parameters of genetic programming
     | Show Table
    DownLoad: CSV
    Figure  2.  Best tree found by genetic programming.
    Table  3.  Comparison of calculated result of GP with observed values
     | Show Table
    DownLoad: CSV

    Seen from Table 3, the relative error results can meet the need of engineering; and the genetic programming model is of good precision of prediction.

    First, basic knowledge of genetic programming is introduced, and then samples chosen from themain factors that influence surface subsidence are trained to establish genetic programming model for surface subsidence prediction. Predictions are made by the testing of data. Results of comparison show that the proposed approach is valid and applicable in predicting mining induced surface subsidence. When genetic programming is used to solve the problem, input variables should be chosen according to the characteristic of problem, if the main affected factors are selected, then the output results will be much closer to measured data. Genetic programming is also used to predict other queries of geo-engineering, provided targets are given.

    Genetic programming is proposed for the first time to predict surface subsidence and it is a recently developing technique. The outputs of genetic programming depend on training samples to some extent; therefore, much experience is necessary to choose the main factors of models. Furthermore, genetic programming is also time-consuming, especially when inputs are multivariable. Therefore, some effective measures must be taken to solve its related shortcomings.

  • Bi, Z. W., Wang, C. L., 2002. The Application of the MATLAB ANN Toolbox on the Surface Subsidence. World Mining Express, (4): 51-54 (in Chinese).
    Cao, L. W., Jiang, Z. Q., 2002. Research on Application of Artificial Neural Network in Predicting Mining Subsidence. Journal of China University of Mining & Technology, (1): 23-26 (in Chinese with English Abstract).
    Li, M. Q., Kou, J. S., 2001. The Basic Theory and Its Application of Genetic Algorithm. Beijing Science and Technology Press, Beijing (in Chinese).
    Koza, J. R., 1992. Genetic Programming: On the Programming of Computer by Means of Nature Selection. The MIT Press, Cambridge.
    Koza, J. R., 1994. Genetic Programming. The MIT Press, Cambridge.
    Schwefel, H. P., 1995. Evolution and Optomum Seeking. John Wiley & Sons, Inc. New York.
    Silva, S., Almeida, J., 2003. Dynamic Maximum Tree Depth-A Simple Technique for Avoiding Bloat in Tree-Based GP. In : Cantú-Paz, E., Foster, J.A., Deb, K., et al., eds., Proceedings of GECCO-2003. SpringerVerlag., 1776-1787.
    Silva, S., Costa, E., 2004. Dynamic Li mits for Bloat Control-Variations on Size and Depth. Proceedings of GECCO-2004. Springer-Verlag. 666-677.
    Yin, Z. M., Ding, C. L., 2002. Mastery of MATLAB. Tsinghua University Press, Beijing (in Chinese).
    Yun, Q. X., 2000. Evolutionary Algorithm. Metallurgy Industry Publishing House, Beijing (in Chinese).
    Yun, Q. X., Wang, Z. Q., 1997. Genetic Algorithmand Genetic Programming. Metallurgy Industry Publishing House, Beijing (in Chinese).
    Wang, W. H., Ding, D. X., 2001. Studies of an Artificial Neural Network Method for Inversing Mechanical Parameters of Rock Mass from Measured Mining-Induced Surface Subsidence. Journal of Central-South Institute of Technology, (1): 10-14 (in Chinese with English Abstract).
  • Relative Articles

    [1]Zewen ZHANG, Yongsheng CHENG, Zhuobin XU, Fanglai WAN, Yao ZHOU, Yezheng LI, Xiangyang LI, Dexing ZENG. Genetic Relation Between Granite and Pegmatite and Their Metallogenic Significance in Renli Nb-Ta Deposit, Northeast Hunan, China: Evidence from Coltan U-Pb Dating, Hf Isotopes and Geochemistry[J]. Journal of Earth Science. doi: 10.1007/s12583-025-0233-2
    [2]Hang Li, Xingwang Xu, Tao Hong, Qiang Ke, Yince Ma, Kai Kang, Zhiquan Yang, Changsheng Guo. Tourmaline geochemistry as genetic evolution and metallogenic potential indicators of pegmatites: a case study from the Tugeman Be-Li deposit, Middle Altun[J]. Journal of Earth Science. doi: 10.1007/s12583-024-0040-1
    [3]Yan Lyu, Ruixia Ma, Zuopeng Wang, Jianbing Peng, Tianzhuo Gu. A Study on the Genetic Dynamics and Development Characteristics of Granitic Rock Avalanches in the Northern Qinling Mountains, China[J]. Journal of Earth Science. doi: 10.1007/s12583-024-0016-1
    [4]Qinglin Xia, Tongfei Li, Li Kang, Shuai Leng, Xiaochen Wang. Study on the PTX Parameters and Fractal Characteristics of Ore-Forming Fluids in the East Ore Section of the Pulang Copper Deposit, Southwest China[J]. Journal of Earth Science, 2021, 32(2): 390-407. doi: 10.1007/s12583-021-1448-5
    [5]Muhsan Ehsan, Hanming Gu, Malik Muhammad Akhtar, Saiq Shakeel Abbasi, Zaheen Ullah. Identification of Hydrocarbon Potential of Talhar Shale: Member of Lower Goru Formation Using Well Logs Derived Parameters, Southern Lower Indus Basin, Pakistan[J]. Journal of Earth Science, 2018, 29(3): 587-593. doi: 10.1007/s12583-016-0910-2
    [6]Shu Li, Zhenming Peng, Hao Wu. Prestack Multi-Gather Simultaneous Inversion of Elastic Parameters Using Multiple Regularization Constraints[J]. Journal of Earth Science, 2018, 29(6): 1359-1371. doi: 10.1007/s12583-017-0905-7
    [7]Jin Zhang, Huaishan Liu, Siyou Tong, Lei Xing, Xiangpeng Chen, Chaoguang Su. Estimation of elastic parameters using two-term fatti elastic impedance inversion[J]. Journal of Earth Science, 2015, 26(4): 556-566. doi: 10.1007/s12583-015-0564-5
    [8]Majid Abrehdary, Lars E. Sjöberg, Mohammad Bagherbandi. Combined Moho parameters determination using CRUST1.0 and Vening Meinesz-Moritz model[J]. Journal of Earth Science, 2015, 26(4): 607-616. doi: 10.1007/s12583-015-0571-6
    [9]Kumar Avinash, B Deepika, K S Jayappa. Basin Geomorphology and Drainage Morphometry Parameters Used as Indicators for Groundwater Prospect: Insight from Geographical Information System (GIS) Technique[J]. Journal of Earth Science, 2014, 25(6): 1018-1032. doi: 10.1007/s12583-014-0505-8
    [10]Igor'V Kemkin, Raisa A. Kemkina. Microheterogeneity of the Koupol Deposit Fahlores as a Reflection of Changing of Physicochemical Parameters of the Ore-forming Solution[J]. Journal of Earth Science, 2013, 24(2): 179-187. doi: 10.1007/s12583-013-0321-6
    [11]Shaochun Dong, Hongwei Yin, Suping Yao, Fei Zhang. Detecting Surface Subsidence in Coal Mining Area Based on DInSAR Technique[J]. Journal of Earth Science, 2013, 24(3): 449-456. doi: 10.1007/s12583-013-0342-1
    [12]Caili Lü, Yongjian Yao, Yuehua Gong, Shiguo Wu, Xuejie Li. Deepwater Canyons Reworked by Bottom Currents: Sedimentary Evolution and Genetic Model[J]. Journal of Earth Science, 2012, 23(5): 731-743. doi: 10.1007/s12583-012-0280-3
    [13]Shaojun Li, Hui Gao, Demin Xu, Fanzhen Meng. Comprehensive Determination of Reinforcement Parameters for High Cut Slope Based on Intelligent Optimization and Numerical Analysis[J]. Journal of Earth Science, 2012, 23(2): 233-242. doi: 10.1007/s12583-012-0250-9
    [14]Xinyi Yin, Jianye Ren, Chao Lei, Shan Wang, Junxia Zhang. Postrift Rapid Subsidence Characters in Qiongdongnan Basin, South China Sea[J]. Journal of Earth Science, 2011, 22(2): 273-279. doi: 10.1007/s12583-011-0180-y
    [15]Richard D. Miller, Jianghai Xia, Don W. Steeples. Seismic Reflection Characteristics of Naturally-Induced Subsidence Affecting Transportation[J]. Journal of Earth Science, 2009, 20(3): 496-512. doi: 10.1007/s12583-009-0042-z
    [16]Gangding Feng, Chao Chen. Nonlinear Inversion of Potential-Field Data Using an Improved Genetic Algorithm[J]. Journal of Earth Science, 2004, 15(4): 420-424.
    [17]Zhenfei Zhang, Guangdao Hu, Mingguo Yang, Qinglin Xia, Jinseng Ji, Fengliang Gao. Genetic Modeling of GIS-Based Cell Clusters and Its Application in Mineral Resources Prediction[J]. Journal of Earth Science, 2003, 14(1): 85-89.
    [18]Hanjie Yan, Hong Yan, Zhucong Xiang, Yanjiang Wang. An Improved Dynamic Programming Method for Automatic Stratigraphic Correlation[J]. Journal of Earth Science, 2003, 14(3): 242-244.
    [19]Guiwen Wang, Qing Zhang, Mingrui Li. A Study on Identification of Conglomerate Reservoir Parameters and Oil/Water Beds in Ke82 Well Areas of Junggar Basin[J]. Journal of Earth Science, 2002, 13(4): 338-344.
    [20]Mingxiang Met, Debin Xu, Hongrui Zhou. Genetic Types of Meter-Scale Cyclic Sequences and Fabric Natures of Facies Succession[J]. Journal of Earth Science, 2000, 11(4): 375-382.
  • Created with Highcharts 5.0.7Amount of accessChart context menuAbstract Views, HTML Views, PDF Downloads StatisticsAbstract ViewsHTML ViewsPDF Downloads2024-052024-062024-072024-082024-092024-102024-112024-122025-012025-022025-032025-0402.557.51012.5
    Created with Highcharts 5.0.7Chart context menuAccess Class DistributionFULLTEXT: 43.0 %FULLTEXT: 43.0 %META: 56.6 %META: 56.6 %PDF: 0.4 %PDF: 0.4 %FULLTEXTMETAPDF
    Created with Highcharts 5.0.7Chart context menuAccess Area Distribution其他: 3.1 %其他: 3.1 %Cameroon: 2.2 %Cameroon: 2.2 %China: 80.3 %China: 80.3 %Reserved: 0.9 %Reserved: 0.9 %Russian Federation: 3.1 %Russian Federation: 3.1 %United States: 10.5 %United States: 10.5 %其他CameroonChinaReservedRussian FederationUnited States

Catalog

    通讯作者: 陈斌, bchen63@163.com
    • 1. 

      沈阳化工大学材料科学与工程学院 沈阳 110142

    1. 本站搜索
    2. 百度学术搜索
    3. 万方数据库搜索
    4. CNKI搜索

    Figures(2)  / Tables(3)

    Article Metrics

    Article views(596) PDF downloads(7) Cited by()
    Proportional views
    Related

    /

    DownLoad:  Full-Size Img  PowerPoint
    Return
    Return