I am running ACCESS-rAM3 for simulating the extreme precipitation events. Could you please let me know where the definitions of low, mid, and high level cloud are implemented in ACCESS-rAM3? Specifically, I am looking for the model levels or vertical thresholds or pressure levels used for these diagnostics. Could you point me to the relevant source file or documentation?
Hi @cbengel, I don’t know if COSP matches the low/mid/high cloud levels. I think it would be safest to assume it doesn’t for now.
The answer is probably inside the sub-grid cloud scheme code. I’ve just been removed overnight from the Met Office github accounts because the Microsoft Met Office recertification link wouldn’t work for me (thanks Microsoft…) - which meant I couldn’t re certify my access by yesterday’s deadline, so my Met Office account has been removed from everything But I think I have some local code somewhere. Do you know off the top of your head if rAM3 uses PC2? (I can fire up a suite and check if you don’t know).
@Leena would you share the science question you’re trying to answer with these sub-grid cloud amounts? There might be a way to use other model output to diagnose the same information but with better provenance.
@bethanwhite , We are comparing sub-hourly extreme precipitation simulations from multiple models. To ensure a fair and physically consistent comparison, we need to know how ACCESS-RAM3 defines low-, medium-, and high-level cloud (i.e., the pressure, height, or model-level thresholds), so that equivalent cloud layers can be computed from other models (eg WRF).
@Leena why don’t you use the 3D total cloud field (add liquid cloud mixing ratio and ice cloud mixing ratios), define a threshold in g/kg for ‘cloud’ (e.g. 0.1 g/kg for a cloud that is likely to be precipitating), and then you have a 3D mask for cloud that you can use to define your own height/pressure-level analysis.
This will make things much more consistent with the precipitation analysis because the cloud mixing ratio is calculated by the microphysics scheme (== ‘large scale precipitation scheme’ in the UM), which is also where the precipitation is calculated.
The cloud fractions / amounts are sub-grid fractions calculated by a different physics parameterisation (the cloud scheme) to account for sub-grid cloud fraction variability. It’s an important interface to the radiation scheme, but for resolved precipitation analysis like you are doing, I would use the full cloud mixing ratio fields that are calculated in the microphysics scheme.
Also, I’m pretty sure that WRF doesn’t have a sub-grid cloud fraction scheme in the way that the UM does, so you won’t have the equivalent information from WRF.
@cbengel just to tie up some loose ends for anyone whose Hive search for the rAM3 cloud scheme brings up this thread in the future:
– rAM3 uses the bimodal sub-grid cloud scheme.
If you just use the GUI (or look in /app/um/rose-app.conf for the value of i_cloud_vn) it appears to be set to the Smith scheme.
But actually the ral3p3 optional conf overrides this and sets it to the bimodal scheme.
And to complete the loose ends, I have had a trawl through the UM code and found out where these levels are set.
They’re set inside:/src/control/top_level/cderived_mod.F90 in an array called h_split, defined as heights and then converted to model levels by the model when they are used:
“The ranges are determined by heights held in array h_split by comparison with heights of model levels (above surface) in r_ref_theta.”
This height-model level comparison and subsequent calculation of cloud amounts in these specified levels is done in /src/atmosphere/large_scale_cloud/diagnostics_lscld.F90.
They are given as lower / upper bounds for each level type, i.e. low cloud is defined between [h_split(1),h_split(2)], medium cloud is defined between [h_split(2),h_split(3)] and high cloud between [h_split(3),h_split(4)].
( ==> in theory a user could change these definitions, if required).
But my advice for the science question being addressed is to use the 3D cloud field out of the microphysics scheme to use for resolved precipitation analysis, especially across multiple models!
Thanks @bethanwhite.
TO add to that, VERY LOW CLOUD amount is anything below 1000mb.
I agree though that your original advice sounds best, but it will affect the amount of data being written out for @Leena’s experiments. Things to balance out.