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 recent update (PR #743) in GSI develop added the capability of reading in the model fields with Thompson physics, which has two new cloud variables: the number and concentration of cloud ice and rain (ni and nr).
The updated anavinfo is the following:
met_guess::
!var level crtm_use desc orig_name
ps 1 -1 surface_pressure ps
z 1 -1 geopotential_height phis
u 127 2 zonal_wind u
v 127 2 meridional_wind v
div 127 -1 zonal_wind div
vor 127 -1 meridional_wind vor
tv 127 2 virtual_temperature tv
q 127 2 specific_humidity sphu
oz 127 2 ozone ozone
ql 127 12 cloud_liquid ql
qi 127 12 cloud_ice qi
qr 127 12 rain qr
qs 127 12 snow qs
qg 127 12 graupel qg
ni 127 1 cloud_ice conc ni
nr 127 1 rain conc nr
However, the updated code can not work with the original anavinfo anymore (see below).
met_guess::
!var level crtm_use desc orig_name
ps 1 -1 surface_pressure ps
z 1 -1 geopotential_height phis
u 127 2 zonal_wind u
v 127 2 meridional_wind v
div 127 -1 zonal_wind div
vor 127 -1 meridional_wind vor
tv 127 2 virtual_temperature tv
q 127 2 specific_humidity sphu
oz 127 2 ozone ozone
ql 127 12 cloud_liquid ql
qi 127 12 cloud_ice qi
qr 127 12 rain qr
qs 127 12 snow qs
qg 127 12 graupel qg
To make GSI code backward compatible for model fields from gfs.v16.3, the subroutine general_read_gfsatm_allhydro_nc in general_read_gfsatm.f90 needs to be modified.
The text was updated successfully, but these errors were encountered:
The recent update (PR #743) in GSI develop added the capability of reading in the model fields with Thompson physics, which has two new cloud variables: the number and concentration of cloud ice and rain (ni and nr).
The updated anavinfo is the following:
However, the updated code can not work with the original anavinfo anymore (see below).
To make GSI code backward compatible for model fields from gfs.v16.3, the subroutine
general_read_gfsatm_allhydro_nc
ingeneral_read_gfsatm.f90
needs to be modified.The text was updated successfully, but these errors were encountered: