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

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.,
 
Back
Top