A modern, enterprise-grade simulation platform for resource allocation in 6G networks.
This project is a full-stack scientific simulator designed to compute and visualize Blocking Probability (
- Thesis: Simulation of Resource Allocation in 6G Networks
- Author: Parissis Dimitrios (Computer Science Graduate)
- Supervisor: Professor Ioannis Vardakas
- Institution: University of Western Macedonia, Department of Informatics
Note: The theoretical analysis and initial Java prototype were developed under academic supervision.
The full-stack architecture, modern web simulator (React, Flask, MongoDB), and UI/UX design were independently designed and implemented by the author.
6G-Video-GitHub.mp4
-
📊 Multi-Rate Loss System Engine
Computes end-to-end blocking probabilities across complex topologies (Fronthaul, Servers, Antennas) supporting multiple service classes simultaneously. -
⚡ Dynamic Noise Injection
Simulates real-world interference using configurable Gaussian noise parameters integrated directly into the capacity model. -
🛡️ High-Load Stability (Damping Factor)
Applies a damping factor (0.5) to the Erlang Fixed Point algorithm, ensuring convergence and eliminating oscillations under extreme loads (>1000 Erlang). -
💾 O(1) Smart Caching (MongoDB)
Identical simulations are cached. Re-running the same scenario instantly returns results without recomputation. -
📈 Visualization & Export
Interactive charts (Recharts) with instant CSV export (EU format), compatible with MATLAB and Excel.
This project follows a Monorepo / Feature-Driven Architecture, cleanly separating the UI from the computational engine.
- Framework: Python / Flask
- Database: MongoDB (PyMongo)
- Math Engine: NumPy (vectorized operations)
backend/
├── app/
│ ├── api/ # REST API routes
│ ├── core/ # Mathematical engine (RLA, KRF, BPC)
│ ├── db/ # MongoDB access layer
│ └── services/ # Business logic & orchestration
├── requirements.txt
└── .env # Environment configuration
- Framework: React 19 + Vite
- Styling: Bootstrap 5 + Custom CSS Variables (Dark/Light Mode)
- Charts: Recharts
frontend/
├── src/
│ ├── components/ # Reusable UI components
│ ├── features/ # Domain-specific modules
│ ├── hooks/ # State management hooks
│ ├── pages/ # Main dashboard views
│ └── services/ # API communication (Axios)
└── package.json
- Node.js 18+
- Python 3.10+
- MongoDB running locally on port
27017
# Navigate to backend
cd backend
# Create & activate virtual environment
python -m venv venv
source venv/bin/activate # Windows: .\venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Create .env file and add:
# MONGO_URI=mongodb://localhost:27017/
# MONGO_DB_NAME=Reduced_Load_Approximation_Kaufman_Roberts
# Navigate to backend
cd backend
# Start Development Server
python -m mainBackend runs at: http://localhost:5000
Open a new terminal:
# Navigate to frontend
cd frontend
# Install dependencies
npm install
# Start development server
npm run devFrontend runs at: http://localhost:5173
- Designed for 6G network research and simulation
- Optimized for high computational loads
- Built with emphasis on performance, accuracy, and usability
Built with precision for 6G Telecommunication Research