RtmHistFlds.F90
# Overview:
For each sector we add 3 new outputs from the routing model. These are:
- QsectorX_WITHD_FROM_COUPLER
- QsectorX_RF_FROM_COUPLER
- QsectorX_ACTUAL
In general QsectorX_WITHD_FROM_COUPLER already corresponds to an actual withdrawal, since river volume is also accounted in the land component
. But since the coupling period between the land
and routing
component do not happen at each step, there is the possibility that the land model will use more water than actually available in the grid river network. So, an additional volume check is done in the routing model and if indeed the withdrawal from the coupler is higher than available river water, than new actual withdrawal is computed as seen by the routing model (while the difference with coupler is sent to the ocean).
These 3 variables are enough to deduce over variables of interest. For example we can compute: QDOM_ACTUAL_RF = (QDOM_ACTUAL/QDOM_WITHD_FROM_COUPLER) x QDOM_RF_FROM_COUPLER
# Code:
|
|