Wet removal process of aerosols #1204
Replies: 6 comments 2 replies
-
|
Yes, the large scale wet removal scheme originated from WRF-Chem, though I'm uncertain about the original developer. My understanding based on the code structure is that this method operates as a diagnostic offline parameterization rather than being integrated with the host model's microphysical processes. It calculates a scavenging coefficient from the ratio of precipitation rate to column-integrated cloud water flux, then applies removal layer-by-layer where cloud condensate exists. While it connects wet removal to precipitation, cloud water, and vertical velocity, it does so through diagnosed fields rather than through the prognostic microphysical tendencies that actually generate clouds and precipitation. This fundamental disconnect is why we developed the inline wet removal approach integrated directly within the Thompson microphysics scheme for UFS-Chem model in our recent development. frc = rain_clw / var_sum_clw frc = (kg m⁻² s⁻¹) / (kg m⁻² s⁻¹) = dimensionless rain_clw = rain / dt , rain is kg m⁻² (1 mm of water depth = 1 kg m⁻² for water) , dt is s⁻¹ var_sum_clw= var_sum_clw + dvar Thanks. |
Beta Was this translation helpful? Give feedback.
-
|
I 've included @haiqinli here as this relates to the smoke_dust component. My understanding is that RRFSv1 ultimately uses the SAS scheme for convection rather than GF, which may be why SAMF is commented out. Haiqin would be the best person to confirm this. In GEFS-Aerosols, UFS-Chem , GCAFS, as well as RRFSv1, they all use SAS convection scheme for convective transport and convective wet deposition |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, @zhanglikate
@haiqinli, please share any insights you have on SAMF development. Thank you! |
Beta Was this translation helpful? Give feedback.
-
|
@weiwilliam I am responsible for the development and maintenance of the GF (currently GFL) convection. Please feel free to email me or schedule a time to meet if you would like to discuss this further. Thanks! |
Beta Was this translation helpful? Give feedback.
-
|
@weiwilliam You're right. I made a mistake in my quick calculation—the unit of frc is m⁻¹. My understanding is that frc represents a scavenging coefficient, and it's physically reasonable for it to have units of m⁻¹ (per unit height). However, I don't quite understand the factor/(1+factor) term that follows, since factor is not unitless. Thank you for catching this. |
Beta Was this translation helpful? Give feedback.
-
|
@weiwilliam I agree that the "factor/(1+factor)" formulation is attempting to create a dimensionless fraction by canceling units, perhaps by treating the '1' as having the same units as factor rather than being truly dimensionless. :) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all,
I had some hard times understanding the wet removal processes of aerosols in
physics/smoke_dust/module_wetdep_ls.F90andphysics/CONV/SAMF.I know
physics/smoke_dust/module_wetdep_ls.F90is the same as the one used in WRF-Chem.ccpp-physics/physics/smoke_dust/module_wetdep_ls.F90
Lines 54 to 71 in 1ab4de8
Can anyone help explain the physical meaning of this part of the code?
It seems that
frcis not a unitless variable, and it puzzled me a lot.For the aerosol wet removal in the SAMF scheme, does anyone have the reference for it?
And why are both
samfdeepcnv_aerosolsandsamfshalcnv_aerosolscommented out?ccpp-physics/physics/CONV/SAMF/samfdeepcnv.f
Lines 3089 to 3093 in 1ab4de8
ccpp-physics/physics/CONV/SAMF/samfshalcnv.f
Lines 2084 to 2089 in 1ab4de8
Appreciate any information that can help me improve my understanding of this aspect.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions