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

Error in User's Guide

Good day all,

In "Namelist Variables" section of the User's Guide, under &diags section, there is this Note:

To output fields on pressure levels, the following variables must also be set. For example,
auxhist23_outname='wrfpress_d<domain>_<date>' (modify output stream and file name accordingly)
io_form_auxhist23=2 (2=netCDF file format)
auxhist23_interval=180,180 (interval in minutes for each domain)
frames_per_auxhist23=1,1 (number of files output per interval period)

However, all those parameters are "22", not "23". So:
auxhist22_outname
io_form_auxhist22
auxhist22_interval
frames_per_auxhist22

Have a nice day,
Ivan
 
Hi Ivan,
Per the code in WRF/share/module_check_a_mundo.F, for pressure level diagnostic output, the stream should be 23. Can you let me know what information you are using that tells you that it should be 22, instead of 23? Thanks!
 
Good day,

If you run the model with '23s', it crashes immediatelly, telling you that those must be '22s' :)

Take a look; with these settings:

Code:
 auxhist23_outname             = 'agl_d<domain>_<date>',
 io_form_auxhist23             = 2,
 auxhist23_interval            = 360, 15,
 frames_per_auxhist23          = 1, 1,

...

 &diags
 z_lev_diags                   = 1,
 num_z_levels                  = 9,
 z_levels                      = -60, -80, -100, -120, -140, -160, -180, -200, -220
 solar_diagnostics             = 1,
 /


result is this:

Code:
taskid: 0 hostname: wrf04
 module_io_quilt_old.F        2931 T
 Ntasks in X            8 , ntasks in Y           16
  Domain # 1: dx =  5400.000 m
  Domain # 2: dx =  1800.000 m
--- WARNING: the AFWA diagnostics option knows only about the following MP schemes:
--- GSFCGCESCHEME, ETAMPNEW, THOMPSON, WSM5SCHEME, WSM6SCHEME, MORR_TWO_MOMENT, MORR_TM_AERO, WDM6SCHEME
--- ERROR: z_lev_diags requires auxhist22 file information
--- ERROR: provide: auxhist22_interval (max_dom) and io_form_auxhist22
  --- Add supporting IO for stream 22 for height-level diags
--- ERROR: z_lev_diags requires auxhist22 file information
--- ERROR: provide: auxhist22_interval (max_dom) and io_form_auxhist22
  --- Add supporting IO for stream 22 for height-level diags
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE:  <stdin>  LINE:    2821
NOTE:       2 namelist settings are wrong. Please check and reset these options
-------------------------------------------


If I change all those four to 22, everything works as intended:
Code:
 auxhist22_outname             = 'agl_d<domain>_<date>',
 io_form_auxhist22             = 2,
 auxhist22_interval            = 360, 15,
 frames_per_auxhist22          = 1, 1,

Ivan
 
Top