Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def main():
|
|
31 |
with c3:
|
32 |
typeM = st.select_slider('Type_M', options=[0, 1])
|
33 |
with c4:
|
34 |
-
torqueNm = st.
|
35 |
submitButton2 = st.form_submit_button(label='Calculate')
|
36 |
if (submitButton2):
|
37 |
d = {'Air temperature [K]': airTemperature, 'Process temperature [K]': processTemperatire,
|
|
|
31 |
with c3:
|
32 |
typeM = st.select_slider('Type_M', options=[0, 1])
|
33 |
with c4:
|
34 |
+
torqueNm = st.slider('Torque [Nm]', 0,300,150)
|
35 |
submitButton2 = st.form_submit_button(label='Calculate')
|
36 |
if (submitButton2):
|
37 |
d = {'Air temperature [K]': airTemperature, 'Process temperature [K]': processTemperatire,
|