GT ECE 3600 · Final Presentation

Projecting U.S. data-center CO2 emissions

We fit exponential models to state-level data-center MW capacity and to grid CO2 intensity, then multiplied the two to estimate annual emissions. The analysis covers five states and six years of EPA eGRID data. Of those five, Virginia shows the steepest projected growth.

Interactive projection

Pick a state and year. The model evaluates both fits at that year and returns the product.

Projected total emissions

Log scale. Dashed lines are the fitted model. Markers are observed MW multiplied by a hybrid emission rate.

MW capacity

Data-center nameplate capacity by state.

Emission intensity

Grid CO2 output rate, in pounds per MWh.

Methodology

Total emissions depend on two things: installed data-center capacity, and the emission intensity of the grid that supplies it. Both look roughly exponential over the years we have data for, so we fit each separately and multiply them.

1. Capacity fit

MW nameplate data for 2021 through 2024, together with a published 2030 industry projection, is fit to the model:

MW(t) = a · eb(t−2021)

We use SciPy's curve_fit for this, which runs a nonlinear least-squares fit. Anchoring the exponent at 2021 makes a equal to the 2021 capacity, so the parameters are easier to read directly.

2. Emission-intensity fit

Emission intensity uses the same exponential form, anchored at 2018 to match the start of the data. EPA eGRID state values from 2018 through 2023 are fit to:

E(t) = a · eb(t−2018)

Because emission intensity is generally falling over time, the solver needs a negative starting guess for b, such as p0 = (E2018, −0.1). A non-negative starting value can cause the fit to flatten out for states whose grids are decarbonizing quickly. Illinois is the clearest example.

3. Annualizing

MW is a rate, not an energy quantity. To get annual energy we multiply by 8,760, the number of hours in a year. Data-center load runs close to flat around the clock, so this is a reasonable first-order estimate:

MWh(t) = MW(t) · 8760

4. Total emissions

The total CO2 in a given year is the product of annual energy and the corresponding emission intensity:

Total CO2(t)  =  aMW · ebMW(t−2021)  ·  8760  ·  aE · ebE(t−2018)

Both factors are exponential, so the product is too, with a growth rate equal to the sum of the two component rates. Virginia's combined rate is large and positive. In the other four states, the falling emission intensity partly cancels out the capacity growth.

5. Fitted parameters

Fitted coefficients from curve_fit for each state:

State aMW bMW aE bE

6. Caveats