electrical_emissions: Calculate Electrical Emissions

View source: R/electrical_emissions.R

electrical_emissionsR Documentation

Calculate Electrical Emissions

Description

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.

Usage

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")
)

Arguments

fridges

Numeric value indicating the weight of fridges purchased. Default is 0.

freezers

Numeric value indicating the weight of freezers purchased. Default is 0.

large_electrical

Numeric value indicating the weight of large electrical items purchased. Default is 0.

IT

Numeric value indicating the weight of IT (Information Technology) equipment purchased. Default is 0.

small_electrical

Numeric value indicating the weight of small electrical items purchased. Default is 0.

alkaline_batteries

Numeric value indicating the weight of alkaline batteries purchased. Default is 0. An alkaline AA battery typically weighs around 23 grams (0.023kg). These are non-rechargeable batteries, used in:

  • Day-to-day gadgets: Such as alarm clocks, electric shavers, remote controls, and radios

  • Low-drain applications: Such as flashlights, portable radios, alarm clocks, remote controls, and toys

  • Audiovisual equipment: Such as still digital cameras, strobe cameras, and portable liquid crystal TVs

  • Game equipment: Such as game controllers and walkie talkies

  • Other: Such as hearing aids and mosquito repellant devices

LiIon_batteries

Numeric value indicating the weight of Lithium-ion batteries purchased. Default is 0. Lithium-Ion batteries are often rechargeable and found in:

  • Electronics: Cell phones, tablets, laptops, digital cameras, watches, and personal digital assistants

  • Vehicles: Electric vehicles, E-bikes, hoverboards, and scooters

  • Tools: Electric toothbrushes and other tools

  • Power backup: Solar power backup storage, uninterrupted power supply (UPS), and emergency power backup

  • Other: Pacemakers, toys, and clocks

NiMh_batteries

Numeric value indicating the weight of Nickel Metal Hydride batteries purchased. Default is 0. A Nickel Metal Hydride AA battery typically weighs around 31 grams (0.031kg). These tend to be rechargeable and found in:

  • Portable devices: digital cameras, MP3 players, and GPS units.

  • Vehicles: Hybrid and electric vehicles

  • Power tools

  • Other: medical instruments, toothbrushes, electric razors, and mobile phones.

fridges_WD

Numeric value indicating the weight of fridges disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

freezers_WD

Numeric value indicating the weight of freezers disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

large_electrical_WD

Numeric value indicating the weight of large electrical items disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

IT_WD

Numeric value indicating the weight of IT equipment disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

small_electrical_WD

Numeric value indicating the weight of small electrical items disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

alkaline_batteries_WD

Numeric value indicating the weight of alkaline batteries disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

LiIon_batteries_WD

Numeric value indicating the weight of Lithium-ion batteries disposed of using the waste disposal method given in electric_waste_disposal. Default is 0.

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. Default is 0.

electric_waste_disposal

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.

units

Character vector specifying the units of the emissions output. Possible values: "kg", "tonnes". Default is "kg".

Details

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."

Value

The calculated electrical emissions as a numeric value in tonnes.

Examples

# 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")

lilyclements/caRbon documentation built on April 17, 2025, 6:10 p.m.