Methodologies for calculating website carbon

CO2.js offers two models for understanding the environmental impact of compute - the OneByte model (1byte.js), and the Sustainable Web Design model (swd.js).

Default

Since v0.11.0, CO2.js uses the Sustainable Web Design (SWD) model as the default when calculating carbon emissions.

Carbon estimation models

The Sustainable Web Design model

By default, CO2.js uses the Sustainable Web Design model for calculating emissions from digital services. As the name suggests, this has been designed for helping understand the environmental impact of websites. Further details are available on the Sustainable Web Design website explaining the model, but for convenience, a short summary is below.

How the SWD works

This model uses data transfer as an proxy indicator for total resource usage, and uses this number to extrapolate energy usage numbers for your application as a fraction of the energy used by the total system comprised of:

  1. the use-phase energy of datacentres serving content
  2. the use-phase energy network transfering the data
  3. the use-phase energy of user device an user is accessing content on
  4. the total embodied energy used to create all of the above
swd model

It then converts these energy figures to carbon emissions, based on the carbon intensity of electricity from the Ember annual global electricity review.

The carbon intensity of electricity figures for the swd model include the the full lifecycle emissions including upstream methane, supply-chain and manufacturing emissions, and include all gases, converted into CO2 equivalent over a 100 year timescale.

This follows the approach used by the IPCC 5th Assessment Report Annex 3 (2014), for the carbon intensity of electricity.

Ember's methodology notes detail where the rest of this data comes from in more detail, as well as any further assumptions made.

The OneByte model

Additionally, CO2.js also allows developers to use the OneByte model as introduced by The Shift Project in their report on CO2 emissions from digital infrastructure, Lean ICT: for a sober digital.

This returns a number for the estimated CO2 emissions for the corresponding number of bytes sent over the wire, and has been used for video streaming, file downloads and websites.

How the models differ

These models return slightly different results, since they apply different system boundaries as part of their calculations. Tom Greenwood has written a terrific blog post explaining system boundaries and how they impact carbon estimates.

The OneByte model, as it has been implemented in CO2.js, applies narrow system boundaries - datacenter and network only. It takes a top down approach to calculations, returning a single carbon emissions result based on a given input. It should be noted that the original model used in the Lean ICT report did have broader systems boundaries. However, when the model was included in CO2.js a judgement call was made to reduce its scope. You can read more about why in this GitHub issue.

On the other hand, the Sustainable Web Design model has a broader system boundary (explained above). It takes a more complex, but detailed, bottom up approach. By using a wider system boundary, the Sustainable Web Design model provides a more comprehensive carbon estimate. This also means that segmented estimates can be produced for each part of the system, allowing for greater granularity and flexibility.

As a result, the perByte carbon estimates returned when using the OneByte model will be lower than those from Sustainable Web Design for the same amount of data transfer.

Switching between models

To use the Sustainable Web Design model in CO2.js, pass in the { model: 'swd' } parameter when initiating a new CO2.js object.

import { co2 } from '@tgwf/co2'

// Use the default Sustainable Web Design model
const swd = new co2()

// Use the OneByte model
const oneByte = new co2({ model: "1byte" })