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")
)
The calculated electrical emissions as a numeric value in tonnes.
Numeric value indicating the weight of fridges. Default is 0
.
Numeric value indicating the weight of freezers. Default is 0
.
Numeric value indicating the weight of large electrical items. Default is 0
.
Numeric value indicating the weight of IT (Information Technology) equipment. Default is 0
.
Numeric value indicating the weight of small electrical items. Default is 0
.
Numeric value indicating the weight of alkaline batteries. Default is 0
.
Numeric value indicating the weight of Lithium-ion batteries. Default is 0
.
Numeric value indicating the weight of Nickel Metal Hydride batteries. Default is 0
.
Numeric value indicating the weight of fridges disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of freezers disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of large electrical items disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of IT equipment disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of small electrical items disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of alkaline batteries disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of Lithium-ion batteries disposed of using waste disposal methods. Default is 0
.
Numeric value indicating the weight of Nickel Metal Hydride batteries disposed of using waste disposal methods. Default is 0
.
Character vector specifying the waste disposal method to use for calculating emissions. Possible values: "Landfill"
, "Open-loop"
. Default is "Landfill"
.
"Open-loop"
is the process of recycling material into other products.
"Landfill"
the product goes to landfill after use.
Character vector specifying the units of the emissions output. Possible values: "kg"
, "tonnes"
. Default is "kg"
.
# 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")
Run the code above in your browser using DataLab