05-biomass-partitioning.Rmd 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. # Biomass partitioning and re-translocation
  2. ## Biomass partitioning
  3. In the wheat module, wheat is divided into four components or parts:
  4. `Root`, `Heat`, `Leaf` and `Stem` (Fig. \@ref(fig:WheatClassStructure)),
  5. and is derived from a more generic plant module (meaning that it has
  6. some parts not used or has a terminology, better adapted to other
  7. crops). `Leaf` includes only leaf blades. `Stem` is
  8. defined in a functional rather than a morphological manner and includes
  9. plant stems, leaf sheaths and stem-like petioles (not applicable for
  10. wheat). `Head` is divided into `Grain` and `Pod`
  11. (which correspond to spike without the grain). Then grain are separated
  12. into `Meal` and `Oil` (not used). The structure of wheat
  13. parts is shown in Fig. \@ref(fig:WheatClassStructure).
  14. \begin{figure}[h]
  15. \begin{centering}
  16. \includegraphics[height=6cm]{figure/wdBiomassPartition}
  17. \par\end{centering}
  18. \caption{\label{fig:WheatClassStructure}}
  19. \end{figure}
  20. ```{r WheatClassStructure, fig.cap="The hierarchical structure of wheat parts. Texts in the parentheses are classes of parts. The gray box indicates a plant part not used in wheat."}
  21. knitr::include_graphics("figure/wdBiomassPartition.png")
  22. ```
  23. On the day of emergence, biomass in plant parts (`Root`, `Head`,
  24. `Leaf`, `Stem`, `Pod`, `Meal` and `Oil`)
  25. are initialized by `root_dm_init` (set at 0.01 g plant\textsuperscript{-1}
  26. in the wheat.xml file), `leaf_dm_init` (0.003 g plant\textsuperscript{-1}),
  27. `stem_dm_init` (0.0016 g plant\textsuperscript{-1}), `pod_dm_init`
  28. (0 g plant\textsuperscript{-1}), `meal_dm_init` (0 g plant\textsuperscript{-1}),
  29. `oil_dm_init` (0 g plant\textsuperscript{-1}), respectively.
  30. Daily biomass production (Equation \@ref(eq:actualBiomassProduction)) is
  31. then partitioned to different plant parts in different ratios that
  32. vary with crop stage. Overall, Root biomass are calculated with a
  33. shoot:root ratio from the above-ground biomass ($\Delta Q$; Fig. \@ref(fig:BiomassPartition)).
  34. Then the above-ground biomass are partitioned into the different plant
  35. parts hierarchically, with biomass being attributed first to `Head`,
  36. then `Leaf` and finally `Stem`. This means that all
  37. parts might not have the biomass demand satisfied if the biomass production
  38. is limited.
  39. ```{r BiomassPartition, fig.cap="Biomass partition rules in the APSIM-Wheat module. Texts in the parentheses are partitioning methods of different organ types. The above-ground biomass is used to calculate Root biomass based on a shoot:root ratio, and is then partition to (1) Head based on the demand from Pod and Grain, and then (2) Leaf (proportion of the remaining biomass), and (3) Stem. Re-translocation occurs during grain filling, when the biomass accumulation doesn't satisfy Head demand. Biomass from Stem and Pod are then used to satisfy the Head demand (Pod and Grain)."}
  40. knitr::include_graphics("figure/wdBiomassPartitioning.png")
  41. ```
  42. ## Biomass partitioning to `Root`
  43. Firstly, some biomass are allocated to the root as a ratio of daily
  44. available biomass ($\Delta Q$, Equation \@ref(eq:BiomassProduction)).
  45. The so-called 'magic' fraction of biomass going to `Root` is
  46. calculated from a stage-dependent function, but is independent on
  47. pedo-climatic factors (Fig. \@ref(fig:wdroothootRatio)). All biomass
  48. in the `Root` is considered as structural fraction, meaning
  49. that it cannot be re-translocated to other parts later on.
  50. \begin{equation}
  51. \Delta Q_{root}=\Delta Q\times R_{Root:Shoot} (\#eq:RootBiomass)
  52. \end{equation}
  53. where $\Delta Q_{root}$ is the daily increment in `Root` biomass;
  54. and $R_{Root:Shoot}$ is the ratio root:shoot biomass, which is defined
  55. by x_sta`x_stage_no_partition` and `y_ratio_root_shoot`
  56. in wheat.xml (Fig. \@ref(fig:wdroothootRatio)).
  57. \texttt{(}which is specified in wheat.xml )
  58. ```{r wdroothootRatio,fig.cap='Relationship between ratio of root and shoot and growth stage.' }
  59. p <- wdVisXY(wheat_xml,
  60. "x_stage_no_partition", "y_ratio_root_shoot",
  61. xlab = "Stage",
  62. ylab = "Ratio of root and shoot")
  63. print(p)
  64. ```
  65. ## Biomass partitioning to `Head` (`Pod`, \texttt{Meal
  66. and \texttt{Oil }(not applicable in this version))}
  67. Then all or part of available biomass ($\Delta Q$) are partitioned
  68. into `Heads` according to total demand of `Heads` (`Meal`,
  69. `Oil` and `Pod`). `Meal` and `Pod` demands
  70. are calculated by Equation \@ref(eq:MealDemand) and Equation \@ref(eq:GrainDemand).
  71. `Oil` demand always equals to zero in the current version of
  72. the APSIM-Wheat module. Biomass directly partitioned in `Pod`
  73. or `Grain` is considered as structural and cannot be re-translocated,
  74. however the biomass providing from re-translocation is accumulated
  75. as non-structural biomass. The `Pod` non-structural biomass
  76. can then be re-translocated into `Grain` (See Section @ref(Re-translocation)).
  77. \begin{equation}
  78. \begin{array}{c}
  79. \Delta Q_{head}=\min(\Delta Q,\,D_{grain}+D_{pod})\\
  80. \Delta Q_{grain}=\frac{D_{g}}{D_{head}}\Delta A_{head}\\
  81. \Delta Q_{pod}=\frac{D_{p}}{D_{head}}\Delta A_{head}
  82. \end{array} (\#eq:HeadBiomass)
  83. \end{equation}
  84. where $\Delta Q_{head}$ is the daily available biomass for `Head`,
  85. $D_{head}$, $D_{grain}$and $D_{pod}$ are demands for `Head`,
  86. `Grain` and `Pod`, respectively (see \autoref{sub:Grain-(meal)-demand}
  87. and Section @ref(Pod-demand)). $\Delta Q_{grain}$ and $\Delta Q_{pod}$
  88. are biomass increment of `Grain` and `Pod`, respectively.
  89. ## Biomass partitioning to `Leaf`
  90. Then, the remaining biomass (after the partitioning to the `Heads`)
  91. are partitioned into `Leaf` based on a stage dependent function
  92. (Fig. \@ref(fig:wdFractionLeaf)). `Leaf` biomass is considered
  93. as structural and thus cannot be re-mobilised.
  94. \begin{equation}
  95. \Delta Q_{leaf}=(\Delta Q-\Delta Q_{head})\times F_{leaf}
  96. \end{equation}
  97. where $\Delta Q_{leaf}$ is the daily increment in `Leaf` biomass;
  98. and $F_{leaf}$ is the fraction of available biomass partitioned to
  99. the leaf, which is defined by `x_stage_no_partition` and
  100. `y_frac_leaf` in wheat.xml (Fig. \@ref(fig:wdFractionLeaf)).
  101. ```{r wdFractionLeaf,fig.cap='Relationship between fraction of leafLeaf and growth stage.' }
  102. p <- wdVisXY(wheat_xml,
  103. "x_stage_no_partition", "y_frac_leaf",
  104. xlab = "Stage",
  105. ylab = "Fraction of leaf")
  106. print(p)
  107. ```
  108. ## Biomass partitioning to `Stem`
  109. Finally, the whole remaining biomass (if any) are partitioned into
  110. `Stem` (Fig. \@ref(fig:BiomassPartition)). Until the stage `start
  111. of grain filling`, 65\% of this biomass is distributed to structural
  112. biomass (Fig. \@ref(fig:wdStemGrowthStructuralFractionStage)), while
  113. remaining 35\% is allocated in un-structural biomass. Afterwards,
  114. all new biomass allocated to `Stem` is for non-structural biomass
  115. (which can re-mobilised).
  116. \begin{equation}
  117. \Delta Q_{stem}=\Delta Q-\Delta Q_{head}-\Delta Q_{leaf}
  118. \end{equation}
  119. \begin{equation}
  120. \Delta Q_{stem.\,structural}=\Delta Q_{stem}\times h_{structual}
  121. \end{equation}
  122. \begin{equation}
  123. \Delta Q_{stem.\,non-structural}=\Delta Q_{stem}\times(1-h_{structual}) (\#eq:StemNonStructural)
  124. \end{equation}
  125. where $\Delta Q_{stem}$ is the daily increment in `Stem` biomass;
  126. $\Delta Q_{stem.\,structural}$ is the structural biomass of `Stem`;
  127. $\Delta Q_{stem.\,non-structural}$ is the non-structural biomass
  128. of `Stem`; and $h_{structual}$ is the fraction of `Stem`
  129. biomass distributed to structural biomass which depends on the growth
  130. stage (S). $h_{structual}$ is specified by `stemGrowthStructuralFraction`
  131. and `stemGrowthStructuralFractionStage` in wheat.xml, with
  132. a default value of 0.65 before beginning of grain filling and 0 after.
  133. ```{r wdStemGrowthStructuralFractionStage,fig.cap='Relationship between fraction of structural and unstructural biomass in Stem.' }
  134. p <- wdStemGrowthStructuralFraction()
  135. print(p)
  136. ```
  137. ## Re-translocation\label{subsec:Re-translocation}
  138. If the supply in assimilate (daily biomass increase) is insufficient
  139. to meet `Grain` demand, then re-translocation may occur to
  140. meet the shortfall (Fig. \@ref(fig:BiomassPartition)). The biomass
  141. re-translocation first occurs from the `Stem` non-structural
  142. biomass. From the start of grain filling, the wheat module allows
  143. a total re-translocation of up to 20\% of `Stem` biomass per
  144. day. If required, biomass can then be re-translocated from the `Pod`
  145. non-structural biomass. The re-translocated biomass is used to fulfill
  146. the `Grain` and `Pod` demands (\autoref{sub:Grain-(meal)-demand}
  147. and Section @ref(Pod-demand)) and is accumulated as non-structural
  148. biomass.
  149. \begin{equation}
  150. D_{diff,\,head}=(D_{grain}-\text{\ensuremath{\Delta}}Q_{grain})+(D_{pod}-\Delta Q_{pod})
  151. \end{equation}
  152. where $D_{diff,\,head}$ is the unfulfilled demand from the plant,
  153. $D_{grain}$ and $D_{pod}$ are the demands from `Grain` and
  154. `Pod` (\autoref{sub:Grain-(meal)-demand} and Section @ref(Pod-demand)),
  155. and $\text{\ensuremath{\Delta}}Q_{grain}$ and $\Delta Q_{pod}$ are
  156. the daily increments in biomass accumulated to `Grain` and
  157. `Pod` (before re-translocation; Equation \@ref(eq:HeadBiomass)).
  158. \begin{equation}
  159. \Delta Q_{retrans,\,stem}=\min(D_{diff},\,Q_{stem.\,non-structural}\times20\%)
  160. \end{equation}
  161. where $\Delta Q_{retrans,\,stem}$ is the dry biomass re-translocated
  162. from `Stem`, and $Q_{stem.\,non-structural}$ is the non-structural
  163. part of the `Stem` biomass (Equation \@ref(eq:StemNonStructural)).
  164. \begin{equation}
  165. D_{diff,\,head}=D_{diff,\,head}-\Delta Q_{retrans}
  166. \end{equation}
  167. where $D_{dff,\,head}$ is updated value of the unfulfilled demand
  168. from the head.
  169. \begin{equation}
  170. \Delta Q_{retrans,\,pod}=\min(D_{diff,\,head},\,Q_{pod,\,non-structural})
  171. \end{equation}
  172. where $\Delta Q_{retrans,\,pod}$ from pod is the dry biomass re-translocated
  173. from `Pod`, and $Q_{pod,\,non-structural}$ is the non-structural
  174. part of the `Pod` biomass.
  175. \begin{equation}
  176. D_{dff,\,head}=D_{diff,\,head}-\Delta Q_{retrans,\,pod}
  177. \end{equation}
  178. where $D_{dff,\,head}$ is updated value of the unfulfilled demand
  179. from the head.
  180. \begin{equation}
  181. \Delta Q_{retrans}=\Delta Q_{retrans,\,stem}+\Delta Q_{retrans,\,pod}
  182. \end{equation}
  183. where $\Delta Q_{retrans}$ is re-translocated biomass within the
  184. plant.
  185. \begin{equation}
  186. \Delta Q_{grain.\,non-structural=}\Delta Q_{retrans\,to\,grain}=\frac{D_{diff,\,grain}}{D_{diff,\,head}}\Delta Q_{retrans}
  187. \end{equation}
  188. \begin{equation}
  189. \Delta Q_{retrans\,to\,pod}=\frac{D_{diff,\,pod}}{D_{diff,\,head}}\Delta Q_{retrans}
  190. \end{equation}
  191. \begin{equation}
  192. \Delta Q_{pod.\,non-structural=}\Delta Q_{retrans\,to\,pod}-\Delta Q_{retrans,\,pod}
  193. \end{equation}
  194. where $\Delta Q_{grain.\,non-structural}$ and $\Delta Q_{pod.\,non-structural}$
  195. are the daily increment in the non-structural part of `Grain`
  196. and `Pod` biomass; $\Delta Q_{retrans\,to\,grain}$ and $\Delta Q_{retrans\,to\,pod}$
  197. to pod are the daily biomass re-translocated to `Grain` and
  198. `Pod`; $D_{diff,\,grain}$ and $D_{diff,\,pod}$ are the unfulfilled
  199. demand of `Grain` and `Pod`, which are calculated as
  200. ($D_{grain}-\Delta Q_{grain}$) and ($D_{pod}-\Delta Q_{pod}$), respectively.