mabuseif commited on
Commit
972e839
·
verified ·
1 Parent(s): da1b70b

Update app/i_l_data.py

Browse files
Files changed (1) hide show
  1. app/i_l_data.py +10 -0
app/i_l_data.py CHANGED
@@ -175,6 +175,16 @@ DEFAULT_SCHEDULE_TEMPLATES = {
175
  }
176
  }
177
 
 
 
 
 
 
 
 
 
 
 
178
  def display_internal_loads_help():
179
  """Display help information for the internal loads page."""
180
  st.markdown("""
 
175
  }
176
  }
177
 
178
+ # Lighting Fixture Types and Heat Gain Splits
179
+ LIGHTING_FIXTURE_TYPES = {
180
+ "Incandescent": {"radiative": 80, "convective": 20},
181
+ "Fluorescent": {"radiative": 60, "convective": 40},
182
+ "Compact Fluorescent (CFL)": {"radiative": 60, "convective": 40},
183
+ "LED (Light Emitting Diode)": {"radiative": 50, "convective": 50},
184
+ "High-Intensity Discharge (HID)": {"radiative": 70, "convective": 30},
185
+ "Halogen": {"radiative": 80, "convective": 20}
186
+ }
187
+
188
  def display_internal_loads_help():
189
  """Display help information for the internal loads page."""
190
  st.markdown("""