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

real.exe error invalid parent id for domain 2

XYF

New member
Hi guys.

Whenever I run wrf.exe it gets this error:

taskid: 0 hostname: n0020
module_io_quilt_old.F 2931 T
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 5578
invalid parent id for domain 2
-------------------------------------------
Thanks!
 

Attachments

  • namelist.input
    2.8 KB · Views: 7
  • namelist.wps
    965 bytes · Views: 4
  • rsl.error.0000
    242 bytes · Views: 3
  • rsl.out.0000
    205 bytes · Views: 1
Hi,
Typically this error doesn't mean what it says, and I'm not sure why that is. It usually has nothing to do with the parent ID. We usually find that there is some other namelist.input error. I didn't look at every single variable, but I do see that this one (time_step) that has an incorrect setting:

Code:
time_step                      = 7.5,

The setting for that variable must be an integer (whole number). If you want to use fractional time steps, you can use these two variables to do so:
Code:
time_step_fract_num            = 0,
time_step_fract_den            = 1,
 
Top