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_electrical = 0,
IT = 0,
small_electrical = 0,
alkaline_batteries = 0,
LiIon_batteries = 0,
NiMh_batteries = 0,
fridges_WD = 0,
freezers_WD = 0,
large_electrical_WD = 0,
IT_WD = 0,
small_electrical_WD = 0,
alkaline_batteries_WD = 0,
LiIon_batteries_WD = 0,
NiMh_batteries_WD = 0,
electric_waste_disposal = c("Landfill", "Open-loop"),
units = c("kg", "tonnes")
)
fridges |
Numeric value indicating the weight of fridges purchased. Default is |
freezers |
Numeric value indicating the weight of freezers purchased. Default is |
large_electrical |
Numeric value indicating the weight of large electrical items purchased. Default is |
IT |
Numeric value indicating the weight of IT (Information Technology) equipment purchased. Default is |
small_electrical |
Numeric value indicating the weight of small electrical items purchased. Default is |
alkaline_batteries |
Numeric value indicating the weight of alkaline batteries purchased. Default is
|
LiIon_batteries |
Numeric value indicating the weight of Lithium-ion batteries purchased. Default is
|
NiMh_batteries |
Numeric value indicating the weight of Nickel Metal Hydride batteries purchased. Default is
|
fridges_WD |
Numeric value indicating the weight of fridges disposed of using the waste disposal method given in |
freezers_WD |
Numeric value indicating the weight of freezers disposed of using the waste disposal method given in |
large_electrical_WD |
Numeric value indicating the weight of large electrical items disposed of using the waste disposal method given in |
IT_WD |
Numeric value indicating the weight of IT equipment disposed of using the waste disposal method given in |
small_electrical_WD |
Numeric value indicating the weight of small electrical items disposed of using the waste disposal method given in |
alkaline_batteries_WD |
Numeric value indicating the weight of alkaline batteries disposed of using the waste disposal method given in |
LiIon_batteries_WD |
Numeric value indicating the weight of Lithium-ion batteries disposed of using the waste disposal method given in |
NiMh_batteries_WD |
Numeric value indicating the weight of Nickel Metal Hydride batteries disposed of using the waste disposal method given in |
electric_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: |
Note on the Material Use and Waste Disposal from the Government UK Report 2024: "Material use conversion factors should be used only to report on procured products and materials based on their origin (that is, comprised of primary material or recycled materials). The factors are not suitable for quantifying the benefits of collecting products or materials for recycling." "The conversion factors presented for material consumption cover ... emissions from the point of raw material extraction through to the point at which a finished good is manufactured and provided for sale. Therefore, commercial enterprises may use these factors to estimate the impact of goods they procure. Organisations involved in manufacturing goods using these materials should note that if they separately report emissions associated with their energy use in forming products with these materials, there is potential for double counting. As many of the data sources used in preparing the tables are confidential, we cannot publish a more detailed breakdown."
"Waste-disposal figures should be used for Greenhouse Gas Protocol reporting of Scope 3 emissions associated with end-of-life disposal of different materials. With the exception of landfill, these figures only cover emissions from the collection of materials and delivery to the point of treatment or disposal. They do not cover the environmental impact of different waste management options."
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,
electric_waste_disposal = "Open-loop", units = "tonnes")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.