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

wrf.exe ERROR reading namelist namelist_quilt

Penguin

New member
Would someone do me a favor?
When I run wrf.exe ,"ERROR reading namelist namelist_quilt" is displayed.
I have attached my namelist.input and rsl.error.0000.
Thank you very much!
 

Attachments

  • namelist.input
    2 KB · Views: 4
  • rsl.error.0000
    300 bytes · Views: 2
I didn't see anything wrong in your namelist.input. The following section is totally fine.

&namelist_quilt

nio_tasks_per_group = 0,

nio_groups = 1,

If you delete this section, can you run the case?
 
I didn't see anything wrong in your namelist.input. The following section is totally fine.

&namelist_quilt

nio_tasks_per_group = 0,

nio_groups = 1,

If you delete this section, can you run the case?
I tried it and still get this error. Not sure if it's related, I'm running this program on the server. Attach my commit code.

#!/bin/bash
#SBATCH -J WRF
#SBATCH -p xahcnormal
#SBATCH -N 1
#SBATCH -n 64
#SBATCH --ntasks-per-node 64
#SBATCH -o log.%j
#SBATCH -e log.%j
#SBATCH --exclusive
srun ./wrf.exe
 
Top