You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Author: [Msc. Ing. Carlos Andrés Celi Sánchez](https://fragrant-knight-4af.notion.site/Main-Page-5c5f007b3f3f4c76a604960d9dbffca7?pvs=4)
20
+
* Course: Structural Dynamics
21
+
"""
22
+
)
23
+
24
+
st.markdown('* You can find me on : [](https://fragrant-knight-4af.notion.site/Main-Page-5c5f007b3f3f4c76a604960d9dbffca7?pvs=4)[](https://github.com/Normando1945)[](https://www.researchgate.net/profile/Carlos-Celi)[](https://scholar.google.com.ec/citations?hl=es&user=yR4Gz7kAAAAJ)')
25
+
26
+
st.markdown('This simple app performs spectral calculations using the NEC-SE-DS-2015 Ecuadorian Code. It computes the Elastic and Inelastic Acceleration Response Spectra for a range of structural periods and visualizes the results.')
27
+
28
+
st.markdown("#### **Parameters**")
29
+
30
+
31
+
n=st.number_input('**n**: Ratio between spectral ordinates **Sa(T = 0.1 s)** and **PGA**:', value=2.48, step=0.1)
32
+
z=st.number_input('**z**: Maximum expected acceleration (fraction of gravitational acceleration):', value=0.4, step=0.1)
33
+
34
+
# Create a grid layout with a maximum of 5 columns
35
+
col1, col2, col3, col4=st.columns(4)
36
+
37
+
# User input for parameters with descriptions
38
+
withcol1:
39
+
fa=st.number_input('**fa**: Short period amplification factor:', value=1.2, step=0.1)
40
+
fip=st.number_input('**Φp**: Penalty coefficient for plan irregularity:', value=1.0, step=0.1)
0 commit comments