fuel_cons_harvester_1 {care4cmodel}R Documentation

Fuel Consumption of a Harvester per Cubic Meter Harvested Wood (Version #1)

Description

Fuel consumption depends on the average tree volume. For tree diameters at breast height < 15 cm the function gives back NA, because the assumed machine does not work with such small trees. Estimated after Bacescu et al. (2022).

Usage

fuel_cons_harvester_1(tree_vol, tree_dbh)

Arguments

tree_vol

Average standing merchandable wood volume over bark (m³) per harvested tree

tree_dbh

Average diameter at breast height (cm) per harvested tree

Value

Fuel consumption of a harvester in liters diesel fuel per m³ harvested wood

References

Bacescu NM, Cadei A, Moskalik T, Wiśniewski M, Talbot B, Grigolato S (2022). “Efficiency Assessment of Fully Mechanized Harvesting System through the Use of Fleet Management System.” Sustainability, 14(24). ISSN 2071-1050, doi:10.3390/su142416751, https://www.mdpi.com/2071-1050/14/24/16751.

Examples

  dbh <- seq(10, 70, 10) # Vector of tree dbh in cm
  vol <- dbh ^ 2 / 1000  # Simple Volume estimate (m³) with Denzin's formula

  fuel_cons_harvester_1(vol, dbh)


[Package care4cmodel version 1.0.1 Index]