icloud and mminlu error when running real.exe

jpremana

New member
I am getting an error due to icloud input, as shown below. I am using WRFv4.7.1, not sure what is the issue. I am running wrf on a mac system. i removed mminlu once, then also icloud came as an issue. could you please help me resolve this issue?


./module_io_quilt_old.F 2931 T


------ ERROR while reading namelist physics ------


Maybe here?: icloud = 1,


Maybe here?: mminlu = 'NLCD40'


-------------- FATAL CALLED ---------------


FATAL CALLED FROM FILE: <stdin> LINE: 11762


ERRORS while reading one or more namelists from namelist.input.


-------------------------------------------


Abort(1) on node 0 (rank 0 in comm 0): application called MPI_Abort(MPI_COMM_WORLD, 1) - process 0
 

Attachments

Last edited:
Hi, the issue is that "mminlu" is not a namelist parameter, so that line needs to be removed. If you run into this issue in the future, check in WRF/Registry/Registry.EM_COMMON to make sure the variable is assigned as a namelist variable. If it is, it will be listed in the variable's line in the registry file. For e.g., "icloud" is an approved namelist variable:

Code:
rconfig   integer ICLOUD      namelist,physics  1    1   irh    "ICLOUD"          ""      ""
 
Back
Top