razaali10 commited on
Commit
d8a8794
·
verified ·
1 Parent(s): aefc6d3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -19
README.md CHANGED
@@ -1,27 +1,26 @@
1
- ---
2
- title: WDS_Model
3
- emoji: 💧
4
- colorFrom: blue
5
- colorTo: indigo
6
- sdk: gradio
7
- sdk_version: 5.29.0
8
- app_file: app.py
9
- pinned: false
10
  ---
11
 
12
- # 💧 EPANET Simulation API using WNTR
13
 
14
- This Hugging Face Space hosts a web-based EPANET simulation interface using the **Water Network Tool for Resilience (WNTR)** and **Streamlit**. It enables users to upload `.inp` files, configure simulation parameters, and generate hydraulic analysis results including pressure and flow data.
 
 
 
 
 
 
 
15
 
16
- ...
17
 
18
- ## 📬 Contact
19
 
20
- For bug reports, feature requests, or professional support, contact:
21
 
22
- **Raza Ali, P.Eng.**
23
- Civil Engineer, Ontario
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