Ignore:
Timestamp:
Sep 16, 2015, 2:50:44 PM (9 years ago)
Author:
acozic
Message:

several correction to use LMDZ coupled with INCA
1- add an "use" in gcm to define "klon_glo" variable
2- correct an error on a test in infotrac
3- add parents to inca's tracer in infotrac
4- change calendar name for "leap calendar" in wxios to fit with rev 2229 on gcm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/dyn3d_common/infotrac.F90

    r2270 r2362  
    196196          nqo=2
    197197       ENDIF
    198        IF (nqo /= 2 .OR. nqo /= 3 ) THEN
     198       IF (nqo /= 2 .AND. nqo /= 3 ) THEN
    199199          WRITE(lunout,*) trim(modname),': nqo=',nqo, ' is not allowded. Only 2 or 3 water phases allowed'
    200200          CALL abort_gcm('infotrac_init','Bad number of water phases',1)
     
    384384#endif
    385385       tnom_0(1)='H2Ov'
     386       tnom_transp(1) = 'air'
    386387       tnom_0(2)='H2Ol'
    387        IF (nqo == 3) tnom_0(3)='H2Oi'     !! jyg
     388       tnom_transp(2) = 'air'
     389       IF (nqo == 3) then
     390          tnom_0(3)='H2Oi'     !! jyg
     391          tnom_transp(3) = 'air'
     392       endif
    388393
    389394!jyg<
    390395       DO iq = nqo+1, nqtrue
    391396          tnom_0(iq)=solsym(iq-nqo)
     397          tnom_transp(iq) = 'air'
    392398       END DO
    393399!!       DO iq =3,nqtrue
Note: See TracChangeset for help on using the changeset viewer.