MPAS | WRF | cloud fraction | module_mp_thompson_cldfra3
Cloud fraction
Cloud fraction is an important variable in numerical weather prediction (NWP) models that help to improve the accuracy of weather forecasts. It is a measure of the fraction of the sky that is covered by clouds and is typically used to describe the amount of cloud cover at a given location and time. Accurate estimates of cloud fraction are essential for a wide range of applications in meteorology and climate science, including weather forecasting, climate modeling, and aviation safety.
- In NWP models, cloud fraction is typically calculated using output from the model's microphysics parameterization schemes. These schemes simulate the formation and evolution of cloud droplets and ice crystals and produce output variables that can be used to estimate cloud cover. The model output may include variables such as cloud water content, cloud ice content, and cloud optical thickness, which can be used to calculate cloud fraction using various algorithms and assumptions.
- In general, accurate estimates of cloud fraction are essential for improving the accuracy of weather forecasts and for understanding the complex interactions between clouds, radiation, and the atmosphere.
Impact of cloud fraction on short wave radition
Clouds have a significant impact on the amount of shortwave radiation that reaches the Earth's surface. When there are no clouds, most of the incoming solar radiation reaches the surface, causing it to warm up. However, when there are clouds, they reflect some of the incoming solar radiation back into space, reducing the amount of shortwave radiation that reaches the Earth's surface. The amount of shortwave radiation that is reflected by clouds depends on the cloud fraction, as a higher cloud fraction means more incoming solar radiation is reflected back into space.

The formulation cloud fraction options in WRF and MPAS
WRF
1 |
|
MPAS
- core_atmosphere/Registry.xml
1
2
3
4<nml_option name="config_radt_cld_scheme" type="character" default_value="suite" in_defaults="false"
units="-"
description="configuration for calculation of horizontal cloud fraction"
possible_values="`suite',`cld_fraction',`cld_incidence'"/>

- core_atmosphere/physics/mpas_atmphys_driver_cloudiness.F
1 |
|

- call
calc_cldfraction
- call
cal_cldfra3
icloud=1/3


