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
Question to the CMAQ table deliveree :
Yingtao @YingtaoMa, how did you adjust the effective radius when adopting the CMAQ table? What are the assumed hydrophilic growth factors of different species? Thanks.
Unfortunately, a lot of hard-coded parameters are required in function cmaq_aerosol_size, based on over-simplified assumptions:
! Reff_Dry and Growth_Factor are approximated based on GOCART-GEOS5 tables (species DU3 etc)
! Dust - 1 -> DU3
! Soot - 2 -> BC2
! Water soluble - 3 -> OC2
! Sulfate - 4 -> Sulfate 2
! Sea salt - 5 -> Sea Salt 3
! Water - 6 -> OC2
! Insoluble - 7 -> DU3
! dust-like - 8 -> DU3
I have not complied the code, so it is not ready for testing (especially the parameter definition part) but just to show the concept for now. Any suggestions are welcome.
Can you create a draft PR so I can start putting code-specific comments?
Do you think we should replace the default gocart_aerosol_size by cmaq_aerosol_size? I don't think we should replace the default but have a condition that checks on which aerosol model. I can point to and comment on the lines I am talking about in a draft PR. Thanks!
Noticed this bug has been temporarily removed by setting n_RH = 35 in function gocart_aerosol_size, which will introduce a bit bias for CRTM calculations with the default table, for very high relative humidity RH > 0.98
In CAMQ aerosols coefficient tables, there are a total 35 effective radii for each species, and the radii of all 8 species are indentical:
This implies that these are not RH-scaled Reff (i.e. the hydrophilic growth factors should be different for different species). Therefore, Reff/RH in CMAQ table cannot be used as the Reff/RH in CRTM default tables for interpolating effective radius, as in function
gocart_aerosol_size
https://github.com/JCSDA-internal/ufo/blob/7ebbdc3f5e3de367b9a7f60a13f9bc43b13161a3/src/ufo/operators/crtm/ufo_crtm_utils_mod.F90#L1708. This is causing an issue in JEDI (noticed by @PatNichols) in recent V8 release, with the new CMAQ capability
Question to the CMAQ table deliveree :
Yingtao @YingtaoMa, how did you adjust the effective radius when adopting the CMAQ table? What are the assumed hydrophilic growth factors of different species? Thanks.
Possible fix to the V8 release:
gocart_aerosol_size
with a new function to compute Reff based on atm%RH, in the CMAQ option: https://github.com/JCSDA-internal/ufo/blob/7ebbdc3f5e3de367b9a7f60a13f9bc43b13161a3/src/ufo/operators/crtm/ufo_crtm_utils_mod.F90#L1577Any suggestions or insights are welcome! @jeromebarre @YingtaoMa @BenjaminTJohnson. Thank you!
The text was updated successfully, but these errors were encountered: