Hi, can I please confirm that the saturation vapor pressure at leaf temperature (ei in the CLM5 technote - see section 9.6) is esat_tv in the CLM code? (e.g. when looking at the PhotoSynthesis module).
I thought this was the case until I saw how hs (relative humidity at leaf surface) is calculated in the code:
On the other hand I see in the CLM5 technote that D = (ei-ea)/1000 and here ei corresponds to esat_tv in the source code (with the addition of a minimum value for the numerator):
I thought this was the case until I saw how hs (relative humidity at leaf surface) is calculated in the code:
Whereas in the CLM4.5 tech note hs = es/ei (section 8.1), so I'm wondering how these two denominators relate.hs = (gb_mol(p)*ceair + gs_mol(p,iv)*esat_tv(p)) / ((gb_mol(p)+gs_mol(p,iv))*esat_tv(p))
On the other hand I see in the CLM5 technote that D = (ei-ea)/1000 and here ei corresponds to esat_tv in the source code (with the addition of a minimum value for the numerator):
rh_can = max((esat_tv(p) - ceair), 50._r8) * 0.001_r8