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

FATAL CALLED invalid parent id for domain 2

lmqar

New member
Greetings everyone

I'd like some help with a problem i'm facing while running real.exe: when i do input the command "./real.exe" i get the message:

-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 5805
invalid parent id for domain 2

Thanks in advance
 

Attachments

  • namelist.input
    3.8 KB · Views: 11
  • rsl.out.0000
    208 bytes · Views: 0
  • rsl.error.0000
    344 bytes · Views: 3
Hi,
The error doesn't make much sense, but I believe the issue is that you have the following line set in your namelist.input file:

Code:
num_metgrid_levels                  = 34, 34, 34

That namelist parameter only expects a single entry, and is not domain-dependent. Try resetting it to the following to see if that helps.

Code:
num_metgrid_levels                  = 34
 
Top