Ignore:
Timestamp:
Sep 17, 2025, 10:23:08 AM (2 months ago)
Author:
musat
Message:

Ajout iflag_tropo pour choisir le calcul de la tropopause
pour l'ozone:
iflag_tropo=0 : tropopause "dynamique"=> valeur par defaut pour

retrocompatibilite

iflag_tropo=1 : tropopause "lapse-rate" comme pour les aerosols

stratospheriques ==> valeur recommandee

Ionela Musat

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/phys_local_var_mod.F90

    r5776 r5813  
    669669#endif
    670670
    671       REAL, ALLOCATABLE, SAVE, DIMENSION(:) :: p_tropopause, z_tropopause, t_tropopause
    672 !$OMP THREADPRIVATE(p_tropopause, z_tropopause, t_tropopause)
     671      REAL, ALLOCATABLE, SAVE, DIMENSION(:) :: dyntropo, p_tropopause, z_tropopause, t_tropopause
     672!$OMP THREADPRIVATE(dyntropo, p_tropopause, z_tropopause, t_tropopause)
    673673
    674674      INTEGER,ALLOCATABLE,SAVE,DIMENSION(:,:) :: zn2mout
     
    12601260#endif
    12611261
     1262      ALLOCATE (dyntropo(klon))
    12621263      ALLOCATE (p_tropopause(klon))
    12631264      ALLOCATE (z_tropopause(klon))
     
    16891690#endif
    16901691
     1692      DEALLOCATE (dyntropo)
    16911693      DEALLOCATE (p_tropopause)
    16921694      DEALLOCATE (z_tropopause)
Note: See TracChangeset for help on using the changeset viewer.