Changing the assumptions

Research Methods — Week 3 Application

Today’s plan

Goals

In the content session, you audited the assumptions behind biomass carbon accounting.

Now: test what happens when you change them.

  1. Add transport emissions
  2. Add supply chain emissions
  3. Change the forest regrowth timeline
  4. See how wide the range gets

Questions?

Submit questions anonymously:

PollEv.com/geol

text geol to 07480 781235

Guided walkthrough

🎓💻 Scenario analysis in R

Starting point: the “official” view

Biomass emission factor at combustion: 0 gCO₂/kWh

(That’s the carbon accounting rule.)

But what if we add the costs the rule ignores?

Adding transport

# Pellets shipped ~6,000 km from SE United States
# Transport emission factor: ~15 gCO₂/tonne-km (bulk shipping)
# ~7.5 GJ per tonne of pellets → ~2,083 kWh per tonne

transport_co2 <- 6000 * 15  # gCO₂ per tonne of pellets
transport_per_kwh <- transport_co2 / 2083  # gCO₂ per kWh

How much does transport add?

Adding the payback period

Trees absorb CO₂ as they grow. But how long does regrowth take?

  • Fast regrowth (10 years): biomass is roughly carbon-neutral over the short term
  • Slow regrowth (40+ years): biomass has a carbon debt for decades
  • Net zero target: 2050 — only 25 years away

If the payback exceeds the policy horizon, biomass is not carbon-neutral when it matters.

Your scenario analysis

✏️💻 Independent exercises

Exercises

The WebR page has four scaffolded exercises:

  1. Transport scenario — estimate CO₂ cost of shipping pellets
  2. Supply chain scenario — add harvesting, processing, drying
  3. Payback scenario — plot cumulative emissions under different regrowth timelines
  4. Extension: Best case and worst case — combine all assumptions

How wide is the range? What does that tell you about certainty?

Discussion

💬 What did you find?

Key messages

  • The answer depends on which costs you include
  • The timescale matters — carbon-neutral over centuries, but not over decades
  • The “official” answer (zero) is a policy choice, not a scientific measurement

The ethical question

“If you were writing a policy briefing, which scenario would you present? Why?”

Cast your vote

PollEv.com/geol

text geol to 07480 781235

Think about this. You’ll be writing that briefing next week.

Wrap-up

Commit your work

Save your code to week3.R. Commit and push.

Next week is the big one:

You’ll write your policy briefing and review each other’s work.

“What assumptions are we making?”

The question that determines the answer.