Hi,
The error message you see is:
Code:
------ ERROR while reading namelist physics --------
Maybe here?: &dynamics
Maybe here?: hybrid_opt = 2,
----------------------------------------------------
Often, even if the error log mentions two lines from your namelist, the error can actually come from a line above those. I think in this case, the line giving the error is
The expected value here is an integer, so you need to change this to fractional_seaice = 0.
I see numerous other issues with the namelist setup:
1) Your domains are entirely too small. Each domain should not be smaller than 100x100 grid spaces. See
Why domains should be at least 100x100 grid spaces.
Code:
e_we = 29, 55, 118,
e_sn = 25, 43, 85,
2)
What is the resolution of your input data? We recommend that the first domain be no more than about a 1:5 ratio to the input data.
3)
This physics suite option does not exist.
See Using Physics Suites from the WRF Users' Guide.
4)
All domain should use the same value for physics options, with the exception of cu_physics and the pbl, which can be turned off for some domains (e.g., they way you have cu_physics set up - cu_physics = 1.1.0 -- However, cu_physics does not need to be turned on for domains smaller than ~3km, so this would mean you should have it set to 0 for all domains)
5)
You need a value for each of the three domains.
6)
You need a value for each domain. We recommend this value be set to something similar to the integer value of the resolution of domain 01; however, it may be okay to keep it set to radt = 10, 10, 10
7)
You need a value for each of the three domains.
There may be others, but those are the ones that stuck out to me.
See the WPS Namelist Best Practices for some suggestions on setting up a reasonable domain, and you may also benefit from the
WRF Namelist Best Practices.