cffdrs 0.11.0

Rust implementation of the Canadian Forest Fire Danger Rating System
Documentation
1
2
3
4
5
6
7
8
9
/// Total fuel consumption (TFC)
///
/// * `sfc` - Surface fuel consumption (kg/m^2)
/// * `cfc` - Crown fuel consumption (kg/m^2)
///
/// Returns TFC (kg/m^2)
pub fn total_fuel_consumption(sfc: f64, cfc: f64) -> f64 {
    sfc + cfc
}