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 while reading namelist dynamics

YohanaVioleta

New member
Hi Everyone!
I just my issue actually concerns the running of WRF4.5, I cannot run real.exe, and I just check the rsl.error.0000 file, it said like this
------ ERROR while reading namelist dynamics ------
Maybe here?: dampcoef = 0.01, 0.01, 0.01,
Maybe here?: khdif = 0, 0, 0,
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 11575
ERRORS while reading one or more namelists from namelist.input.
-------------------------------------------
application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0
[unset]: write_line error; fd=-1 buf=:cmd=abort exitcode=1
:
system msg for write_line failure : Bad file descriptor

I already change the value, since it was actually 0,2, but the same error occurred.
I attached also the namelist.input file and the namelist.output and also the rsl.error.0000

I would be very thankful and grateful if someone can help me because this work is for my thesis.
Thank you in advance
 

Attachments

  • namelist.input
    4 KB · Views: 3
  • rsl.error.0000
    641 bytes · Views: 1
Hi,
It doesn't look like the error message is telling you the correct line that is problematic. I believe that issue has been corrected since V4.5. The issue is in the following namelist line:

Code:
zdamp      = 5000.,    5000.,   5000,.

After the setting for domain 3, you have a comma (,) and then a period (.). Those should be switched so that it reads:

Code:
zdamp       = 5000.,    5000.,   5000.,
 
Top