Update app.py
Browse files
app.py
CHANGED
|
@@ -287,6 +287,13 @@ if st.session_state.AM_design_button_clicked == True:
|
|
| 287 |
'Bed temperature (C)': best['input'][2]})
|
| 288 |
st.dataframe(data2, hide_index=True, width=500)
|
| 289 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 290 |
|
| 291 |
|
| 292 |
|
|
|
|
| 287 |
'Bed temperature (C)': best['input'][2]})
|
| 288 |
st.dataframe(data2, hide_index=True, width=500)
|
| 289 |
|
| 290 |
+
data3 = pd.DataFrame({
|
| 291 |
+
'Maximum angle A (degree)': [1.2],
|
| 292 |
+
'Maximum angle B (degree)': [2.2],
|
| 293 |
+
'Maximum angle C (degree)': [1.0],
|
| 294 |
+
'Maximum residual stress': [160]
|
| 295 |
+
})
|
| 296 |
+
st.dataframe(data3, hide_index=True, width=700)
|
| 297 |
|
| 298 |
|
| 299 |
|