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 'MODIS' to 'MODIFIED_IGBP_MODIS_NOAHH' and now the IF command fails when comparing<br>
<br> elseif(mminlu == 'MODIS') then<br><br>So it has to change to <br><br> elseif(mminlu(1:4) == 'MODI') 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>