-
Notifications
You must be signed in to change notification settings - Fork 4
Description
We are attempting to use BOMEX observations/LES as a test case for Breeze (latest in this branch). The experimental design is from Siebesma et al. (2003). Briefly, these are 6-hour runs of marine shallow cumulus convection, with a well-mixed 500m-thick "dry" convective layer topped by a 1000m thick conditionally-unstable cloud layer. These clouds do not form in our Breeze run, and I'm not sure why.
Model setup
The model is forced with geostrophic winds, prescribed heat and vapor fluxes at the air-sea interface, and prescribed friction velocity. Other forcings include pressure gradient forcing for geostrophic balance, prescribed radiative cooling and drying profiles, as well as a subsidence forcing that introduces tendencies in u, v, pot. temp., and humidity.
Initial conditions:
The subsidence profile, and "radiative cooling" & "advective drying" forcings:
The tendency terms due to subsidence (as calculated at the first timestep):
These all look reasonable. The v tendency is not shown as it is zero at the first timestep since v=0. The subsidence leads to warming/drying as expected. I haven't shown the geostrophic forcing here, but since the wind is steady in time (outside of the actively-mixing lower layer) I'm confident that this is working as expected.
Some actual output
This is plane- and time-averaged output (time-averaging over hours 3-6) of: potential temperature; specific humidity (vapor); velocity; specific humidity (liquid).
Compared to the Siebesma et al paper:
- Our mixed layer (ML) is deeper
- We have no liquid water (i.e. no clouds)
- Our ML is too moist/cloud layer is too dry
- Velocity profiles are somewhat different, likely due to deeper ML/less mixing in cloud layer
Here is a movie:
bomex_xz.mp4
[Edit 21/07] As a quick check that the heat/vapor fluxes were doing the right thing, I removed the geostrophic forcing & velocity IC to run convection-only cases. Some relevant profiles here:
Why no clouds? Some ideas....
1. The problem setup isn't quite right
I have growing confidence in the problem setup based on the profiles above + the tendency terms which appear to be doing what they're supposed to do, according to descriptions in Siebesma et al 2003.
2. The thermodynamics isn't quite right
We know we can get liquid water (e.g. the free convection example), so that's something. I feel very ill-equipped to check the code, but am happy to try, or to run any tests we can think of!
3. The LES approach isn't appropriate
We have tried both implicit LES (using a WENO advection scheme) and an Anistotropic Minimum Dissipation (AMD) closure. AMD resulted in lots more mixing above the ML but did not help with clouds. It could be that neither of these approaches is appropriate for this coarse boundary layer setup.
[Edit 18/7] - Found a nice reference for implicit LES of clouds which indicates WENO for momentum/scalar advection is the best choice. I note that there is an eddy diffusivity model applied to the surface layer though which we could implement easily https://pmc.ncbi.nlm.nih.gov/articles/PMC5586241/
Some things to try/check
- Compare our turbulent flux profiles to Siebesma et al.
- Also compare them to the flux BC's we impose at the lower boundary
- Sensitivity to resolution. In theory, if the closure (or lack thereof) is having an unintended effect we should at least see some change to the soln as we change resolution. I have done this previously, but could repeat more carefully now that we are confident in the problem setup.
- ???