Update README.md
Browse files
README.md
CHANGED
|
@@ -1,27 +1,26 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
colorTo: indigo
|
| 6 |
-
sdk: gradio
|
| 7 |
-
sdk_version: 5.29.0
|
| 8 |
-
app_file: app.py
|
| 9 |
-
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
-
#
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
##
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
Email: *[your email]*
|
| 25 |
-
Hugging Face: [@razaali10](https://huggingface.co/razaali10)
|
| 26 |
|
| 27 |
-
---
|
|
|
|
| 1 |
+
# 💧 EPANET Simulation with WNTR (Gradio Version)
|
| 2 |
+
|
| 3 |
+
This Gradio web app allows you to upload an EPANET `.inp` file and simulate the water distribution system using the **WNTR (Water Network Tool for Resilience)** library. It returns results for node pressures, tank levels, and demands with CSV download and Plotly visualization support.
|
| 4 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
+
## 🚀 Features
|
| 8 |
|
| 9 |
+
- Upload `.inp` files directly
|
| 10 |
+
- Run WNTR hydraulic simulation
|
| 11 |
+
- View results for:
|
| 12 |
+
- Node Pressures
|
| 13 |
+
- Tank Water Levels
|
| 14 |
+
- Node Demands
|
| 15 |
+
- Download results as CSV
|
| 16 |
+
- Plot results with interactive Plotly graphs
|
| 17 |
|
| 18 |
+
---
|
| 19 |
|
| 20 |
+
## 🛠 Requirements
|
| 21 |
|
| 22 |
+
Install dependencies via pip:
|
| 23 |
|
| 24 |
+
```bash
|
| 25 |
+
pip install -r requirements.txt
|
|
|
|
|
|
|
| 26 |
|
|
|