S
: Slope (in degrees).R
: Rainfall intensity (mm/hr).B
: Burn severity index (unitless, typically normalized).A
: Area of the watershed (km2).T
: Terrain ruggedness (unitless).The likelihood of debris flow Pdf
for a given cell or watershed can be computed as:
Pdf(i,j) = σ(α S(i,j) + β R(i,j) + γ B(i,j) + δ A(i,j) + ε T(i,j) + η)
Where:
(i,j)
are the spatial indices of the cell.σ(x) = 1 / (1 + e-x)
: Sigmoid function for mapping to probability.α, β, γ, δ, ε, η
: Coefficients calibrated from historical data.To model the cumulative debris flow likelihood downstream, use a recursive accumulation:
Ldf(i,j) = Pdf(i,j) + Σ(m,n) ∈ upstream(i,j) wm,n ⋅ Ldf(m,n)
Where:
upstream(i,j)
: Set of upstream neighbors of cell (i,j)
.wm,n
: Weight based on contributing area or flow fraction.S
, R
, B
, A
, T
are raster datasets.α, β, γ, δ, ε, η
are derived through regression on observed debris flow events.