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

There was a problem when running real.exe.

XHY

New member
Hi, everyone. I received an error while running real.exe regarding "invalid parent id for domain 2"
[xiahy@mgt run]$ tail -f rsl.out.0000
taskid: 0 hostname: d03n02
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 5552
invalid parent id for domain 2

Dear friends, how can I solve this problem?
 

Attachments

  • namelist.input.txt
    4 KB · Views: 2
  • wrf.slurm.txt
    2.8 KB · Views: 0
  • namelist.wps.txt
    1.3 KB · Views: 2
The grid settings in your namelist.wps and namelist.input are different. In WPS, you have:

Code:
 i_parent_start    =   1,  10,
 j_parent_start    =   1,  10,
 e_we              = 100, 244,
 e_sn              =  75, 166,

In WRF, you have:
Code:
 e_we                                = 100,   308,
 e_sn                                = 56,    180,

Note that grid numbers and starting points must be same in namelist.wps and namelist.input. Details about how to run a nesting case can be found at

Please follow the instructions to correctly set those namelist options, then try again.
 
  • Wow
Reactions: XHY
Top