Iris314 commited on
Commit
73abf9b
·
verified ·
1 Parent(s): c0d699d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md CHANGED
@@ -10,3 +10,45 @@ pinned: false
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
13
+
14
+ ---
15
+ title: I-Beam Calculator
16
+ colorFrom: blue
17
+ colorTo: gray
18
+ sdk: gradio
19
+ sdk_version: 5.46.0
20
+ app_file: app.py
21
+ pinned: false
22
+ license: apache-2.0
23
+ ---
24
+
25
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
26
+
27
+ # I-Beam Calculator
28
+
29
+ This Gradio app performs **deterministic engineering calculations** for a simply-supported I-beam under a central point load.
30
+ It computes maximum stress, midspan deflection, and factors of safety (yield and deflection) based on user-defined inputs.
31
+
32
+ Additionally, the results are explained in plain language using a small LLM model, helping non-experts understand the engineering outcomes.
33
+
34
+ ---
35
+
36
+ ## How to Use
37
+ 1. Input the beam length, I-beam cross-section dimensions (height, flange width, flange thickness, web thickness), and the applied point load.
38
+ 2. Material properties (elastic modulus, yield strength) are fixed to structural steel defaults.
39
+ 3. Click **Compute**.
40
+ 4. View the numerical results (stress, deflection, safety factors) and a concise natural language explanation.
41
+
42
+ Representative examples are included for quick testing.
43
+
44
+ ---
45
+
46
+ ## Model Information
47
+ - **Backend**: Deterministic engineering formulas (mechanics of materials).
48
+ - **Framework**: Gradio v5.46.0 + Transformers v4.56.1
49
+
50
+ ---
51
+
52
+ ## Notes
53
+ - Assumes simply-supported beam, central point load, and linear elastic material behavior.
54
+ - Results are **educational demonstrations** and **not suitable for real-world engineering design**.