Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,10 +1,11 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
|
| 3 |
from utils.plot_utils import plot_beam_shape, plot_sfd, plot_bmd
|
| 4 |
|
| 5 |
def main():
|
| 6 |
# Title of the app
|
| 7 |
st.title("Beam Analysis App")
|
|
|
|
| 8 |
|
| 9 |
# User Input Section
|
| 10 |
beam_type = st.selectbox("Select beam type", ("Simply Supported", "Continuous"))
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
|
| 3 |
from utils.plot_utils import plot_beam_shape, plot_sfd, plot_bmd
|
| 4 |
|
| 5 |
def main():
|
| 6 |
# Title of the app
|
| 7 |
st.title("Beam Analysis App")
|
| 8 |
+
from utils.beam_analysis import analyze_beam
|
| 9 |
|
| 10 |
# User Input Section
|
| 11 |
beam_type = st.selectbox("Select beam type", ("Simply Supported", "Continuous"))
|