1. Introduction
Underground mining operations are some of the most challenging working environments, where controlling and maintaining air quality is of fundamental importance. The main goal of a ventilation system is to supply fresh air and successfully disperse gaseous pollutants and airborne particulates. Analyzing conditions and taking into account local or overall requirements while at the same time adjusting and directing the airflow has, up to now, in the majority of cases heavily relied on the manual control of its parameters (man-in-the-loop).
In recent years, challenges such as reduction of the environmental footprint and energy consumption and social concerns about H&S issues have led the mining industry to adopt new processes and technologies in order to address these issues and ensure the long-term sustainability of the operations. In order to achieve the above requirements, researchers have attempted to combine the ventilation on demand (VoD) method with ML techniques and especially with artificial neural networks (ANNs) [
1,
2,
3,
4].
This paper analyzes the airflow requirements of underground bauxite operations and the accurate assessment of future conditions so as to effectively adjust ventilation parameters to satisfy set requirements. In this way, the design of the primary ventilation system, assisted with an ANN model, can be automatically adjusted to meet the existing conditions and requirements. Thus, with the development of a ventilation on demand strategy coupled with autonomous capabilities, both significant improvements in work safety and significant energy savings in ventilation energy consumption—and a reduced overall environmental footprint of the operation—can be achieved.
2. Description of Vargiani Mine’s Ventilation System
The bauxite mine under examination belongs to Delfoi Distomo S.A and is one of the most productive mines of the company, located in the northwestern foothills of Mount Parnassus and east of Mount Giona in Phocis, Central Greece. The local area has a strong mining character with extensive underground operations. The mine has taken its name from the village of Vargiani, which is located 320 m northeast of the mining area.
The whole mine ventilation system consists of 8 km of main tunnel while the total horsepower of the machine fleet working underground is calculated at 2170 hp with 20 miners (at full operation for both shifts). A total airflow volume of approximately 90 m
3/s is needed to meet the ventilation requirements and is supplied by the use of two main fans—working in parallel—at the entrance of access tunnel [
5]. The requirement airflow calculated is based on the stricter standard in effect in Greece [
6], which defines the minimum airflow requirement for diesel equipment at 2.3 m
3/min per HP and for personnel at 5.66 m
3/min per person.
The digital twin was developed via the import of the network’s characteristics (length, friction characteristics, fans, etc.) into the Ventsim Design software program. The proper adjustments were made and the model validated via comparison with real data measurements that have been carried out at the mine, both in terms of airflow quantity and quality, under several available real-life scenarios. Based on this twin, several scenarios were developed and evaluated, and more importantly, data were gathered that allow for the training of the ML algorithms. The whole process of network modelling and validation has been already given in detail by Karagianni and Benardos (2021) [
7].
3. Machine Learning & Artificial Neural Networks
3.1. Machine Learning
Machine learning (ML) is a branch of artificial intelligence (AI) and computer science which focuses on the use of data and algorithms to imitate the way that humans learn and gradually improve accuracy. In fact, ML as a discipline aims to design, understand, and apply computer programs that learn from experience for the purpose of modelling, prediction, or control. Supervised, unsupervised and reinforcement learning are the three main types of ML methods. In this paper, we applied supervised learning and trained the algorithm by using “labelled” training data from the dataset. This means that some input data are already tagged with the correct output. The goal is for the algorithm to approximate the mapping function so well that when there are new input data, it will be capable of predicting the output variables for these data.
3.2. Artificial Neural Networks
Artificial neural networks (ANN) are a ML technique and considered information-processing systems capable of learning and generalizing from “experience” [
6]. They are characterized by flexibility, ability to generalize complex phenomena, and capability to satisfactorily encounter and address conditions where time-evolving situations are to be modelled. In this study, two of these were developed from the most basic and popular types of ANNs. The feed forward neural networks (FFNs) and the long/short term memory neural networks (LSTMs) and the algorithm were written using the Python programming language.
3.2.1. The Main Characteristics of an ANN Model
A simple ANN consists of an input layer, one or more hidden layers, and an output layer. These layers are interconnected with a specific number of neurons that transfer the signals. The way that all neurons are connected to each other is called topology (or architecture) and is one of the most important features, because the architecture determines the capabilities of the ANN. Besides the above, there are also two main characteristics for the composition of an artificial neural network: the training or learning algorithm, which is the method that establishes the values of the weights on the connections [
8] and the type of activation function, which defines the output of a neuron for a given input.
3.2.2. FFN and LSTM Neural Networks
FFNs are the simplest type of artificial neural network. In this kind of network, the information moves in only one direction—forward—from the input layers, through the hidden layers and to the output layer. There is no “feedback loop” from the outputs of the neurons towards the inputs throughout the network.
On the other hand, LSTMs are also feed forward neural networks but with memory cell and recurrent connection. This means that these networks have a “feedback loop” from the outputs of the neurons towards the inputs at some point before being fed forward again for further processing and final output. Also, they are usually used to process and make predictions for sequences of data. In other words, the network expects the input in the form of a sequence of features and is useful for data such as time series.
Figure 1 shows in schematic representation the above differences [
9,
10,
11].
3.3. ANN Model Development
The aim of the models is to be trained and learn how to adjust the fan’s characteristics so to generalize solutions that will supply the mine with the required airflow, based on the number of workers and amount of diesel equipment that will be working at a given time (ventilation on demand) [
12,
13].
The dataset consists of total 813 records for each group data, 80% (650) used for the training set and 20% (163) for the test set. For the LSTM, the data splitting is in the form of a sequence, while for the FFN, it is random. Because of the different measurement units, the input data were normalized based on min–max normalization). The scenarios that have been made for both models—and the data gathered—have a maximum total diesel equipment horsepower of 1540 HP and maximum personnel of 8 workers (one working shift). In these scenarios, a quantity of equipment and workers enter and exit the mine for a given time frame with the model aiming to predict and adjust the fan’s characteristics in order to supply the mine with the required airflow. Also, the accuracy of the generalization of the ANNs is evaluated based on the mean absolute percentage error (
MAPE) between the predicted and the actual value of required airflow (Equation (1)):
3.4. Models Architecture
Finding the optimum ANN topology involves a set of trials and errors in order to achieve the minimum relative error. Finally, the best architecture for each model is presented in
Table 1 and
Table 2, as given below:
The validation of the models is a two-step process. The first involves the achievement of a small MSE (preferably below 1) in training data; the second encompasses both the accomplishment of a small MAPE in the test set but also consistent general behavior of the model’s generalizations. Of course, there are estimation uncertainties in the model’s predictions besides the fact that the ANN shows a high degree of accuracy (e.g., even a light change in temperature can change the environmental conditions of the mine). One way to prevent these uncertainties is by importing a greater volume of data—and parameters examined—into the model algorithms, which could, in turn, expand its working envelope and generalization capabilities.
4. Models Results
At the end of the training, a major task is to check the general behavior of the model. The generalization represents the way the ANN response to the training. If it follows the trend of the data and doesn’t focus on specific groups of values, it means that it is capable of reliable predictions.
Figure 2 and
Figure 3 present the generalization behavior of the LSTM and FFN models accordingly. The orange line shows the actual values while the blue line shows the predicted values.
As is shown, the LSTM model is rather overfitting the training data, and it is not capable of yielding accurate predictions and probably might not be suitable for the current dataset. On the other hand, the FFN model has consistent behavior across almost the entire range of the test set and satisfactorily follows the trend of the actual values, which means that it is capable of rational predictions of the required airflow.
FFN Model’s Accuracy and Adjustment
The cross-plot (
Figure 4) shows that the trained model is successful and the algorithm has the ability to lead to reliable predictions. More particularly, the FFN’s predicted values as compared with the actual airflow values show a high degree of accuracy. The model’s generalization has an average forecast accuracy of 95%.
The final step is to apply a correction rule in the model’s predictions, so as to always be in compliance with the legislative guidelines of minimum airflow requirements. Besides the fact that the average MAPE is under 4%, this rule actually ensures 100% compliance with the set airflow volume standards at every given time.
Figure 5 shows the adjustment of the model for the first 50 predictions. The coding imported into the algorithm is given hereinafter:
5. Conclusions
Mine ventilation is crucial for the whole mining operation process. In this paper, machine learning (ML) models using artificial neural networks (ANNs) developed in order to adjust the fan operating parameters of the primary ventilation system of an underground bauxite mine based on the ventilation on demand (VoD) method. Via a validated digital twin, different operating scenarios have been modelled to gather the required input data. This synthetic dataset consists of 813 records that were used for the training and the test of the algorithms.
The results of the trained models showed that the FFN has a better generalization than the LSTM regarding the operation of ventilation system based on the size of machine fleet and number of mining workers. Thus, the FFN was able to generalize the anticipated conditions and adjust the fan requirements with a forecast accuracy of 95%. Its consistent accuracy in the whole range tested is also of great importance to potential future use in a mining environment that changes its prevailing conditions in a dynamic manner. Finally, a specific code line set to the FFN model in order to ensure that the airflow predictions and adjustments are in 100% compliance at any given time with the stricter standards in effect in Greece.
The aforementioned process, as presented in this study, can lead to a significant improvement of the SLO (social license to operate) by achieving a reduction of both the environmental footprint and ventilation energy consumption of the mines, but also to ensure an upgrade of work safety level. Of course, more data are required so as to develop more accurate models and expand the working environment of the models so as to include almost all scenarios.
Author Contributions
Conceptualization, M.K. and A.B.; methodology, M.K. and A.B.; software, M.K.; validation, M.K. and A.B.; writing—original draft preparation, M.K.; writing—review and editing, M.K. and A.B.; All authors have read and agreed to the published version of the manuscript.
Funding
This research received no external funding.
Institutional Review Board Statement
Not applicable.
Informed Consent Statement
Not applicable.
Data Availability Statement
The data presented in this study are available on request from the corresponding author. The data are not publicly available due to privacy issues.
Acknowledgments
The authors would like to thank the Delfoi Distomo S.A. for their assistance in completing this research as well as the Howden Group for providing the licence of Ventsim Design software.
Conflicts of Interest
The authors declare no conflict of interest.
References
- Acuña, E.; Alvarez, R.; Hardcastle, S. A theoretical comparison of ventilation on demand strategies for auxiliary mine ventilation systems. In Proceedings of the 10th International Mine Ventilation Congress, Sun City, South Africa, 2–8 August 2014. [Google Scholar]
- Kashnikov, A.; Levin, L. Applying machine learning techniques to mine ventilation control systems. In Proceedings of the XX IEEE International Conference on Soft Computing and Measurements, Saint Petersburg, Russia, 24–26 May 2017; pp. 391–393. [Google Scholar]
- Semin, M.A.; Levin, L. Stability of air flows in mine ventilation networks. Process Saf. Environ. Prot. 2019, 124, 167–171. [Google Scholar] [CrossRef]
- Costa, L.; Silva, J. Strategies used to control the costs of underground ventilation in some Brazilian mines. REM-Int. Eng. J. 2020, 73, 555–560. [Google Scholar] [CrossRef]
- Delfoi Distomo, S.A. Technical Report of Bargiani’s Exploitation; Delfoi Distomo S.A.: Itea, Greece, 2018. (In Greek) [Google Scholar]
- Greek Ministerial Decree No 2223. Regulation of Mining and Quarrying Activities—Hellenic Republic Government Gazette 1227 B’/14-6-2011; Greek Ministerial Decree: Athens, Greece, 2011. [Google Scholar]
- Karagianni, M.; Benardos, A. Ventilation Design Modeling and Optimization for an Underground Bauxite Mine. Mater. Proc. 2021, 5, 29. [Google Scholar]
- Tsangaratos, P.; Benardos, A. Applying artificial neural networks in slope stability related phenomena. Bull. Geol. Soc. Greece 2013, 47, 1901–1911. [Google Scholar] [CrossRef]
- Haykin, S. Neural Networks. A Comprehensive Foundation, 2nd ed.; Prentice Hall: Hoboken, NJ, USA, 1999. [Google Scholar]
- Haykin, S. Neural Networks and Learning Machines, 3rd ed.; Pearson Education: Hoboken, NJ, USA, 2009. [Google Scholar]
- Sazli, M. A brief review of feed-forward neural networks. Commun. Fac. Sci. Univ. Ank. 2006, 50, 11–17. [Google Scholar] [CrossRef]
- McPherson, M. Subsurface Ventilation and Environmental Engineering; Springer: Dordrecht, The Netherlands, 1993. [Google Scholar]
- Hardcastle, S.; Gangal, M.D.; Schreer, M.; Gauthier, P. Ventilation-on-Demand: Quantity or Quality—A Pilot Trial at Barrick Gold’s Bousquet Mine. In Proceedings of the 8th US Mine Ventilation Symposium, Rolla, MO, USA, 11–17 June 1999. [Google Scholar]
| 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. |
© 2023 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/).