icloud=1
subroutine calc_cldfraction
(cldfrac,t_p,pres_p,qv,qc,qi,qs,its,ite)
- Murray, F. W., 1967: On the Computation of Saturation Vapor Pressure. J. Appl. Meteor. Climatol., 6, 203–204, https://doi.org/10.1175/1520-0450(1967)006<0203:OTCOSV>2.0.CO;2.
- Xu, Kuan-Man, and Randall, D A. 1996. "A semiempirical cloudiness parameterization for use in climate models". United States. https://doi.org/10.1175/1520-0469(1996)053<3084:ASCPFU>2.0.CO;2.
- Xu and Krueger (1991) further divided the total cloud amount into convective (\(C_c\)) and stratiform components (\(C_s\)) using the cloud mass flux deviation at a given level as the criterion.
icloud=3
call cal_cldfra3
( & cldfra = cldfrac_p , qv = qvrad_p , qc = qcrad_p , qi = qirad_p , & qs = qsrad_p , p = pres_hyd_p , t = t_p , rho = rho_p , & xland = xland_p , gridkm = dx_p , & ids = ids , ide = ide , jds = jds , jde = jde , kds = kds , kde = kde , & ims = ims , ime = ime , jms = jms , jme = jme , kms = kds , kme = kme , & its = its , ite = ite , jts = jts , jte = jte , kts = kts , kte = kte & )
!+---+-----------------------------------------------------------------+
!.. Cloud fraction scheme by G. Thompson (NCAR-RAL), not intended for
!.. combining with any cumulus or shallow cumulus parameterization
!.. scheme cloud fractions. This is intended as a stand-alone for
!.. cloud fraction and is relatively good at getting widespread stratus
!.. and stratoCu without caring whether any deep/shallow Cu param schemes
!.. is making sub-grid-spacing clouds/precip. Under the hood, this
!.. scheme follows Mocko and Cotton (1995) in applicaiton of the
!.. Sundqvist et al (1989) scheme but using a grid-scale dependent
!.. RH threshold, one each for land v. ocean points based on
!.. experiences with HWRF testing.
- using a grid-scale dependent RH threshold
- Mocko, David M., and William R. Cotton. "Evaluation of fractional cloudiness parameterizations for use in a mesoscale model." Journal of Atmospheric Sciences 52.16 (1995): 2884-2901.
- For purposes of examining the feasibility of diagnosing fractional cloudiness (FC), many different FC schemes readily found in the atmospheric science literature were evaluated.
- Sundqvist, Hilding, Erik Berge, and Jón Egill Kristjánsson. "Condensation and Cloud Parameterization Studies with a Mesoscale Numerical Weather Prediction Model", Monthly Weather Review 117, 8 (1989): 1641-1657, doi: https://doi.org/10.1175/1520-0493(1989)117<1641:CACPSW>2.0.CO;2
WRF & MPAS-A Support Forum
- Cloud fraction limit to 0.9 in module_mp_thompson_cldfra3 | Apr 23, 2024
- The routine
cal_cldfrac3
limits the maximum value of cloud fraction to 0.9 (see line 134). Is there a plausible reason for that, or is this just a mistype? - Ming Chen: Please see whether you can find information in the paper: hompson, Gregory, Paul R. Field, Roy M. Rasmussen, William D. Hall, 2008: Explicit Forecasts of Winter Precipitation Using an Improved Bulk Microphysics Scheme. Part II: Implementation of a New Snow Parameterization. Mon. Wea. Rev., 136, 5095–5115. doi:10.1175/2008MWR2387.1
- Ming Chen: I explore this issue a bit more. What I found is that,
- based on some NCEP-EMC tests, the icloud3 option made far too many clouds when compared to observations.
- I guess this could be the reason that
cal_cldfrac3
limits the maximum value of cloud fraction to 0.9. - However, I didn't find any publications that specifically address this issue.
- I believe you can tune the model behavior by modifying the maximum value of cloud fraction at line 134. Hope this is helpful for you.
- I also found in my experiments that this formulation overestimates the cloud fraction, which results in poor energy balance on the surface in the Amazon basin.
- When
cal_cldfrac3
limits the maximum value of cloud fraction from 0.9 to a Smaller values, WRF will overestimates the cloud fraction to a lesser extent ? - Ming Chen: This is what is expected. However, I have to say that it may be case-dependent. if your case still shows large overestimation, you may need to further reduce the maximum cldfra value.
- The routine
- cldfrac_tot_UPP is zero at the first time step | Dec 26, 2024
- Yes this is an expected behavior.
cldfrac_tot_UPP
is a diagnostic variable that is calculated based oncldfrc
. - At the initial time, both are set to zero.
- MPAS doesn't calculate cldfra in the first time step because it is based on other physical variables like qc,qi, rh etc. Some of these variables are not available at the beginning of model run. For this reason, I don't think it is practical to diagnose cldfra at the initial time.
- Yes this is an expected behavior.
- CLDFRA vs QCLOUD variables | Jan 6, 2024
CLDFRA
is calculated in radiation driver. Therefore, it is updated at the time of radiation calculation, which is determined by the namelist option radt. If you want to have this variable at every time step, you will need to set radt equal to time step. However, we won't recommend doing so because radiation schemes are computationally expensive.
References
- Alapaty, Kiran, et al. "Introducing subgrid‐scale cloud feedbacks to radiation for regional meteorological and climate modeling." Geophysical Research Letters 39.24 (2012).
- Pal, Jeremy & Small, Eric & Eltahir, Elfatih. (2000). Simulation of regional-scale water and energy budgets: Representation of subgrid cloud and precipitation processes within RegCM. Journal of Geophysical Research. 105. 10.1029/2000JD900415.