Error Code 1002 – in #10: INT2LM

in #10: INT2LM

<p> The namelist looks fine at a first glance. It seems as if the line <code> yinput_model='CM', </code> is not read properly. <br/> Can you copy the line <code> PRINT *, lgme2lm, lgsf2lm, lgsm2lm, lec2lm, lum2lm, lhir2lm </code> near the line 5136 so that it looks like below, compile, run the program again and post the error message? </p> <p> <pre> IF (.NOT. (llm2lm .OR. lcm2lm .OR. licon2lm)) THEN IF (<acronym title="yinext_form_read"><span class="caps">TRIM</span></acronym> 'ncdf') THEN PRINT *,' ERROR *** yinext_form_read ' PRINT *,' netCDF format not implemented for the chosen input model' PRINT *, lgme2lm, lgsf2lm, lgsm2lm, lec2lm, lum2lm, lhir2lm ierrstat = 1002 ENDIF IF (TRIM(yin_form_read) ‘ncdf’) THEN <span class="caps">PRINT</span> *,’ <span class="caps">ERROR</span> *** yin_form_read ‘ <span class="caps">PRINT</span> *,’ netCDF format not implemented for the chosen input model‘ ierrstat = 1002 ENDIF <span class="caps">ENDIF</span></pre> </p> <p> </p>

  @burkhardtrockel in #7f8c895

<p> The namelist looks fine at a first glance. It seems as if the line <code> yinput_model='CM', </code> is not read properly. <br/> Can you copy the line <code> PRINT *, lgme2lm, lgsf2lm, lgsm2lm, lec2lm, lum2lm, lhir2lm </code> near the line 5136 so that it looks like below, compile, run the program again and post the error message? </p> <p> <pre> IF (.NOT. (llm2lm .OR. lcm2lm .OR. licon2lm)) THEN IF (<acronym title="yinext_form_read"><span class="caps">TRIM</span></acronym> 'ncdf') THEN PRINT *,' ERROR *** yinext_form_read ' PRINT *,' netCDF format not implemented for the chosen input model' PRINT *, lgme2lm, lgsf2lm, lgsm2lm, lec2lm, lum2lm, lhir2lm ierrstat = 1002 ENDIF IF (TRIM(yin_form_read) ‘ncdf’) THEN <span class="caps">PRINT</span> *,’ <span class="caps">ERROR</span> *** yin_form_read ‘ <span class="caps">PRINT</span> *,’ netCDF format not implemented for the chosen input model‘ ierrstat = 1002 ENDIF <span class="caps">ENDIF</span></pre> </p> <p> </p>

The namelist looks fine at a first glance. It seems as if the line yinput_model='CM', is not read properly.
Can you copy the line PRINT *, lgme2lm, lgsf2lm, lgsm2lm, lec2lm, lum2lm, lhir2lm near the line 5136 so that it looks like below, compile, run the program again and post the error message?

  IF (.NOT. (llm2lm .OR. lcm2lm .OR. licon2lm)) THEN
    IF (TRIM  'ncdf') THEN
      PRINT *,' ERROR    *** yinext_form_read '
      PRINT *,'       netCDF format not implemented for the chosen input model'
      PRINT *, lgme2lm, lgsf2lm, lgsm2lm, lec2lm, lum2lm, lhir2lm
      ierrstat = 1002
    ENDIF
    IF (TRIM(yin_form_read)  ‘ncdf’) THEN
      PRINT *,’ ERROR    *** yin_form_read ‘
      PRINT *,’       netCDF format not implemented for the chosen input model‘
     ierrstat = 1002
    ENDIF
  ENDIF