https://github.com/arunsai63/smartlift
A simulated smart lift system with React UI and custom dispatch algorithms. Visualize, test, and optimize elevator logic for multi-floor, multi-lift environments.
https://github.com/arunsai63/smartlift
algorithms elevator-simulation react tailwindcss vite
Last synced: about 2 months ago
JSON representation
A simulated smart lift system with React UI and custom dispatch algorithms. Visualize, test, and optimize elevator logic for multi-floor, multi-lift environments.
- Host: GitHub
- URL: https://github.com/arunsai63/smartlift
- Owner: arunsai63
- Created: 2025-03-29T18:46:04.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-29T19:26:12.000Z (2 months ago)
- Last Synced: 2025-03-29T19:31:49.673Z (2 months ago)
- Topics: algorithms, elevator-simulation, react, tailwindcss, vite
- Language: JavaScript
- Homepage: https://arunsai63.github.io/SmartLift/
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 SmartLift
A simple lift (elevator) simulator where you can test and visualize how different elevator algorithms perform in a building with multiple floors and lifts.
Live Demo: [arunsai63.github.io/SmartLift](https://arunsai63.github.io/SmartLift)
🛠️ What it does
• Simulates a building with multiple elevators and floors
• You can press a floor button and see which lift comes to pick you up
• Implements a basic lift dispatch system that can be replaced with your own logic
• Helps you test how different strategies perform in real time
• Built with a minimal UI to focus on logic and movement✍️ Customizing the Logic
All lift dispatch logic lives in src/logic/dispatch.ts . You can plug in your own algorithm to control which lift gets assigned based on current positions, direction, load, or whatever metric you want.