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 not running

mhafsah

New member
When I run real.exe, it gives me
starting wrf task 0 of 1
then it stops. the rsl.out and rsl.error pasted here. namelist.input and namelist.wps attached.

rsl.out:
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 5874
check comm_start, nest_pes_x, nest_pes_y settings in namelist for comm 1
-------------------------------------------
taskid: 0 hostname: derecho6

rsl.error:
taskid: 0 hostname: derecho6
module_io_quilt_old.F 2931 T
-------------- FATAL CALLED ---------------
FATAL CALLED FROM FILE: <stdin> LINE: 5874
check comm_start, nest_pes_x, nest_pes_y settings in namelist for comm 1
-------------------------------------------
MPICH ERROR [Rank 0] [job id ] [Tue Apr 23 13:44:13 2024] [derecho6] - Abort(1) (rank 0 in comm 0): application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0
 

Attachments

  • namelist.input
    5.9 KB · Views: 4
  • namelist.wps
    981 bytes · Views: 3
Your namelist.wps and namelist.input are not consistent. In WPS< you have the options below:
Code:
i_parent_start    =   1, 115,   170,
 j_parent_start    =   1, 100,   230,
 e_we              =  400,  598,  670,
 e_sn              =  200,  526,  718,
 geog_data_res     = '5m','2m','3s',
 dx = 18000,
 dy = 18000,

In your namelist.input, you set
Code:
e_we                                = 196,    466,
e_sn                                = 122,    259,
dx                                  = 6000, 2000,,

Please modify these options.
 
Sorry.. attached the wrong file. I used this file (attached here) for this run. if I do ./real.exe it stops as I mentioned in the first message.
 

Attachments

  • namelist.wps
    981 bytes · Views: 3
Please remove the domain decompositions from namelist.input files:
nproc_x = 8,
nproc_y = 8,

If there are not any other inconsistencies, it should fix the issue.

From another forum post:
"It is recommended to turn off nproc_x and nproc_y because WRF will automatically decompose the domain.
If you want to manually decompose, then nproc_x * nproc_y must be equal to the total number of processors you use to run the case."
 
Please remove the domain decompositions from namelist.input files:
nproc_x = 8,
nproc_y = 8,

If there are not any other inconsistencies, it should fix the issue.

From another forum post:
"It is recommended to turn off nproc_x and nproc_y because WRF will automatically decompose the domain.
If you want to manually decompose, then nproc_x * nproc_y must be equal to the total number of processors you use to run the case."
solved the problem of not running.
 
Top