Submitted:
30 November 2024
Posted:
02 December 2024
You are already at the latest version
Abstract
Keywords:
1. Introduction
- Stability Phase: Explore how σ changes for ρ ∈ [0.1, 0.999] and [1, 100].
- Traffic Intensity Phase: Examine system behaviour when ρ = 1 and [1, 100].
- Chaotic Phase: Investigate the system response for ρ > 1 (e.g., 2, 3, 4) and [1, 100].

2. Methodology
- Error handling for division by zero, ensuring robustness.
- Validation of results, checking for undefined outputs (e.g., NaN).
- Visualization of results in 2D and 3D plots.
- Objective: Identify conditions where the system remains stable.
- Parameters: ρ ∈ [0.1, 0.999], k ∈ [1, 100].
- Visualization: 3D plots showing the surface of σ as a function of ρ and k.
- Objective: Analyse steady-state behaviour under maximum utilization (ρ = 1).
- Parameters: k ∈ [1, 100].
- Visualization: 2D plots of σ vs. k.
- Objective: Explore instability for ρ > 1 (e.g., 2, 3, 4).
- Parameters: ρ ∈ [2, 4], k ∈ [1, 100].
- Visualization: 3D plots highlighting unpredictable behaviour.



-
Import Libraries:
- The algorithm starts by importing necessary libraries such as NumPy and Matplotlib for numerical computation and visualization.
-
Define -stability Function:
- This function computes σ iteratively for given parameters k and ρ.
- Starting with an initial guess (), the function calculates updated values of σ until convergence or a maximum number of iterations (default 100).
-
Iterative Convergence:
- In each iteration, a new value of is computed using the formula:
- If the absolute difference between consecutive σ values is less than a specified tolerance (1e-6), the function exits, returning the converged value of σ.
-
Error Handling:
- A try-except block handles division-by-zero errors, ensuring the algorithm does not crash but returns NaN when such cases occur.
-
Iterate Over Phases:
- Stability Phase: Iterates over a range of ρ and k values to compute σ.
- Traffic Intensity Phase: Sets ρ = 1 (indicating maximum utilization) and computes how σ changes for varying values of k.
- Chaotic Phase: Explores the behaviour of σ for ρ > 1.
- Significance: This phase highlights how the system behaves under a fixed load condition. Unlike the stability phase, where ρ changes, the traffic intensity phase focuses solely on the effect of increasing k.
- Results: The algorithm computes σ for a range of k values (1 to 100) with ρ fixed at 1. This setup demonstrates saturation effects in the system, where σ stabilizes despite increasing k.
3. Results and Analysis




- [14] provides an analytical model for nonstationary queues, focusing on approximations for steady states. Our work complements this by offering computational insights into transitions between stable and unstable phases.
- Unlike [14], which assumes stationary behaviour, our approach identifies conditions under which chaos emerges.
- Critical Transitions: The stability phase is highly sensitive to small changes in ρ, whereas the chaotic phase exhibits larger, unpredictable variations.
- Algorithm Robustness: The iterative approach converges reliably under most conditions, with exceptions managed through error handling.
4. Conclusion Alongside Research Pathways
- Extending the analysis to all real values of , as hinted at in the unexplored negative values of .
- Exploring real-world applications in traffic management and population dynamics
References
- Mageed,I., A.(2021). Solving the unsolvable the closed form solution of PSFFA model of non-stationary queueing systems, DEAMN 2021, Online Yarmouk University Mathematics conference, Jordan, 2021.
- Mageed, I. A., & Zhang, K. Q. (2023). Solving the open problem for GI/M/1 pointwise stationary fluid flow approximation model (PSFFA) of the non-stationary D/M/1 queueing system. electronic Journal of Computer Science and Information Technology, 9(1), 1-6. [CrossRef]
- Mageed, I. A, Babagana, M, closed form analytic solution for GI/M/1 pointwise stationary fluid flow approximation model (PSFFA) of the non-stationary D/M/1 queueing system, Conference of the Southern Africa Mathematical Sciences Association - SAMSA2021 November 22 - 24, 2021, Virtual Conference.
- Mageed,I., A (2024).Effect of the root parameter on the stability of the Non-stationary D/M/1 queue’s GI/M/1 model with PSFFA applications to the Internet of Things (IoT). Preprints 2024, 2024011835. [CrossRef]
- Mageed,I., A .(2024)Solving the Open Problem of Finding the Exact Pointwise Stable Fluid Flow Approximation (PSFFA) State Variable of a Non-Stationary M/M/1 Queue with Potential Real-Life PSFFA Applications to Computer Engineering, 28 January 2024, PREPRINT (Version 1) available at Research Square. [CrossRef]
- Mageed,I., A .2024) Upper and Lower Bounds of the State Variable of M/G/1 PSFFA Model of the Non-Stationary M/Ek/1 Queueing System. Preprints 2024,2024012243. [CrossRef]
- Mageed,I., A. (2024) The Infinite-Phased Root Parameter for the G1/M/1 Pointwise Stable Fluid Flow Approximation (PSFFA) Model of the Non-Stationary Ek/M/1 Queue with PSFFA Applications to Hospitals’ Emergency Departments. Preprints 2024, 2024021021. [CrossRef]
- Mageed,I., A. (2024). Upper and Lower Bounds of the State Variable of M/G/1 PSFFA Model of the Non-Stationary M/EK/1 Queueing System. J Sen Net Data Comm, 4(1), 01-04. [CrossRef]
- Mageed,I., A. (2024). Effect of the Root Parameter on the Stability of the Non-Stationary D/M/1 Queue’s GI/M/1 Model with PSFFA Applications to the Internet of Things. J Sen Net Data Comm, 4(1), 01-09.
- Python, W. (2021). Python. Python releases for windows, 24.
- Weerakoon, L., Herr, G. S., Blunt, J., Yu, M., & Chopra, N. (2022). Cartographer_glass: 2D graph SLAM framework using LiDAR for glass environments. arXiv preprint arXiv:2212.08633.
- Virtanen, P., Gommers, R., Oliphant, T. E., Haberland, M., Reddy, T., Cournapeau, D., ... & Van Mulbregt, P. (2020). SciPy 1.0: fundamental algorithms for scientific computing in Python. Nature methods, 17(3), 261-272. [CrossRef]
- D’Amico, M., Morasca, P., Spallarossa, D., Bindi, D., Picozzi, M., & Vitrano, L. (2024). User Manual of GITpy: a Python-based tool for the Generalized Inversion Technique. Rapporti Tecnici-INGV.
- Wang, W. P., Tipper, D., & Banerjee, S. (1996, March). A simple approximation for modelling nonstationary queues. In Proceedings of IEEE INFOCOM’96. Conference on Computer Communications (Vol. 1, pp. 255-262). IEEE.


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 (http://creativecommons.org/licenses/by/4.0/).
