Rothermel Spread Model¶
This module implements Rothermel's (1972) surface fire spread equations, computing rate of spread (ROS), fireline intensity, and fire ellipse geometry for each cell in the simulation grid. It is the core fire behavior engine called by BaseFireSim at every time step — users do not call these functions directly but can inspect the cell-level outputs they produce (e.g., cell.r_ss, cell.I_ss).
Rothermel fire spread model implementation.
Compute surface fire rate of spread (ROS), fireline intensity, and related quantities using Rothermel's (1972) equations. All internal calculations use imperial units (ft/min, BTU/ft²·min); public outputs are converted to metric (m/s) unless noted otherwise.
Functions:
| Name | Description |
|---|---|
- surface_fire |
Compute steady-state ROS and fireline intensity for a cell. |
- accelerate |
Apply fire acceleration from rest toward steady-state ROS. |
- calc_r_h |
Compute head-fire ROS combining wind and slope effects. |
- calc_r_0 |
Compute no-wind, no-slope base ROS and reaction intensity. |
- calc_eccentricity |
Compute fire ellipse eccentricity from effective wind speed. |
- calc_flame_len |
Estimate flame length from fireline intensity. |
References
Rothermel, R. C. (1972). A mathematical model for predicting fire spread in wildland fuels. USDA Forest Service Research Paper INT-115.
BTU_ft2_min_to_kW_m2(f_btu_ft2_min)
¶
Convert heat flux from BTU/(ft^2*min) to kW/m^2.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_btu_ft2_min
|
float
|
Heat flux in BTU/(ft^2*min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Heat flux in kW/m^2. |
Source code in embrs/utilities/unit_conversions.py
220 221 222 223 224 225 226 227 228 229 | |
BTU_ft_min_to_kW_m(f_btu_ft_min)
¶
Convert fireline intensity from BTU/(ft*min) to kW/m.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_btu_ft_min
|
float
|
Fireline intensity in BTU/(ft*min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fireline intensity in kW/m. |
Source code in embrs/utilities/unit_conversions.py
232 233 234 235 236 237 238 239 240 241 | |
BTU_ft_min_to_kcal_s_m(f_btu_ft_min)
¶
Convert fireline intensity from BTU/(ftmin) to kcal/(sm).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_btu_ft_min
|
float
|
Fireline intensity in BTU/(ft*min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fireline intensity in kcal/(s*m). |
Source code in embrs/utilities/unit_conversions.py
244 245 246 247 248 249 250 251 252 253 | |
BTU_lb_to_cal_g(f_btu_lb)
¶
Convert heat content from BTU/lb to cal/g.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_btu_lb
|
float
|
Heat content in BTU/lb. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Heat content in cal/g. |
Source code in embrs/utilities/unit_conversions.py
272 273 274 275 276 277 278 279 280 281 | |
F_to_C(f_f)
¶
Convert temperature from Fahrenheit to Celsius.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_f
|
float
|
Temperature in degrees Fahrenheit. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Temperature in degrees Celsius. |
Source code in embrs/utilities/unit_conversions.py
48 49 50 51 52 53 54 55 56 57 | |
KiSq_to_Lbsft2(f_kisq)
¶
Convert fuel loading from kg/m^2 to lb/ft^2.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_kisq
|
float
|
Fuel loading in kg/m^2. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fuel loading in lb/ft^2. |
Source code in embrs/utilities/unit_conversions.py
156 157 158 159 160 161 162 163 164 165 | |
KiSq_to_TPA(f_kisq)
¶
Convert fuel loading from kg/m^2 to tons per acre.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_kisq
|
float
|
Fuel loading in kg/m^2. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fuel loading in tons per acre. |
Source code in embrs/utilities/unit_conversions.py
204 205 206 207 208 209 210 211 212 213 | |
Lbsft2_to_KiSq(f_libsft2)
¶
Convert fuel loading from lb/ft^2 to kg/m^2.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_libsft2
|
float
|
Fuel loading in lb/ft^2. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fuel loading in kg/m^2. |
Source code in embrs/utilities/unit_conversions.py
144 145 146 147 148 149 150 151 152 153 | |
Lbsft2_to_TPA(f_lbsft2)
¶
Convert fuel loading from lb/ft^2 to tons per acre.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_lbsft2
|
float
|
Fuel loading in lb/ft^2. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fuel loading in tons per acre. |
Source code in embrs/utilities/unit_conversions.py
192 193 194 195 196 197 198 199 200 201 | |
TPA_to_KiSq(f_tpa)
¶
Convert fuel loading from tons per acre to kg/m^2.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_tpa
|
float
|
Fuel loading in tons per acre. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fuel loading in kg/m^2. |
Source code in embrs/utilities/unit_conversions.py
168 169 170 171 172 173 174 175 176 177 | |
TPA_to_Lbsft2(f_tpa)
¶
Convert fuel loading from tons per acre to lb/ft^2.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_tpa
|
float
|
Fuel loading in tons per acre. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fuel loading in lb/ft^2. |
Source code in embrs/utilities/unit_conversions.py
180 181 182 183 184 185 186 187 188 189 | |
accelerate(cell, time_step)
¶
Apply fire acceleration toward steady-state ROS.
Update the transient rate of spread (cell.r_t) and average ROS
(cell.avg_ros) for each spread direction using the exponential
acceleration model (McAlpine 1989). Directions already at or above
steady-state are clamped.
Uses a JIT-compiled inner loop to avoid numpy dispatch overhead on small (12-element) arrays.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cell
|
Cell
|
Burning cell with |
required |
time_step
|
float
|
Simulation time step in seconds. |
required |
Side Effects
Updates cell.r_t, cell.avg_ros, and cell.I_t in-place.
Source code in embrs/models/rothermel.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
cal_g_to_BTU_lb(f_cal_g)
¶
Convert heat content from cal/g to BTU/lb.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_cal_g
|
float
|
Heat content in cal/g. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Heat content in BTU/lb. |
Source code in embrs/utilities/unit_conversions.py
260 261 262 263 264 265 266 267 268 269 | |
calc_I_r(fuel, dead_moist_damping, live_moist_damping)
¶
Compute reaction intensity from fuel properties and moisture damping.
Reaction intensity is the rate of heat release per unit area of the flaming front (Rothermel 1972, Eq. 27).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with net fuel loadings, heat content, and
optimum reaction velocity ( |
required |
dead_moist_damping
|
float
|
Dead fuel moisture damping coefficient in [0, 1]. |
required |
live_moist_damping
|
float
|
Live fuel moisture damping coefficient in [0, 1]. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Reaction intensity (BTU/ft²/min). |
Source code in embrs/models/rothermel.py
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | |
calc_eccentricity(fuel, R_h, R_0)
¶
Compute fire ellipse eccentricity from effective wind speed.
Convert the effective wind speed to m/s, then compute the length-to-
breadth ratio z and derive eccentricity. Capped at z = 8.0
following Anderson (1983).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model for effective wind speed calculation. |
required |
R_h
|
float
|
Head-fire rate of spread (ft/min). |
required |
R_0
|
float
|
No-wind, no-slope base ROS (ft/min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Fire ellipse eccentricity in [0, 1). |
Source code in embrs/models/rothermel.py
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 | |
calc_effective_wind_factor(R_h, R_0)
¶
Compute the effective wind factor from head-fire and base ROS.
The effective wind factor (phi_e) represents the combined influence of wind and slope as if it were a single wind-only factor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
R_h
|
float
|
Head-fire rate of spread (ft/min). |
required |
R_0
|
float
|
No-wind, no-slope base ROS (ft/min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Effective wind factor (dimensionless). |
Source code in embrs/models/rothermel.py
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | |
calc_effective_wind_speed(fuel, R_h, R_0)
¶
Compute the effective wind speed from the effective wind factor.
Invert the wind factor equation to recover the equivalent wind speed that produces the same effect as the combined wind and slope.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with wind coefficients |
required |
R_h
|
float
|
Head-fire rate of spread (ft/min). |
required |
R_0
|
float
|
No-wind, no-slope base ROS (ft/min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Effective wind speed (ft/min). Returns 0 when |
Source code in embrs/models/rothermel.py
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | |
calc_flame_len(cell)
¶
Estimate flame length from maximum fireline intensity.
For surface fires, uses Brown and Davis (1973) correlation. For crown fires, uses Thomas (1963) correlation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cell
|
Cell
|
Cell with |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Flame length in feet. |
Source code in embrs/models/rothermel.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | |
calc_heat_sink(fuel, m_f)
¶
Compute heat sink term for the Rothermel spread equation.
The heat sink represents the energy required to raise the fuel ahead of the fire front to ignition temperature, weighted by fuel class properties and moisture contents.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with bulk density, weighting factors, and surface-area-to-volume ratios. |
required |
m_f
|
ndarray
|
Fuel moisture content array of shape (6,) as fractions. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Heat sink (BTU/ft³). |
Source code in embrs/models/rothermel.py
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | |
calc_live_mx(fuel, m_f)
¶
Compute live fuel moisture of extinction.
Determine the threshold moisture content above which live fuels will
not sustain combustion, based on the ratio of dead-to-live fuel loading
(fuel.W) and the dead characteristic moisture.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with loading ratio |
required |
m_f
|
float
|
Weighted characteristic dead fuel moisture (fraction). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Live fuel moisture of extinction (fraction). Clamped to be
at least |
Source code in embrs/models/rothermel.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | |
calc_mineral_damping(s_e=0.01)
¶
Compute mineral damping coefficient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
s_e
|
float
|
Effective mineral content (fraction). Defaults to 0.010 (standard value for wildland fuels). |
0.01
|
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Mineral damping coefficient (dimensionless). |
Source code in embrs/models/rothermel.py
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | |
calc_moisture_damping(m_f, m_x)
¶
Compute moisture damping coefficient for dead or live fuel.
Evaluates a cubic polynomial in the moisture ratio m_f / m_x
(Rothermel 1972, Eq. 29). Returns 0 when moisture of extinction is
zero or when the polynomial evaluates to a negative value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m_f
|
float
|
Characteristic fuel moisture content (fraction). |
required |
m_x
|
float
|
Moisture of extinction (fraction). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Moisture damping coefficient in [0, 1]. |
Source code in embrs/models/rothermel.py
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | |
calc_r_0(fuel, m_f)
¶
Compute no-wind, no-slope base rate of spread and reaction intensity.
Evaluate the Rothermel (1972) equations for base ROS using fuel properties and moisture content. This is the fundamental spread rate before wind and slope adjustments.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with precomputed constants. |
required |
m_f
|
ndarray
|
Fuel moisture content array of shape (6,) with entries [1h, 10h, 100h, dead herb, live herb, live woody] as fractions (g water / g fuel). |
required |
Returns:
| Type | Description |
|---|---|
Tuple[float, float]
|
Tuple[float, float]: |
Source code in embrs/models/rothermel.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | |
calc_r_h(cell, R_0=None, I_r=None)
¶
Compute head-fire rate of spread combining wind and slope effects.
Resolve the wind and slope vectors to determine the maximum spread
direction (alpha) and head-fire ROS (R_h). Wind speed is capped
at 0.9 × reaction intensity per Rothermel's wind limit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cell
|
Cell
|
Cell with wind, slope, fuel, and moisture data. |
required |
R_0
|
float
|
Pre-computed no-wind, no-slope ROS (ft/min). Computed internally if None. |
None
|
I_r
|
float
|
Pre-computed reaction intensity (BTU/ft²/min). Computed internally if None. |
None
|
Returns:
| Type | Description |
|---|---|
Tuple[float, float, float, float]
|
Tuple[float, float, float, float]: |
Side Effects
May update cell.aspect when slope is zero (set to wind direction).
Source code in embrs/models/rothermel.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
calc_slope_factor(fuel, phi)
¶
Compute the slope factor (phi_s) for the Rothermel spread equation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with bulk density |
required |
phi
|
float
|
Slope angle (radians). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Dimensionless slope factor (phi_s). |
Source code in embrs/models/rothermel.py
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 | |
calc_vals_for_all_directions(cell, R_h, I_r, alpha, e, I_h=None)
¶
Compute ROS and fireline intensity along all spread directions.
Use the fire ellipse (eccentricity e) and the combined wind/slope
heading alpha to resolve the head-fire ROS into each of the cell's
spread directions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cell
|
Cell
|
Cell providing directions and fuel properties. |
required |
R_h
|
float
|
Head-fire rate of spread (ft/min for surface, m/min for crown fire). |
required |
I_r
|
float
|
Reaction intensity (BTU/ft²/min). Ignored when
|
required |
alpha
|
float
|
Combined wind/slope heading in radians, relative to the cell's aspect (upslope direction). |
required |
e
|
float
|
Fire ellipse eccentricity in [0, 1). |
required |
I_h
|
float
|
Head-fire fireline intensity (BTU/ft/min).
When provided, directional intensities are scaled from this
value instead of being computed from |
None
|
Returns:
| Type | Description |
|---|---|
Tuple[ndarray, ndarray]
|
Tuple[np.ndarray, np.ndarray]: |
Source code in embrs/models/rothermel.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
calc_wind_factor(fuel, wind_speed)
¶
Compute the wind factor (phi_w) for the Rothermel spread equation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model with precomputed wind coefficients
|
required |
wind_speed
|
float
|
Midflame wind speed (ft/min). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Dimensionless wind factor (phi_w). |
Source code in embrs/models/rothermel.py
436 437 438 439 440 441 442 443 444 445 446 447 448 449 | |
calc_wind_slope_vec(R_0, phi_w, phi_s, angle)
¶
Compute the combined wind and slope vector magnitude and direction.
Resolve wind and slope spread factors into a single resultant vector using Rothermel's vector addition method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
R_0
|
float
|
No-wind, no-slope ROS (ft/min). |
required |
phi_w
|
float
|
Wind factor (dimensionless). |
required |
phi_s
|
float
|
Slope factor (dimensionless). |
required |
angle
|
float
|
Angle between wind and upslope directions (radians). |
required |
Returns:
| Type | Description |
|---|---|
Tuple[float, float]
|
Tuple[float, float]: |
Source code in embrs/models/rothermel.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | |
ft_min_to_m_s(f_ft_min)
¶
Convert speed from feet per minute to meters per second.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_ft_min
|
float
|
Speed in ft/min. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Speed in m/s. |
Source code in embrs/utilities/unit_conversions.py
92 93 94 95 96 97 98 99 100 101 | |
ft_min_to_mph(f_ft_min)
¶
Convert speed from feet per minute to miles per hour.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_ft_min
|
float
|
Speed in ft/min. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Speed in mph. |
Source code in embrs/utilities/unit_conversions.py
116 117 118 119 120 121 122 123 124 125 | |
ft_to_m(f_ft)
¶
Convert length from feet to meters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_ft
|
float
|
Length in feet. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Length in meters. |
Source code in embrs/utilities/unit_conversions.py
76 77 78 79 80 81 82 83 84 85 | |
get_characteristic_moistures(fuel, m_f)
¶
Compute weighted characteristic dead and live fuel moisture contents.
Use fuel weighting factors (f_dead_arr, f_live_arr) to collapse
the per-class moisture array into single dead and live values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fuel
|
Fuel
|
Fuel model providing weighting arrays. |
required |
m_f
|
ndarray
|
Moisture content array of shape (6,) as fractions. |
required |
Returns:
| Type | Description |
|---|---|
Tuple[float, float]
|
Tuple[float, float]: |
Source code in embrs/models/rothermel.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | |
m_s_to_ft_min(m_s)
¶
Convert speed from meters per second to feet per minute.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m_s
|
float
|
Speed in m/s. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Speed in ft/min. |
Source code in embrs/utilities/unit_conversions.py
104 105 106 107 108 109 110 111 112 113 | |
m_to_ft(f_m)
¶
Convert length from meters to feet.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_m
|
float
|
Length in meters. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Length in feet. |
Source code in embrs/utilities/unit_conversions.py
64 65 66 67 68 69 70 71 72 73 | |
mph_to_ft_min(f_mph)
¶
Convert speed from miles per hour to feet per minute.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_mph
|
float
|
Speed in mph. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
Speed in ft/min. |
Source code in embrs/utilities/unit_conversions.py
128 129 130 131 132 133 134 135 136 137 | |
surface_fire(cell)
¶
Compute steady-state surface fire ROS and fireline intensity for a cell.
Calculate the head-fire rate of spread (R_h), then resolve spread rates and fireline intensities along all 12 spread directions using fire ellipse geometry. Results are stored directly on the cell object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cell
|
Cell
|
Cell to evaluate. Must have fuel, moisture, wind, slope, and direction attributes populated. |
required |
Side Effects
Sets cell.r_ss (m/s), cell.I_ss (BTU/ft/min),
cell.r_h_ss (m/s), cell.reaction_intensity (BTU/ft²/min),
cell.alpha (radians), and cell.e (eccentricity) on the cell.
Source code in embrs/models/rothermel.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |