Ags#
- class abcmodel.land.biosphere.ags.AgsState(rs, wl, cliq, wCO2, cveg, rsCO2=<factory>, gcco2=<factory>, ci=<factory>, co2abs=<factory>, wCO2A=<factory>, wCO2R=<factory>, wltend=<factory>)[source]#
Bases:
AbstractBiosphereStateA-gs biosphere state.
- rs: Array#
Surface resistance [s m-1].
- wl: Array#
Canopy water content [m].
- cliq: Array#
Wet fraction of canopy [-].
- wCO2: Array#
Total CO2 flux [mol m-2 s-1].
- cveg: Array#
Vegetation fraction [-].
- rsCO2: Array#
Stomatal resistance to CO2.
- gcco2: Array#
Conductance to CO2.
- ci: Array#
Intercellular CO2 concentration.
- co2abs: Array#
CO2 assimilation rate / concentration.
- wCO2A: Array#
Net assimilation flux [mol m-2 s-1].
- wCO2R: Array#
Respiration flux [mol m-2 s-1].
- wltend: Array#
Canopy water content tendency [m].
- class abcmodel.land.biosphere.ags.AgsModel(c3c4='c3', lai=2.0, cveg=0.85, wmax=0.0002, wwilt=0.171, wfc=0.323, w2=0.21)[source]#
Bases:
AbstractBiosphereModel[AgsState]Ags land surface biosphere model with coupled photosynthesis and stomatal conductance.
- Parameters:
c3c4 (
str) – string indicating whether the model should use C3 or C4 photosynthesis. Default is “c3”.lai (
float) – leaf area index [m2 m-2]. Default is 2.0.cveg (
float) – vegetation fraction [-]. Default is 0.85.wmax (
float) – maximum water storage capacity of the canopy [m]. Default is 0.0002.wwilt (
float) – soil moisture content at wilting point [m3 m-3]. Default is 0.171.wfc (
float) – soil moisture content at field capacity [m3 m-3]. Default is 0.323.w2 (
float) – soil moisture content at the second layer [m3 m-3]. Default is 0.21.
- init_state(rs=1000000.0, wl=0.0, cliq=0.0, wCO2=0.0)[source]#
Initialize the Ags state.
- Parameters:
rs (
float) – Surface resistance [s m-1]. Default is 1.0e6.wl (
float) – Canopy water content [m]. Default is 0.0.cliq (
float) – Wet fraction of canopy [-]. Default is 0.0.wCO2 (
float) – Total CO2 flux [mol m-2 s-1]. Default is 0.0.
- Returns:
The initialized AgsState.
- compute_internal_co2(ds, d0, fmin, co2, co2comp)[source]#
Compute cfrac, co2abs, and ci (internal CO2 concentration).