co2_eval_cutting {care4cmodel} | R Documentation |
Fuel Consumption and CO2 Emissions for Cutting
Description
Given the output of a simulation run (i.e. an object of class
c4c_base_result
) as created with the function
simulate_single_concept
, the fuel consumption and CO2 emissions
for cutting (i.e. felling, limbing, cutting the trees into logs) are
calculated. Currently, this function assumes only harvester operations.
Usage
co2_eval_cutting(x, mode = c("standard", "nordic"))
Arguments
x |
An object of class |
mode |
Character string to choose between "standard" (default) and
"nordic". For "standard", the function |
Value
A data frame (tibble) with the columns time, harvest_type (damage or regular), phase_no, phase_name (numbers and names of the stand development phases), fuel_cutting_l_per_m3 (liters of fuel consumed per m3 of harvested wood), fuel_cutting_total_l (liters of fuel consumed in total), co2_cutting_total_kg (kg CO2 emitted).
Examples
base_out <- simulate_single_concept(
pine_thinning_from_above_1,
init_areas = c(50, 100, 10, 50, 150, 600),
time_span = 50,
risk_level = 3
)
co2_eval_cutting(base_out, "standard")
co2_eval_cutting(base_out, "nordic")