mabuseif commited on
Commit
bcfd228
·
verified ·
1 Parent(s): 40c26e0

Update app/component_selection.py

Browse files
Files changed (1) hide show
  1. app/component_selection.py +1 -3
app/component_selection.py CHANGED
@@ -609,9 +609,7 @@ class ComponentSelectionInterface:
609
  u_value = st.number_input("U-Value (W/m²·K)", min_value=0.0, value=float(roof_options[selected_roof]["u_value"]), step=0.01)
610
  roof_group = st.selectbox("Roof Group (ASHRAE)", ["A", "B", "C", "D", "E", "F", "G"], index=0)
611
  slope = st.selectbox("Roof Slope", ["Flat", "Low Slope", "Steep Slope"], index=0)
612
- absorptivity = st.selectbox("Solar Absorptivity", ["Light (0.3)", "Light to Medium (0.45)", "Medium (0.6)", "Medium to Dark (0.75)", "Dark
613
-
614
- (0.9)"], index=2)
615
 
616
  submitted = st.form_submit_button("Add Roof")
617
  if submitted and not session_state.add_roof_submitted:
 
609
  u_value = st.number_input("U-Value (W/m²·K)", min_value=0.0, value=float(roof_options[selected_roof]["u_value"]), step=0.01)
610
  roof_group = st.selectbox("Roof Group (ASHRAE)", ["A", "B", "C", "D", "E", "F", "G"], index=0)
611
  slope = st.selectbox("Roof Slope", ["Flat", "Low Slope", "Steep Slope"], index=0)
612
+ absorptivity = st.selectbox("Solar Absorptivity", ["Light (0.3)", "Light to Medium (0.45)", "Medium (0.6)", "Medium to Dark (0.75)", "Dark (0.9)"], index=2)
 
 
613
 
614
  submitted = st.form_submit_button("Add Roof")
615
  if submitted and not session_state.add_roof_submitted: