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 V4.3ERRORS while reading one or more namelists from namelist.input

@feifeiyu1225,
In the &physics section of your namelist, you have the following:

Code:
 surface_input_source    = 1,1,1

That particular variable only allows for a single entry, so you just need to change it to:

Code:
 surface_input_source      = 1

In the future, if you ever get this error, you can look in the WRF/Registry/Registry.EM_COMMON file, then look up the variables in the namelist record for which the error reports the issue. Variables that allow multiple entries (per domain) will be labeled with "max_dom." Otherwise, only a single entry is allowed.
 
Top