-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.ini
More file actions
40 lines (40 loc) · 1.56 KB
/
settings.ini
File metadata and controls
40 lines (40 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# root directory to read rasters from
RASTER_ROOT = ./grid
# minimum rate of spread before fire is considered to actually be spreading
MINIMUM_ROS = 0.0
# maximum distance that head can spread per step (* cell size)
MAX_SPREAD_DISTANCE = 0.4
# days to output probability contours for
OUTPUT_DATE_OFFSETS = [1,2,3,7,14]
# lookup table for fuels (prometheus format)
FUEL_LOOKUP_TABLE = ./fuel.lut
# minimum ffmc for fire to spread
MINIMUM_FFMC = 65.0
# minimum ffmc for fire to spread at night
MINIMUM_FFMC_AT_NIGHT = 85.0
# time after sunrise to start burning (hours)
OFFSET_SUNRISE = 0.0
# time before sunset to stop burning (hours)
OFFSET_SUNSET = 0.0
# weight given to the scenario thresholds
THRESHOLD_SCENARIO_WEIGHT = 1.0
# weight given to the daily thresholds
THRESHOLD_DAILY_WEIGHT = 3.0
# weight given to the hourly thresholds
THRESHOLD_HOURLY_WEIGHT = 2.0
# default M-1/M-2 percent conifer if none specified
DEFAULT_PERCENT_CONIFER = 50
# default M-3/M-4 percent dead fir if none specified
DEFAULT_PERCENT_DEAD_FIR = 30
# maximum amount of time to take for simulation (seconds) (0 is unlimited)
MAXIMUM_TIME = 0
# amount of time between generating interim outputs (seconds)
INTERIM_OUTPUT_INTERVAL = 240
# maximum number of simulations to do (0 is exactly 1 simulation per scenario)
MAXIMUM_SIMULATIONS = 10000
# maximum percent change in statistics between runs before results are consider stable [0 - 1]
CONFIDENCE_LEVEL = 0.1
# intensity considered to be top of the range (kW/m)
INTENSITY_MAX_LOW = 2000
# intensity considered to be top of the range (kW/m)
INTENSITY_MAX_MODERATE = 4000