Components of water balance at the plot level #428
-
|
Dear all, I would like to calculate the water balance components at the plot level in terms of the general formula Precipitation = ET + Runoff + Change in soil storage using the monthly outputs from an ED 2.2 simulation. After reading the reference Longo et al., (2019), I understand that ED 2.2 calculates the water balance for each thermodynamic system, i.e., each soil layer, TSW, cohorts, and CAS. After checking in detail each component in the net water flux equations for each of these systems, I am not sure if I got correctly all the components I need in order to calculate the water balance in the more general form (Precipitation = ET + Runoff + Change in soil storage) at the plot level. So far, I identified these components in my ED 2.2 outputs: rainfall (from meteorological drivers), ET from each cohort, evaporation from the soil, runoff (surface and subsurface) and change in soil moisture. However, the sum of the components do not correspond exactly to the rainfall inputs. Is there something I am missing? Also, I am not sure if I identified correctly the name of each variable in the ed_state_vars.F90 This is something I would like to work with for the last chapter of my PhD thesis and I'd appreciate any help. Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
|
@Manuela-RT From the top of my head, I can think of the following:
If you don't mind, could you please post the calculation you are doing, so we can take a look and see what may be missing? |
Beta Was this translation helpful? Give feedback.
-
|
functions in budget_utils.f90 might be a good reference too. For example, the ED2/ED/src/utils/budget_utils.f90 Line 1373 in bae4504 And the following lines show how ED2 tracks the water budget. You can search how each term was calculated to help you track water budget based on output. ED2/ED/src/utils/budget_utils.f90 Lines 895 to 899 in bae4504 |
Beta Was this translation helpful? Give feedback.
The budget variables are not part of the mean monthly output, because they are used to track conservation at each time step. In any case, wbudget_loss2atm is numerically equivalent to (−1 × MMEAN_VAPOR_AC).
@Manuela-RT you are correct, the budget will depend on where you define the boundary, so I agree 100% with you. And thinking a bit more on it, I think what you suggested (i.e., exclude canopy air space from the budget) is likely a better approach, because we lack a variable to track it accurately.
The other thing is that you may never get full closure by only looking at the monthly averages, because that would incur substantial double counting. Strictly speaking, you would need to calc…