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

output_diagnostics and nwp_diagnostics vars empty

nickca

New member
Hi WRF community,
Im making tests with WRFv4.4 to write wrfout files with diagnostics outputs variables but this variables have no data (all vars have value 0). Is necessary to modify registry, or is another problem?

namelist.input /registry attached
 

Attachments

  • Registry.EM_COMMON.txt
    418.8 KB · Views: 5
  • namelist_input.txt
    5.7 KB · Views: 16
Please change your namelist option from:
auxhist3_outname = wrfout_diag_icond<domain>_<date>,
to:
auxhist3_outname = 'wrfxtrm_d<domain>_<date>'

Then try again.
 
I related your case and the files wrfout_diag01* are successfully generated with reasonable results.
Please copy the following piece of namelist options and retry.
Code:
 nwp_diagnostics                     = 1

 output_diagnostics                  = 1

 auxhist3_outname                    = 'wrfout_diag<domain>_<date>',

 io_form_auxhist3                    = 2

 auxhist3_interval                   = 60

 frames_per_auxhist3                 = 1
 
Thanks so much for your assistance. Now everithing works fine. It was probably a stupid error with commas or ' ' in name.
 
Top