error in ./real.exe

yashu-1417

New member
iirs@iirs-HP-ProDesk-600-G2-MT:~/BUILD_WRF/WRF/run$ ./real.exe
starting wrf task 0 of 1
--------------------------------------------------------------------------
MPI_ABORT was invoked on rank 0 in communicator MPI_COMM_WORLD
with errorcode 1.

NOTE: invoking MPI_ABORT causes Open MPI to kill all MPI processes.
You may or may not see output from other processes, depending on
exactly when Open MPI kills them.
--------------------------------------------------------------------------
this was the error i am causing when i am trying to run real.exe ,i have generated geo-em,met-em,ungrib files by running metgrid.exe,geogrid,exe,ungrib.exe ,i want to get u,v i am using era-5 data
 

Attachments

Your namelist.input is not correct. Below are just a few examples:

Code:
&domains
 dx                     = 30000,
 dy                     = 10000,
&dynamics
  rk_ord                 = 3, 
  time_step              = 30,

Please take the namelist file located at /WRF/test/em_real/namelist.input as an example, and modify this file based on your case.

Probably you can also take a look at the document here, which describes in detail how to correctly set namelist options.
 
There is no suite 'GLOBAL' for WRF. The option below is wrong:

physics_suite = 'GLOBAL'

Please delete this option.

Some options are missing, for example , num_soil_layers is an important option and its value must be consistent with the land surface scheme you choose.
 
Back
Top