An innovative approach to the study of the effect of alternative fuels on the vibration activity of internal combustion engines
- Authors: Telpiz E.V.1, Rybachuk V.G.1
-
Affiliations:
- Moscow Polytechnic University
- Issue: Vol 92, No 2 (2025)
- Pages: 107-115
- Section: Environmentally friendly technologies and equipment
- Submitted: 21.12.2024
- Accepted: 05.03.2025
- Published: 21.03.2025
- URL: https://journals.eco-vector.com/0321-4443/article/view/643273
- DOI: https://doi.org/10.17816/0321-4443-643273
- EDN: https://elibrary.ru/DHHPGQ
- ID: 643273
Cite item
Abstract
BACKGROUND: The use of ammonia (NH3) as a diesel fuel additive is of great interest for addressing environmental and operational challenges, such as reducing harmful emissions and improving engine efficiency. However, the influence of ammonia on vibration parameters of diesel engines is still understudied, thus requiring detailed research.
AIM: This study aims to analyze the influence of ammonia (NH3) as a diesel fuel additive on vibration parameters of a diesel engine using an artificial neural network (ANN) designed to predict these parameters.
METHODS: The study employs modeling methods based on neural networks. TensorFlow and Keras frameworks were used to develop and train the neural network. Parameters of the engine (engine bore, speed, compression ratio, etc.) and fuel mixtures containing 5%, 10%, and 15% NH3 were used as inputs. The model's accuracy was assessed based on experimental data.
RESULTS: The developed ANN showed high vibration prediction accuracy (up to 98.67%). Experimental data showed that increased ammonia additive ratio in the fuel mixture results in increased engine vibration. The highest vibration amplitude was 11.67 m/s² at 15% NH3. The results indicate potential risks of lower engine performance when using ammonia, despite its environmental advantages.
CONCLUSION: The study showed that ammonia additives in diesel fuel increase engine vibration, which could affect its reliability and durability. Despite the high accuracy of neural network predictions, the observed increase in vibration requires further investigation. Additional research is required to ensure the safe use of NH3 as a fuel additive by focusing on optimal mixture proportions and the influence of other factors, such as pressure and temperature.
Full Text
Background
The use of ammonia (NH3) as a fuel additive is an important research area for solving modern environmental and operational problems of energy and vehicle technology sectors. In the context of increased energy consumption and associated increased greenhouse gas emissions, ammonia has unique advantages that can improve engine efficiency and reduce its negative environmental impact.
Key relevance factors of this study include the increased exposure to harmful emissions associated with the combustion of conventional hydrocarbon fuels. Some research show that ammonia is a carbon-free compound significantly reducing nitrogen oxide (NOx) and other pollutant levels. For example, Kobayashi et al. [7] described how the use of NH3 during the combustion reduces emissions and improves engine performance.
In addition to environmental aspects, research shows that ammonia can improve the calorific value of fuel mixtures. NH3 may be used as a hydrogen carrier and help improve combustion leading to the increased overall engine performance. However, regardless of the available data on the benefits of NH3, available studies often disregard its influence on vibration parameters of diesel engines, requiring detailed research in this area.
As pure ammonia is fairly toxic, experimental studies involving its use and mixing pure ammonia with fuel for combustion are highly complicated. Therefore, the analysis of the available powertrain and fuel mixture parameters of a specific engine for possible vibrations using an artificial neural network (ANN) is a perfect alternative to conventional engine bench tests with vibration sensors.
Solving this problem requires the development of a sufficiently trained ANN that can predict the influence of diesel additives, such as ammonia, on engine vibration depending on the fuels used in the mixture.
Thus, this study is relevant and unique as it offers new approaches allowing to analyze the influence of additives on the vibration of diesel engines. This study will allow to develop more efficient and environmentally friendly fuel mixtures and reduce dependence on conventional hydrocarbon energy sources.
Aim
This study aims to analyze the influence of innovative diesel fuel additives, such as ammonia (NH3), on the vibration of a diesel engine. Given contemporary requirements to low emissions of harmful substances and improved engine efficiency, NH3 research is of particular interest to the energy sector.
In addition to the applicable empirical relationships of vibration and engine dynamics and the parameters of studied fuel mixtures, vibration studies of engines running on conventional and alternative fuel will be used as inputs for the neural network. This approach allows to verify the neural network outputs and assess the potential benefits of ANN used to analyze engine vibration parameters.
Thus, the main aim of the paper is to determine the influence of additives on the vibration of diesel engines and to confirm the hypothesis that the NH3 additive both reduces emissions and affects the engine performance.
Methods
To achieve the aim of this study, i.e. to analyze the influence of ammonia (NH3) as a diesel fuel additive on engine vibration properties, we developed an approach that involves the development and training of an artificial neural network (ANN) and the prediction of diesel engine vibration test results for fuel mixtures with different ammonia levels.
Modeling a process using an artificial neural network
Neural networks are mathematical models operating as real neurons in the human brain. They have multiple layers and each layer contains neurons that connect to other layers. During the training, the network adjusts connections between neurons to find data dependencies. For example, in this study, the neural network determines how engine and fuel parameters affect vibration amplitude. This ability to find nonlinear relationships makes neural networks indispensable predictors for complex systems, including internal combustion engines.
In tests conducted at the Wrocław University of Science and Technology [1], vibration acceleration of the tested engine was determined in different operational modes. These data, together with engine design parameters and fuel properties, allow to define a running engine model to determine relationships of parameters.
To read the values, the neural network requires input data, i.e. a file containing row-by-row parameters of the engine state at a particular time. The data set size may vary depending on the frequency and the duration of vibration sensor measurements. In our case, the measurement frequency was 8.5 kHz, which, with a measurement duration of 10 seconds, provides a data set of 85,000 rows. During engine operation, its design parameters and fuel properties (in short-term tests) do not change; therefore, in a measurement set that corresponds to a certain engine speed, only the vibration amplitude will differ—and it will be different for each sensor measurement. When switching to the next engine operating mode, the crankshaft speed also changes. This, together with the vibration sensor measurements, will provide another data sample.
This data format is required for the neural network to read the parameter variations. An example of such data format is shown in Table 1; it includes two random rows from the total sample of engine operation data at a crankshaft speed of 1,200 rpm.
Table 1. Parameters of the input layer of the neural network
Таблица 1. Параметры входного слоя нейросети
Engine bore (mm) | Crankshaft speed (rpm) | Stroke (mm) | Compression ratio | Piston weight (g) | Crankshaft moment of inertia (kg·m2) | Exhaust valve diameter (mm) | Fuel density (kg/m3) | Fuel viscosity (mm2/s) | Cetane number | Vibration amplitude (mm) |
69.6 | 1,200 | 82 | 17.6 | 310 | 0.2 | 30.5 | 820 | 3 | 50 | 1.64875 |
69.6 | 1,200 | 82 | 17.6 | 310 | 0.2 | 30.5 | 820 | 3 | 50 | 1.60124 |
An important initial task is to prepare, normalize, and adjust the data to a common format and type (in this case, FLOAT [floating point numbers]). Data normalization involves transforming the inputs so that their values belong to a common scale with the range from 0 to 1. This step is extremely important when training a neural network as it improves the model convergence and prevents numerical instability. If the parameters (properties) used have different ranges (e.g. the engine speed is measured in ‘000 rpm and the compression ratio is measured in digits), the model may prioritize the parameters with the highest absolute value. Normalization process solves this issue.
After splitting and normalizing, the data were formatted so that they were easily understood by machine learning tools, including TensorFlow or Keras. Each input parameter (e.g. bore diameter or fuel viscosity) corresponded to a separate neuron in the input layer of the model. A single output neuron predicted the engine vibration amplitude for a given set of input parameters. These actions are key to successful training of the neural network as they ensure the correct operation of machine learning algorithms, minimization of errors associated with incorrect data preparation, and an unbiased quality assessment of the model.
The vibration data have a temporal structure, i.e. it represents values obtained over certain time intervals; thus, a recurrent neural network was initially chosen for the study. However, due to the large number of parameters, we have decided to use a fully connected neural network as it is more suitable for regression and prediction, allows to efficiently process multidimensional data, and generates accurate outputs. All data preparation steps performed in the study proved critical to the successful training of the model. This ensured the stable operation of machine learning algorithms, mitigated the risk of errors caused by insufficient data processing, and provided for an unbiased and reliable model quality assessment.
Fig. 1 shows the layered structure of the neural network.
Fig. 1. A diagram of the layered structure of a neural network.
Рис. 1. Схема послойной структуры нейросети.
The number of input layer nodes is determined by the parameters used in the study; the parameters, in turn, are determined by the depth of the available data and computational power.
Cloud computing plays a key role in contemporary machine learning research. Renting a cloud server allows researchers to use high-power computing resources without having to invest in their own hardware. Training a neural network is a fairly resource-intensive process; therefore, a cloud server was rented from Selectel to perform computational tasks required to train the neural network.
The server was running on Ubuntu operating system compatible with common machine learning libraries, such as TensorFlow and Keras. All data, including 12 key parameters (e.g. engine speed and fuel viscosity), were prepared, normalized, and downloaded in CSV (Comma-Separated Values) format. These data were used to train a neural network with optimized hyperparameters, allowing to achieve high prediction accuracy. Computing power ensured efficient data processing and reduced model training time; it allowed us to focus on data analysis and eliminated the need to solve infrastructure problems. Thus, the study was completed within the specified period.
The number of neurons in the input layer directly depends on the number of studied parameters. In this case, these are parameters describing the engine design, fuel properties, and vibration amplitude as the target variable. For example, Table 1 lists 12 input parameters:
- Engine bore
- Crankshaft speed
- Stroke
- Compression ratio
- Piston weight
- Crankshaft moment of inertia
- Exhaust valve diameter
- Fuel density
- Fuel viscosity
- Fuel cetane number
- Fuel calorific value
- Vibration amplitude (target variable).
These parameters provide a detailed description of the system and allow the neural network to learn complex relationships.
Activation functions introduce nonlinearity to the data processing at each network layer. This allows the neural network to effectively process the data where the input and output relationship is nonlinear, similar to engine parameters and vibrations.
Activation functions play a key role in the operation of neural networks as they allow models to capture complex nonlinear data relationships. Without activation functions, any neural network would be reduced to a simple linear model this would significantly limit its ability to solve complex problems, such as predicting engine vibrations based on multiple inputs.
Configuration of the neural network used the ReLU (Rectified Linear Unit) function providing an acceptable balance of predictive accuracy and computational efficiency. Due to its shape, the ReLU function effectively extracts significant data patterns, which is especially important when processing a lot of input parameters, as is the case in our study.
When using biodiesel fuel parameters, outputs of the artificial neural network model were as close as possible to the experimental data that had been obtained during tests at the Wrocław University of Science and Technology [1]. This confirms that the model is consistent with real-life data and able to accurately reproduce the complex processes occurring in the engine. During the pre-training stage, the data was divided into two groups, i.e. a training set (70% of the total size) that was used to fine tune the model and a test set (30%) designed to test the training set’s performance on new observations that were not used for training.
The model training was focused on reducing the mean square error widely used in linear regression problems as the main quality metric of predictions.
This metric is calculated as follows. For each observation, the difference between the predicted and actual values is calculated then this difference is squared to eliminate possible negative values, and the result is averaged over the entire data set. This approach allows to effectively estimate the overall error of the model and seek to minimize it.
At the training and validation stages, the model accuracy was 98.67%. It shows both the high prediction accuracy and the model’s consistency with real-life experimental data, which is especially important for its application in studies of complex systems. The data predicted by the neural network have proven to be correct therefore, the model is a reliable tool for further research involving the analysis of the influence of various parameters on engine vibration properties. A comparison of experimental and predicted data is shown in Fig. 2.
Fig. 2. Comparison of experimental and forecast data on vibration activity of a biodiesel engine (vertically: the acceleration value of the engine; horizontally: the rotational speed of the crankshaft of the engine).
Рис. 2. Сравнение экспериментальных и прогнозных данных виброактивности двигателя, работающего на биодизеле (по вертикали — значение ускорения двигателя; по горизонтали — частота вращения коленчатого вала двигателя).
Prediction of ammonia-related engine vibration
To predict engine vibration in cases with ammonia additives in diesel fuel, we did three iterations of calculations by simulating engine operation with 5%, 10%, and 15% ammonia by volume added to the fuel mixture. These ratios were chosen based on specified safe levels of ammonia in fuel systems and its influence on combustion processes. At each iteration, the input fuel parameters were changed, including density, viscosity, and cetane number, to match the physicochemical properties of the mixture at each ammonia level. The remaining input parameters related to the engine design were kept constant, allowing to only focus on the effect of fuel proportions.
At the first calculation stage, the neural network predicted marginal vibration changes for a mixture with 5% ammonia additive ratio compared to pure diesel fuel due to minor calorific value and mixture viscosity changes. At 10% ammonia additive ratio, the prediction showed an increased vibration amplitude, which may be associated with impaired ignition and heterogenic mixture properties. The predicted diagram of engine vibration accelerations is shown in Fig. 3. In the third iteration with 15% ammonia additive ratio, the model predicted a more significant change in vibration, indicating increased vibration loads on the engine. These outputs highlight the need for careful optimization of fuel proportions and engine fine-tuning for each ammonia level to reduce negative impact on engine durability and stability.
Fig. 3. The forecast diagram of the vibration acceleration of the engine when running on a fuel mixture of 10%NH₃ (acceleration values are displayed vertically, similar to the measurements obtained from the vibration sensor).
Рис. 3. Прогнозная диаграмма виброускорений двигателя при работе на топливной смеси 10%NH₃ (по вертикали отображены значения ускорения, подобные измерениям, полученным с вибродатчика).
Analysis and comparison of results
Our study showed that with increased ammonia (NH3) additive ratio in the fuel mixture, engine vibration tends to increase. This effect is associated with changes in combustion behavior caused by the physicochemical properties of ammonia.
For example, NH3 has a lower calorific value compared to diesel fuel, affecting ignition behavior and flame propagation.
With 5% ammonia additive ratio, the basic engine vibration parameters remain generally the same. A slightly increased amplitude is associated with a change in the mixture density and viscosity. However, these changes are not critical for the overall engine operation.
At 10% ammonia additive ratio, a noticeable increase in vibration amplitude is observed. This is associated with lower combustion stability and may result in uneven pressure distribution in the cylinders and additional dynamic loads on the piston block and the crank gear.
The highest increase in vibration was recorded at 15% additive ratio. The vibration amplitude reaches 11.67 m/s², indicating significant changes in the combustion behavior. Unstable ignition and higher combustion rate of the NH3 mixture create additional vibration loads that may lead to accelerated wear of engine components.
We focused on the relationship of vibration and engine speed. We found that in all tested NH3 additive ratios (5%, 10%, 15%), the vibration amplitude decreased as the engine speed increased from 1,200 to 2,400 rpm. The highest vibration levels were observed at 1,200 rpm, which corresponds to engine idling. Vibration increases as NH3 additive ratio in the fuel mixture increases it is associated with uneven combustion typical of high ammonia level.
The described relationships are shown in Fig. 4.
Fig. 4. Comparison of vibration activity levels depending on the Nh₃ content in the fuel mixture (vertically: the acceleration value of the engine; horizontally: the rotational speed of the crankshaft of the engine).
Рис. 4. Сравнение уровней виброактивности в зависимости от содержания NH₃ в топливной смеси (по вертикали — значение ускорения двигателя; по горизонтали — частота вращения коленчатого вала двигателя).
Conclusion
The study was designed to investigate the influence of ammonia (NH3) additives in diesel fuel on the vibration parameters of a diesel engine. It shows that the use of 5%, 10%, and 15% NH3 resulted in increased vibration. Analysis of the predicted data shows that the acceleration amplitude reaches 11.67 m/s² at the highest ammonia additive ratio in the mixture (15%). This highlights that ammonia additive affects engine behavior, indicating the need for further research.
The study disputes the expected effectiveness of NH3 as a means of improving engine performance and reducing harmful emissions. Increased vibration associated with increased ammonia level may affect the operational reliability and durability of the powertrain. This increase is caused by changes in the physicochemical properties of the fuel, resulting in uneven combustion and, therefore, increased vibration loads on the engine structure.
It should be noted that artificial neural networks (ANN) used to simulate vibration parameters showed high prediction accuracy (nearly 99%). However, despite the high accuracy of the model, its predictions do not always correlate with actual operating data, especially as ammonia level increases above 10%.
This discrepancy may be caused by model restrictions and complexity of describing all combustion aspects of ammonia mixtures.
The results highlight the importance of further research aimed at in-depth understanding of the physicochemical properties of NH3-added fuels and their influence on diesel engine performance. The research should focus on studying the influence of factors such as pressure, temperature, and various fuel proportions on engine operation stability. These factors can have a significant impact on the fuel combustion behavior, heat exchange, and vibration.
In the premises, this study creates advanced research areas for further study of possible use of ammonia as a fuel additive. However, the identified risks of increased vibration highlight the need for a cautious and comprehensive approach to the use of NH3 as a diesel fuel component. To achieve this goal, it is required to develop technologies capable of mitigating the negative effect of ammonia and further optimize the fuel mixtures to ensure their environmental safety and stable engine operation.
Additional information
Author contributions: E.V. Telpiz: literature review, collection and analysis of literary sources, writing text, working with graphs and diagrams and editing the manuscript; V.G. Rybachuk: literature review, collection and analysis of literary sources, work on creating and training a neural network, preparing and writing the text of the manuscript. Thereby, all authors made a substantial contribution to the conception of the work, acquisition, analysis, interpretation of data for the work, drafting and revising the work, final approval of the version to be published and agree to be accountable for all aspects of the work.
Ethics approval: Not applicable.
Funding sources: No funding.
Disclosure of interests: The authors have no relationships, activities or interests for the last three years related with for-profit or non-profit third parties whose interests may be affected by the content of the article.
Statement of originality: When creating this work, the authors did not use previously published information (text, illustrations, data).
Data availability statement: The editorial policy regarding data sharing is not applicable to this work, and no new data has been collected or created.
Generative AI: Generative AI technologies were not used for this article creation.
Provenance and peer-review: This work was submitted to the journal on its own initiative and reviewed according to the usual procedure. One external reviewer, a member of the editorial board and the scientific editor of the publication participated in the review.
About the authors
Egor V. Telpiz
Moscow Polytechnic University
Author for correspondence.
Email: egor_telpiz@mail.ru
ORCID iD: 0009-0005-5117-4267
SPIN-code: 9059-3050
postgraduate
Russian Federation, MoscowVladislav G. Rybachuk
Moscow Polytechnic University
Email: rybachuk97@mail.ru
ORCID iD: 0009-0002-9235-6209
SPIN-code: 2449-5185
postgraduate
Russian Federation, MoscowReferences
- Wrobel R, Sierzputowski G, Sroka Z. Comparison of diesel engine vibroacoustic properties powered by Bio and standard fuel. Energies. 2021;14(5):1478. doi: 10.3390/en14051478 EDN: CUFONJ
- Erdiwansyah, M.SM Sani, Mamat R. et al. Vibration analysis of the engine using biofuel blends: A Review. MATEC Web of Conferences. 2018;225:01010. doi: 10.1051/matecconf/201822501010
- Li G, Gu F, Wang T, et al. Investigation into the vibrational responses of cylinder liners in an IC engine fueled with biodiesel. Applied Sciences. 2017;7(7):717. doi: 10.3390/app7070717
- Berwal P, Kumar S, Khandelwal B. A comprehensive review on synthesis, chemical kinetics, and practical application of ammonia as future fuel for combustion. Journal of the Energy Institute. 2021;99:273–298. doi: 10.1016/j.joei.2021.10.001
- Van Rooij A. Engineering contractors in the chemical industry. the development of ammonia processes, 1910–1940. History and Technology. 2005;21(4):345–366. doi: 10.1080/07341510500268215
- Ramensky AYu, Shelishch PB, Nefedkin SI. The use of hydrogen as a motor fuel for automobile internal combustion engines. history, present and prospects. Alternativnaya energetika i ekologiya (ISJAEE). 2006;(11):63–70. (In Russ.) EDN: HYRUAL
- Lindstedt RP, Lockwood FC, Selim MA. Detailed kinetic modelling of chemistry and temperature effects on ammonia oxidation. Combustion Science and Technology. 1994;99(4–6):253–276. doi: 10.1080/00102209408935436
- Uludamar E, Tüccar G, Aydın K, Özcanlı M. Vibration analysis of a diesel engine fueled with sunflower and canola biodiesels. Advances in Automobile Engineering. 2016;05(01):23–37. doi: 10.4172/2167-7670.1000137
- Yang T, Wang T, Li G, et al. Vibration characteristics of compression ignition engines fueled with blended petro-diesel and Fischer-Tropsch diesel fuel from coal fuels. Energies. 2018;1(8):2043. doi: 10.3390/en11082043
- Xinling L, Zhen H. Emission reduction potential of using gas-to-liquid and dimethyl ether fuels on a turbocharged diesel engine. Science of The Total Environment. 2009;407(7):2234–2244. doi: 10.1016/j.scitotenv.2008.11.043
Supplementary files











