fuel_cons_harvester_2 {care4cmodel} | R Documentation |
Fuel consumption of a harvester in liters diesel per m³ havested wood after Kärhä et al. (2023).
fuel_cons_harvester_2(tree_vol, harvest_vol_ha, thinning = TRUE)
tree_vol |
Average standing merchandable wood volume over bark (m³) per harvested tree |
harvest_vol_ha |
Harvested merchandable wood volume over bark per ha (m³/ha) |
thinning |
Logical, TRUE (default) if the harvest is a thinning, or another kind of felling operation (FALSE) |
Fuel consumption of a harvester in liters diesel fuel per m³ harvested wood
Kärhä K, Haavikko H, Kääriäinen H, Palander T, Eliasson L, Roininen K (2023). “Fossil-fuel consumption and CO2eq emissions of cut-to-length industrial roundwood logging operations in Finland.” European Journal of Forest Research, 1–17.
tree_vol <- c(0.03, 0.10, 1.00, 2.00, 5.00)
harvest_vol <- c(5.00, 10.00, 50.00, 25.00, 10.00)
fuel_cons_harvester_2(tree_vol, harvest_vol, TRUE)
fuel_cons_harvester_2(tree_vol, harvest_vol, FALSE)