You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The calculation of ssnow%evapfbl is changed significantly by the ground water work for the non-Haverd2013 case. From what I understand, it is trying to spread the demand for water through the soil layers due to the root distribution.
ssnow%evapfbl(i,kk) = diff(kk) ! transpiration in layer kk is supply
diff(kk) = xxd ! deficit in layer kk
else! demand < supply
ssnow%evapfbl(i,kk) = xx ! transpiration in layer kk is demand
diff(kk) =0._r_2! no deficit in layer kk
end if
END DO!ms
I have absolutely no idea if it's a good calculation to introduce. If it's a good idea, I don't know if we want to introduce it now or park it away for later.
@har917 I think that's the last one from the ground water work where I need some input.
The text was updated successfully, but these errors were encountered:
On this one - yes this is probably a good idea to pull across - it avoids over extraction of liquid water from a layer with lots of ice in it.
But I'm a bit confused as to how this intersects with the code in cbl_remove_trans and remove_transGW (for the non-Haverd2013 case) - this seems only to be setting %evapfbl which isn't then used.
A couple of comments:
the 1000. at line 537 needs to be a density_liq
I'd be happier if the factor 1.1 was included - comments from Matthias indicates that this safety net is needed.
this method does conceptually allow for extraction of water from soil layers where there are no roots.
this method doesn't actually ensure that evapfb can actually be satisified - or that wbice/wb < frozen_limit
The calculation of
ssnow%evapfbl
is changed significantly by the ground water work for the non-Haverd2013 case. From what I understand, it is trying to spread the demand for water through the soil layers due to the root distribution.The current calculation is:
CABLE/src/science/canopy/cbl_dryLeaf.F90
Lines 518 to 521 in 630e2e1
The new calculation is:
CABLE/src/science/canopy/cbl_dryLeaf.F90
Lines 530 to 547 in 42bf0c5
I have absolutely no idea if it's a good calculation to introduce. If it's a good idea, I don't know if we want to introduce it now or park it away for later.
@har917 I think that's the last one from the ground water work where I need some input.
The text was updated successfully, but these errors were encountered: