Ignore:
Timestamp:
Jun 11, 2009, 4:18:47 PM (15 years ago)
Author:
jghattas
Message:
  • Ajout de l'interpolation vertical pour les nouveaux fichiers de forcage des aerosols. Utilisant les anciennes fichiers de SO4 pas d'interpolation possible. Convergence numerique avec la version precedente en utilisant les anciens fichiers des SO4. aerosol_optic.F90 change du nom pour readaerosol_optic.F90 (lecture d'aerosol + optic) Les fichiers de forcage aerosol doit maintenant avoir le suffix .nc.
  • Correction des bugs pour inca et certain diagnostiques optionelles de radlwsw.
  • Ajout de test pour le choix advection schema.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/LMDZ4-dev/libf/dyn3d/infotrac.F90

    r1114 r1179  
     1! $Id$
     2!
    13MODULE infotrac
    24
     
    299301    END DO
    300302
     303!
     304! Test for advection schema.
     305! This version of LMDZ only garantees iadv=10 and iadv=14 (14 only for water vapour) .
     306!
     307    DO iq=1,nqtot
     308       IF (iadv(iq)/=10 .AND. iadv(iq)/=14) THEN
     309          WRITE(lunout,*)'STOP : The option iadv=',iadv(iq),' is not tested in this version of LMDZ'
     310          CALL abort_gcm('infotrac_init','In this version only iadv=10 and iadv=14 is tested!',1)
     311       ELSE IF (iadv(iq)==14 .AND. iq/=1) THEN
     312          WRITE(lunout,*)'STOP : The option iadv=',iadv(iq),' is not tested in this version of LMDZ'
     313          CALL abort_gcm('infotrac_init','In this version iadv=14 is only permitted for water vapour!',1)
     314       END IF
     315    END DO
     316
    301317!-----------------------------------------------------------------------
    302318! Finalize :
Note: See TracChangeset for help on using the changeset viewer.