View source: R/electrical_emissions.R
electrical_emissions | R Documentation |
This function calculates the emissions produced from different electrical items and their waste disposal based on the specified inputs. It considers emissions from primary material production and waste disposal of electrical items.
electrical_emissions(
fridges = 0,
freezers = 0,
large = 0,
IT = 0,
small = 0,
alkaline_batteries = 0,
LiIon_batteries = 0,
NiMh_batteries = 0,
fridges_WD = 0,
freezers_WD = 0,
large_WD = 0,
IT_WD = 0,
small_WD = 0,
alkaline_batteries_WD = 0,
LiIon_batteries_WD = 0,
NiMh_batteries_WD = 0,
waste_disposal = c("Landfill", "Open-loop"),
units = c("kg", "tonnes")
)
fridges |
Numeric value indicating the weight of fridges. Default is |
freezers |
Numeric value indicating the weight of freezers. Default is |
large |
Numeric value indicating the weight of large electrical items. Default is |
IT |
Numeric value indicating the weight of IT (Information Technology) equipment. Default is |
small |
Numeric value indicating the weight of small electrical items. Default is |
alkaline_batteries |
Numeric value indicating the weight of alkaline batteries. Default is |
LiIon_batteries |
Numeric value indicating the weight of Lithium-ion batteries. Default is |
NiMh_batteries |
Numeric value indicating the weight of Nickel Metal Hydride batteries. Default is |
fridges_WD |
Numeric value indicating the weight of fridges disposed of using waste disposal methods. Default is |
freezers_WD |
Numeric value indicating the weight of freezers disposed of using waste disposal methods. Default is |
large_WD |
Numeric value indicating the weight of large electrical items disposed of using waste disposal methods. Default is |
IT_WD |
Numeric value indicating the weight of IT equipment disposed of using waste disposal methods. Default is |
small_WD |
Numeric value indicating the weight of small electrical items disposed of using waste disposal methods. Default is |
alkaline_batteries_WD |
Numeric value indicating the weight of alkaline batteries disposed of using waste disposal methods. Default is |
LiIon_batteries_WD |
Numeric value indicating the weight of Lithium-ion batteries disposed of using waste disposal methods. Default is |
NiMh_batteries_WD |
Numeric value indicating the weight of Nickel Metal Hydride batteries 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: |
The calculated electrical emissions as a numeric value in tonnes.
# Calculate electrical emissions using default values
electrical_emissions()
# Calculate electrical emissions with specific quantities and waste disposal
# method
electrical_emissions(fridges = 10, IT = 5, alkaline_batteries = 100,
waste_disposal = "Open-loop", units = "tonnes")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.