mirror of
https://github.com/ChrisSewell/LeosShoes.git
synced 2025-07-01 01:57:28 -04:00
17 lines
536 B
Python
17 lines
536 B
Python
"""Constants used throughout the application."""
|
|
|
|
# Surface cooling coefficients (slower to faster cooling)
|
|
SURFACE_COOLING_COEFFICIENTS = {
|
|
'asphalt': 0.7, # Slower cooling
|
|
'concrete': 0.85,
|
|
'mixed': 1.0, # Normal cooling
|
|
'grass': 1.5 # Faster cooling
|
|
}
|
|
|
|
# Night hours definition (7pm to 6am)
|
|
NIGHT_START_HOUR = 19 # 7pm
|
|
NIGHT_END_HOUR = 6 # 6am
|
|
|
|
# Time of day cooling multipliers
|
|
NIGHT_COOLING_MULTIPLIER = 1.3 # Night cools 30% faster
|
|
DAY_COOLING_MULTIPLIER = 1.0 # Standard cooling during day |