Return to Bi445 home page
Tuesday, April 29, 1997
Lecture 9

DISCUSS ASSIGNMENT

HELP with EXCEL and STELLA

STELLA MODEL OF ADAPTATION

Diagram of the STELLA adaptation model

Equations for the STELLA adaptation model

carbon_production(t) = carbon_production(t - dt) + (enz_rxn - reinvest_Pmemb - reinvest_Penz) * dt
INIT carbon_production = 0

INFLOWS:
enz_rxn = penz
OUTFLOWS:
reinvest_Pmemb = if indicator = 1 then carbon_production else 0
reinvest_Penz = if indicator=0 then carbon_production else 0

NADPH(t) = NADPH(t - dt) + (light_rxn - enz_rxn) * dt
INIT NADPH = 0

INFLOWS:
light_rxn = pmemb*light/(light+100)
OUTFLOWS:
enz_rxn = penz
penz(t) = penz(t - dt) + (reinvest_Penz) * dt
INIT penz = 3

INFLOWS:
reinvest_Penz = if indicator=0 then carbon_production else 0

pmemb(t) = pmemb(t - dt) + (reinvest_Pmemb) * dt
INIT pmemb = 7

INFLOWS:
reinvest_Pmemb = if indicator = 1 then carbon_production else 0
indicator = if light_rxn <= enz_rxn then 1 else 0
total_carbon = penz+pmemb+carbon_production
light = GRAPH(time)
(0.00, 100), (1.00, 100), (2.00, 100), (3.00, 99.0), (4.00, 200), (5.00, 200), (6.00, 200), (7.00, 199), (8.00, 49.0), (9.00, 48.0), (10.0, 48.0), (11.0, 48.0), (12.0, 51.0)