mabuseif commited on
Commit
558a9f1
·
verified ·
1 Parent(s): 63bfcef

Update app/i_l_data.py

Browse files
Files changed (1) hide show
  1. app/i_l_data.py +17 -0
app/i_l_data.py CHANGED
@@ -118,6 +118,23 @@ DEFAULT_EQUIPMENT_LOADS = {
118
  ]
119
  }
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  # Default schedule templates
122
  DEFAULT_SCHEDULE_TEMPLATES = {
123
  "residential": {
 
118
  ]
119
  }
120
 
121
+ DEFAULT_OCCUPANT_DENSITY = {
122
+ name: {
123
+ "occupant_densities_PEOPLE_m2": data[0]
124
+ } for name, data in [
125
+ ("residential", [0.035]),
126
+ ("office", [0.075]),
127
+ ("commercial", [0.225]),
128
+ ("educational", [0.15]),
129
+ ("healthcare", [0.07]),
130
+ ("assembly", [0.6]),
131
+ ("industrial", [0.035]),
132
+ ("public_institutional", [0.2]),
133
+ ("lodging", [0.075]),
134
+ ("transport", [0.3]),
135
+ ("default", [0.05])
136
+ ]
137
+ }
138
  # Default schedule templates
139
  DEFAULT_SCHEDULE_TEMPLATES = {
140
  "residential": {