city_retrofit/helpers/constants.py

13 lines
316 B
Python
Raw Normal View History

celsius_to_kelvin = 273.15
days_of_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
2020-10-27 09:31:57 -04:00
# This dictionary is meant to force the way these variables are written
time_scale = {
'minute': 'minute',
'hour': 'hour',
'day': 'day',
'week': 'week',
'month': 'month',
'year': 'year'
}
2020-11-11 19:39:51 -05:00
roughness="MediumRough"