Skip to content

Commit 92e493a

Browse files
committed
Document on plant respiration
1 parent 1f506f5 commit 92e493a

File tree

3 files changed

+119
-2
lines changed

3 files changed

+119
-2
lines changed

components/elm/docs/tech-guide/CNP_pools.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 1. Carbon, nitrogen, and phosphorus allocation
22

33
E3SM is fully prognostic for all carbon, nitrogen, and phosphorus state variables in the vegetation, litter, and soil organic matter pools.
4+
At each model time step and for each PFT occupying a soil column, the carbon available for allocation to new growth ($F^C_{avail}$) is calculated. The carbon available is then allocated to new plant growth.
45

56
## 1.1 Carbon available for new growth
67

@@ -51,7 +52,7 @@ $$
5152

5253
Implemented in subroutine: `Allocation1_PlantNPDemand`
5354

54-
Total plant nitrogen and phosphorus demand for new growth is estimated as:
55+
Total plant nitrogen and phosphorus demand for each time step is calculated from carbon allometry and nitrogen and phosphorus concentrations for each tissue type (specified by PFT).
5556

5657
$$
5758
\begin{equation}

components/elm/docs/tech-guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Shortwave radiation model
77
- [TOP Parameterization](top_solar_parameterization.md):
88
Parameterization of sub-grid topographical effects on solar radiation.
99
- [Longwave Radiation](longwave_radiation.md): Longwave radiation model
10-
- [Carbon, Nitrogen, and Phosphorus allocation](CPN_pools.md)
1110
- [Respiration](plant_respiration.md)
11+
- [Carbon, Nitrogen, and Phosphorus allocation](CNP_pools.md)
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
# 1. Plant respiration
2+
3+
## 1.1 Autotrophic Respiration
4+
5+
The model treats maintenance and growth respiration processes separately (Lavigne and Ryan, 1997[@lavigne1997growth]; Sprugel, et al., 1995[@sprugel1995respiration]).
6+
7+
### 1.1.1 Maintenance Respiration
8+
9+
Maintenance respiration (MR) is a function of temperature and tissue N concentration (Ryan, 1991[@ryan1991effects]) for live biomass (excludes dead stem and coarse root pools) (Thornton and Rosenbloom, 2005[@thornton2005ecosystem]).
10+
Rates for aboveground pools are based on the prognostic 2-meter air temperature, and rates for belowground pools (fine and coarse roots) depend on fractional rooting distribution with depth and the associated prognostic soil temperatures.
11+
12+
Implemented in subroutine: `MaintenanceResp`
13+
14+
$$
15+
\begin{equation}
16+
F^C_{mr,leaf} = (lmr_{sun} \times lai_{sun} + lmr_{sha} \times lai_{sha}) \times C_{umolCO2\_to\_gC}
17+
\end{equation}
18+
$$
19+
20+
$$
21+
\begin{eqnarray}
22+
\label{eqn_mr}
23+
F^C_{mr,livestem} &=& S^N_{livestem} \times br_{mr} \times q_{10}^{\left(\frac{T_{2m} - T_{frz} - 20}{10}\right)} \\
24+
F^C_{mr,livecroot} &=& S^N_{livecroot} \times br_{mr} \times q_{10}^{\left(\frac{T_{2m} - T_{frz} - 20}{10}\right)} \\
25+
F^C_{mr,grain} &=& S^N_{grain} \times br_{mr} \times q_{10}^{\left(\frac{T_{2m} - T_{frz} - 20}{10}\right)} \\
26+
F^C_{mr,fineroot} &=& \sum_{j=1} ^{nlevsoi} S^N_{fineroot} \times root_{fr,j} \times br_{mr} \times q_{10}^{\left(\frac{T_{s,j} - T_{frz} - 20}{10}\right)}
27+
\end{eqnarray}
28+
$$
29+
30+
$$
31+
\begin{equation}
32+
mr = F^C_{mr,leaf} + F^C_{mr,livestem} + F^C_{mr,livecroot} + F^C_{mr,grain} + F^C_{mr,fineroot}
33+
\end{equation}
34+
$$
35+
36+
### 1.1.2 Growth Respiration
37+
38+
Growth respiration is calculated as the parameter $gr_{perc}$, times the total carbon in new growth on a given timestep, based on construction costs for a range of woody and non-woody tissues (Larcher, 1995[@larcher2003physiological]).
39+
40+
Implemented in subroutine: `GrowthResp`
41+
42+
$$
43+
\begin{eqnarray}
44+
\label{eqn_gr}
45+
F^C_{gr,leaf} &=& F^C_{alloc,leaf} \times gr_{perc} \\
46+
F^C_{gr,leaf\_stor} &=& F^C_{alloc,leaf\_stor} \times gr_{perc} \times gr_{pnow} \\
47+
F^C_{gr,froot} &=& F^C_{alloc,froot} \times gr_{perc} \\
48+
F^C_{gr,froot\_stor} &=& F^C_{alloc,froot\_stor} \times gr_{perc} \times gr_{pnow} \\
49+
F^C_{gr,livestem} &=& F^C_{alloc,livestem} \times gr_{perc} \\
50+
F^C_{gr,livestem\_stor} &=& F^C_{alloc,livestem\_stor} \times gr_{perc} \times gr_{pnow} \\
51+
F^C_{gr,deadstem} &=& F^C_{alloc,deadstem} \times gr_{perc} \\
52+
F^C_{gr,deadstem\_stor} &=& F^C_{alloc,deadstem\_stor} \times gr_{perc} \times gr_{pnow} \\
53+
F^C_{gr,livecroot} &=& F^C_{alloc,livecroot} \times gr_{perc} \\
54+
F^C_{gr,livecroot\_stor} &=& F^C_{alloc,livecroot\_stor} \times gr_{perc} \times gr_{pnow} \\
55+
F^C_{gr,deadcroot} &=& F^C_{alloc,deadcroot} \times gr_{perc} \\
56+
F^C_{gr,deadcroot\_stor} &=& F^C_{alloc,deadcroot\_stor} \times gr_{perc} \times gr_{pnow} \\
57+
F^C_{gr,grain} &=& F^C_{alloc,grain} \times gr_{perc} \\
58+
F^C_{gr,grain\_stor} &=& F^C_{alloc,grain\_stor} \times gr_{perc} \times gr_{pnow} \\
59+
\end{eqnarray}
60+
$$
61+
62+
Parameter $gr_{pnow}$ is currently set to 1.0. This parameter could be changed to a smaller value to transfer some portion (1 - $gr_{pnow}$) of the growth respiration forward in time to occur at the time of growth display from storage.
63+
64+
## 1.2 Variable definitions
65+
66+
| Symbol | Description | Units| ELM Variable |
67+
| ----------- | ----------- | ----------- | ----------- |
68+
| $lmr_{sun}$ | sunlit leaf maintenance respiration rate | $umolCO_{2}~m^{-2}~sec^{-1}$ | `photosyns_vars%lmrsun_patch` |
69+
| $lmr_{sha}$ | shaded leaf maintenance respiration rate | $umolCO_{2}~m^{-2}~sec^{-1}$ | `photosyns_vars%lmrsha_patch` |
70+
| $lai_{sun}$ | sunlit projected leaf area index | - | `canopystate_vars%laisun_patch` |
71+
| $lai_{sha}$ | shaded projected leaf area index | - | `canopystate_vars%laisha_patch` |
72+
| $br_{mr}$ | base rate for maintenance respiration | $gC~gN^{-1}~sec^{-1}$ | `br_mr` |
73+
| $q_{10}$ | temperature sensitivity for maintenance respiration | - | `q10` |
74+
| $T_{2m}$ | 2 m height surface air temperature | K | `veg_es%t_ref2m` |
75+
| $T_{s,j}$ | soil temperature at soil level j| K | `col_es%t_soisno` |
76+
| $T_{frz}$ | freezing point of water (273.15 K) | K | `SHR_CONST_TKFRZ` |
77+
| $root_{fr,j}$ | fraction of roots in each soil layer | - | `soilstate_vars%rootfr_patch` |
78+
| $S^N_{livestem}$ | live stem N | $gN~m^{-2}$ | `veg_ns%livestemn` |
79+
| $S^N_{livecroot}$ | live coarse root N | $gN~m^{-2}$ | `veg_ns%livecrootn` |
80+
| $S^N_{fineroot}$ | fine root N | $gN~m^{-2}$ | `veg_ns%finerootn` |
81+
| $S^N_{grain}$ | grain N | $gN~m^{-2}$ | `veg_ns%grainn` |
82+
| $F^C_{mr,leaf}$ | leaf maintenance respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%leaf_mr` |
83+
| $F^C_{mr,livestem}$ | live stem maintenance respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%livestem_mr` |
84+
| $F^C_{mr,livecroot}$ | live coarse root maintenance respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%livecroot_mr` |
85+
| $F^C_{mr,fineroot}$ | fine root maintenance respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%fineroot_mr` |
86+
| $F^C_{mr,grain}$ | crop grain or organs maintenance respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%grain_mr` |
87+
| $gr_{perc}$ | growth respiration parameter | - | `grperc` |
88+
| $gr_{pnow}$ | growth respiration parameter | - | `grpnow` |
89+
| $F^C_{alloc,leaf}$ | allocation to leaf C | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_leafc` |
90+
| $F^C_{alloc,leaf\_stor}$ | allocation to leaf C storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_leafc_storage` |
91+
| $F^C_{alloc,froot}$ | allocation to fine root C | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_frootc` |
92+
| $F^C_{alloc,froot\_stor}$ | allocation to fine root C storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_frootc_storage` |
93+
| $F^C_{alloc,livestem}$ | allocation to live stem C | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_livestemc` |
94+
| $F^C_{alloc,livestem\_stor}$ | allocation to live stem C storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_livestemc_storage` |
95+
| $F^C_{alloc,deadstem}$ | allocation to dead stem C | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_deadstemc` |
96+
| $F^C_{alloc,deadstem\_stor}$ | allocation to dead stem C storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_deadstemc_storage` |
97+
| $F^C_{alloc,livecroot}$ | allocation to live coarse root C | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_livecrootc` |
98+
| $F^C_{alloc,livecroot\_stor}$ | allocation to live coarse root C storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_livecrootc_storage` |
99+
| $F^C_{alloc,deadcroot}$ | allocation to dead coarse root C | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_deadcrootc` |
100+
| $F^C_{alloc,deadcroot\_stor}$ | allocation to dead coarse root C storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_deadcrootc_storage` |
101+
| $F^C_{alloc,grain}$ | allocation to grain C for prognostic crop | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_grainc` |
102+
| $F^C_{alloc,grain\_stor}$ | allocation to grain C storage for prognostic crop | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_to_grainc_storage` |
103+
| $F^C_{gr,leaf}$ | leaf growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_leaf_gr` |
104+
| $F^C_{gr,leaf\_stor}$ | leaf growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_leaf_storage_gr` |
105+
| $F^C_{gr,froot}$ | fine root growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_froot_gr` |
106+
| $F^C_{gr,froot\_stor}$ | fine root growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_froot_storage_gr` |
107+
| $F^C_{gr,livestem}$ | livestem growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_livestem_gr` |
108+
| $F^C_{gr,livestem\_stor}$ | livestem growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_livestem_storage_gr` |
109+
| $F^C_{gr,deadstem}$ | deadstem growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_deadstem_gr` |
110+
| $F^C_{gr,deadstem\_stor}$ | deadstem growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_deadstem_storage_gr` |
111+
| $F^C_{gr,livecroot}$ | livecroot growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_livecroot_gr` |
112+
| $F^C_{gr,livecroot\_stor}$ | livecroot growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_livecroot_storage_gr` |
113+
| $F^C_{gr,deadcroot}$ | deadcroot growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_deadcroot_gr` |
114+
| $F^C_{gr,deadcroot\_stor}$ | deadcroot growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_deadcroot_storage_gr` |
115+
| $F^C_{gr,grain}$ | grain growth respiration | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_grain_gr` |
116+
| $F^C_{gr,grain\_stor}$ | grain growth respiration to storage | $gC~m^{-2}~sec^{-1}$ | `veg_cf%cpool_grain_storage_gr` |

0 commit comments

Comments
 (0)