While making some changes to a generic varinfo.dat file to use WRF output as atmospheric forcing in the bulk fluxes calculations, I've got confused with the name of the surface water vapor content variable.
Looking in a generic varinfo.dat file one can find that the 'Qair' variable is related to that content of vapor (Relative Humidity):
Code: Select all
'Qair' ! Input
'surface air relative humidity'
'percentage' ! [percentage]
'Qair, scalar, series'
'qair_time'
'idQair'
'r2dvar'
0.01d0 ! 1/100
in subroutine definition
Code: Select all
SUBROUTINE bulk_flux_tile (ng, Istr, Iend, Jstr, Jend, &
& LBi, UBi, LBj, UBj, &
& nrhs, &
# ifdef MASKING
& rmask, umask, vmask, &
# endif
& alpha, beta, rho, t, &
& Hair, Pair, Tair, Uwind, Vwind, ....
Code: Select all
!
! Input bulk parameterization fields.
!
...
rhoSea(i)=rho(i,j,N(ng))+1000.0_r8
RH=Hair(i,j)
SRad(i,j)=srflx(i,j)*Hscale
...
Code: Select all
! note that Qair(i) is the saturation specific humidity at Tair
! Q(i) is the actual specific humidity
! Qsea(i) is the saturation specific humidity at Tsea
!
! Saturation vapor pressure in mb is first computed and then
! converted to specific humidity in kg/kg
Thank you!!