ESCOMP / CTSM

Community Terrestrial Systems Model (includes the Community Land Model of CESM)
http://www.cesm.ucar.edu/models/cesm2.0/land/
Other
302 stars 307 forks source link

Tuning of Leung_2024 dust emissions for clm6_0_cam7.0 #2732

Open ekluzek opened 2 weeks ago

ekluzek commented 2 weeks ago

@dmleung has tested some F cases with ctsm5.2.019 and found some issues that will need some tuning to give good results. He previously did some tuning for clm5_0_cam6.0 for the ctsm5.2 surface datasets, and will need to do more for cam6_0_cam7.0. This is part of the normal tuning exercise that needs to be done for all of CESM3.0.

@dmleung is working on this now and will get us some changes to bring in as soon as possible. Hopefully, this won't need to be done multiple times as the model should be stabilizing as we move forward. However, as other tuning changes happen in both CAM and CTSM it may need to be done more than once. Mostly this is work that @dmleung will do and ask us to bring in when ready. Code changes for this are likely to be small.

dmleung commented 2 weeks ago

I tried to use the ctsm5.2.019/cam6_3_137 tag to run an FLTHIST case for year 1991 and saw some very high annual mean dust AOD values (>1) over Argentina (Patagonia) and Australia. I tried to look into this issue and understand what were changed to cause these blowups, since we did not see them in older tests. The older test used the ctsm5.2.006/cam6_3_160 tag to run a FHIST case for year 1991.

I am showing a side-by-side comparison of the two cases/tests. See the two CAM history variables below, upper is dust AOD and lower is dust emission (plotted in log scale).

Screenshot 2024-08-30 at 4 46 52 PM

Since CTSM dust emission is dependent on meteorological and land-surface fields, I looked into the differences between these fields in the two model tags. My primary conclusion is that the main cause is the enhanced friction velocity (or ustar) over the two countries that made dust emissions explode. See the two CTSM variables below, upper is FV from CTSM and lower is the modified friction velocity used in dust emission module. FV has some visible increases over places like Argentina, Australia, and the US. Increases are also seen over other places like boreal forests, but it is less relevant to dust simulations. Meanwhile, FV has some decreases over northwestern China, causing further low bias of dust over China.

Screenshot 2024-08-30 at 4 52 29 PM

There could be various reasons that caused FV changes from one model version to another. But the major concern here is more about tuning. An increase in annual mean FV by 0.1 m/s could easily cause a > 10 time increase in dust emission. This level of FV change might be not so important for other land processes, but dust emission is very sensitive to FV. Since future model physics will keep evolving and met fields will keep changing, we might not want such strong sensitivity of dust emission susceptible to all these changes in physics and met fields. We might prefer a more robust dust emission scheme that gives satisfactory results given different physics, grid, input datasets and model tags. So, my current idea is to reduce dust emission sensitivity to met field changes in the CTSM dust module.

dmleung commented 2 weeks ago

For the empirical tuning purpose, we might want to reduce dust emission sensitivity to input meteorology. In the Zender_2003 emission scheme, dust emission ∝ WND_FRC_SOIL^3 approximately. In Leung_2023 scheme (built upon Kok_2014), dust emission ∝ WND_FRC_SOIL^(2+frag_expt), where frag_expt is the fragmentation exponent that increases with soil moisture. frag_expt is < 1 over major desert but could go to > 5 over marginal/semiarid sources like Argentina.

Leung et al. (2023) has a discussion on globally capping frag_expt at 3-5 to limit the dust emission sensitivity to ustar. Since the frag_expt dependence on soil moisture was a fitting using local measurement data by Kok_2014, it could be relaxed and kept at higher values for high-resolution models that resolves local meteorology. But, it might be better capped at low values for 100km-resolution models.


The first proposed change is to cap frag_expt at smaller values in the dust emission module. Leung_2023 in ctsm5.2.006 caps frag_expt at 5, which works well in that tag. But it can be a smaller number, such as 1. This forces dust emission ∝ WND_FRC_SOIL^3 at most over marginal/semiarid sources, while changing little over major deserts. See the dust emission results below by capping frag_expt at frag_expt_thr = 5 (default) versus capping frag_expt at 1, both using the ctsm5.2.019 tag and FLTHIST compset. The results look acceptable to me.

image

For now I propose that we use frag_expt_thr = 1 for native resolution grids. We might want to make it a namelist variable and become resolution dependent (so users could elect to relax it to 2 or 3 for regional refinement), but this could be more optional. frag_expt_thr is more of a regional tuning parameter since lowering it tends to suppress dust from secondary/marginal sources more than from major deserts (vice versa, increasing it promotes more dust from secondary sources). Using frag_expt_thr = 1 could drastically suppress dust emission sensitivity to winds/ustar over marginal/semiarid dust sources and make the scheme more robust against changing model tags, so this seems a good solution for me. I am still exploring other possible solutions, since I think we could do better in the R.H.S. figure (e.g., suppress Australian dust further).

dmleung commented 2 weeks ago

I'm tagging @tilmes to follow the updates on this issue.