I found the same problem and it is solved after modifying line 5550 in the module_sf_ruclsm.F<br><br>MMINLU has changed at some point from &#39;MODIS&#39; to &#39;MODIFIED_IGBP_MODIS_NOAHH&#39; and now the IF command fails when comparing<br>
<br>      elseif(mminlu == &#39;MODIS&#39;) then<br><br>So it has to change to <br><br>      elseif(mminlu(1:4) == &#39;MODI&#39;) then<br><br><br>After changing this I just compiled <br><br>./compile em_real<br><br>and then wrf.exe runs and finds the proper MODI-RUC table.<br>
<br>cheers<br>