paper_emissions {carbonr} | R Documentation |
Paper Emissions
Description
This function calculates the emissions produced from different paper sources based on the specified inputs. It considers emissions from primary material production and waste disposal of paper materials.
Usage
paper_emissions(
board = 0,
mixed = 0,
paper = 0,
board_WD = 0,
mixed_WD = 0,
paper_WD = 0,
waste_disposal = c("Closed-loop", "Combustion", "Composting", "Landfill"),
units = c("kg", "tonnes")
)
Arguments
board |
Numeric value indicating the weight of paperboard. Default is |
mixed |
Numeric value indicating the weight of mixed paper. Default is |
paper |
Numeric value indicating the weight of paper. Default is |
board_WD |
Numeric value indicating the weight of paperboard disposed of using waste disposal methods. Default is |
mixed_WD |
Numeric value indicating the weight of mixed paper disposed of using waste disposal methods. Default is |
paper_WD |
Numeric value indicating the weight of paper disposed of using waste disposal methods. Default is |
waste_disposal |
Character vector specifying the waste disposal method to use for calculating emissions. Possible values: |
units |
Character vector specifying the units of the emissions output. Possible values: |
Value
The function returns the calculated paper emissions as a numeric value in tonnes.
Examples
paper_emissions(board = 10, board_WD = 10, paper = 100, paper_WD = 100, units = "kg")