Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

Obukhov length in wrfout?

This post was from a previous version of the WRF&MPAS-A Support Forum. New replies have been disabled and if you have follow up questions related to this post, then please start a new thread from the forum home page.

optism

Member
Is there a way to compute the Obukhov length using wrfout variables. I see friction velocity as an output, but not turbulent temperature flux.

Thanks!
 
Hi,
If you output the variable RMOL, which will give the inverse of the Monin-Obukhov length, so you could calculate it from that.

This variable is not currently set to output in the history files. There are 2 ways to turn it on:
1) Modify the WRF/Registry/Registry.EM_COMMON file. In this line:
Code:
state    real  RMOL             ij      misc        1         -      r        "RMOL"                  "1./Monin Ob. Length"                      ""

You'll need to add an 'h' for 'history in the I/O column, so that it reads:
Code:
state    real  RMOL             ij      misc        1         -      rh        "RMOL"                  "1./Monin Ob. Length"                      ""

The downfall with this option is that you will have to clean, reconfigure, and recompile the model.

2) A simpler option may be to use the Runtime I/O option. You can read more about that here:
http://www2.mmm.ucar.edu/wrf/users/docs/user_guide_v4/v4.0/users_guide_chap5.html#runtimeio
 
Top