emissions_model_simple: Simulate cumulative emissions

Description Usage Arguments Details Value Author(s) Examples

Description

Simulate cumulative emissions

Usage

1
emissions_model_simple(t, Ainit, d, g, CPerHadef, CperHAdeg)

Arguments

t

vector vector of time steps for integration

Ainit

numeric Initial area of forest

d

numeric Instantaneous deforestation rate

g

numeric Instantaneous degradation rate

CPerHadef

numeric Carbon emission potential for deforestation

CperHAdeg

numeric Carbon emission potential for degradation

Details

Numerical integration of carbon emissions. Includes degradation and deforestation. Assumes all carbon is emitted as soon as deforestation or degradation occur. There is no deforestation of degraded forest. Primarily used to check against analytical equations.

Value

A vector of cumulative carbon emissions.

Author(s)

Christopher J. Brown

Examples

1
2
3
years <- seq(0, 50, by = 0.1)
emissions <- emissions_model_simple(years, 100, 0.05, 0.1, 776, 200)
plot(years, emissions)

cbrown5/MangroveCarbon documentation built on May 22, 2019, 2:27 p.m.