Update README.md
Browse files
README.md
CHANGED
|
@@ -1,30 +1,20 @@
|
|
| 1 |
-
# ASME Section VIII — Preliminary Pressure Vessel Calculator (Streamlit)
|
| 2 |
-
|
| 3 |
-
**Version:** 0.1.0
|
| 4 |
-
|
| 5 |
-
**Disclaimer:** This tool is for preliminary design and educational purposes only. Final design, verification, and construction decisions must be made and stamped by a licensed professional engineer and verified against the latest ASME code editions.
|
| 6 |
-
|
| 7 |
---
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
- Impact test / MDMT comparison (approximate)
|
| 17 |
-
- MAWP estimation from thickness
|
| 18 |
-
- Summary CSV export and optional PDF export (requires `reportlab`)
|
| 19 |
-
|
| 20 |
-
**Important:** The app contains conservative approximations for some ASME rules. Use for preliminary sizing and learning only.
|
| 21 |
-
|
| 22 |
---
|
| 23 |
|
| 24 |
-
#
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
|
|
|
|
| 29 |
```bash
|
| 30 |
python -m pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: "ASME Section VIII Calculator"
|
| 3 |
+
emoji: "🔧"
|
| 4 |
+
colorFrom: "indigo"
|
| 5 |
+
colorTo: "purple"
|
| 6 |
+
sdk: "streamlit"
|
| 7 |
+
sdk_version: "1.30"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# ASME Section VIII — Preliminary Pressure Vessel Calculator (Streamlit)
|
| 13 |
|
| 14 |
+
This Space runs a Streamlit app in `app.py`.
|
| 15 |
+
**Disclaimer:** This is a preliminary design tool. Verify final calculations with a licensed professional engineer.
|
| 16 |
|
| 17 |
+
To run locally:
|
| 18 |
```bash
|
| 19 |
python -m pip install -r requirements.txt
|
| 20 |
+
streamlit run app.py
|