Ignore:
Timestamp:
Nov 28, 2025, 5:34:54 PM (2 weeks ago)
Author:
Sebastien Nguyen
Message:

rephase LMDZISO with 5864 version of phylmd + bug fixes in physiq_mod + other bugs in isoverif sections. Code now compiles and runs with -debug -isotopes true -isoverif. There are still isoverif error messages for Dexcess getting greater than 1000 on some points at some moments.

File:
1 edited

Legend:

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

    r5813 r5894  
    157157      REAL, SAVE, ALLOCATABLE :: d_xt_con(:,:,:)
    158158      !$OMP THREADPRIVATE( d_xt_con)
     159      REAL, SAVE, ALLOCATABLE :: d_xt_con_zmasse(:,:,:)
     160      !$OMP THREADPRIVATE( d_xt_con_zmasse)
    159161      REAL, SAVE, ALLOCATABLE :: d_xt_wake(:,:,:)
    160162      !$OMP THREADPRIVATE( d_xt_wake)
     
    925927      allocate(d_xtbs_dyn(ntraciso,klon,klev))
    926928      allocate(d_xt_con(ntraciso,klon,klev))
     929      allocate(d_xt_con_zmasse(ntraciso,klon,klev))
    927930      allocate(d_xt_wake(ntraciso,klon,klev))
    928931      allocate(d_xt_lsc(ntraciso,klon,klev))
     
    12611264
    12621265      ALLOCATE (dyntropo(klon))
     1266      dyntropo(:)=0.0 ! cas read_climoz<=0 : dyntropo n'a pas de valeur
    12631267      ALLOCATE (p_tropopause(klon))
    12641268      ALLOCATE (z_tropopause(klon))
     
    14021406      deallocate(d_xt_dyn,d_xtl_dyn,d_xts_dyn,d_xtbs_dyn)
    14031407      deallocate(d_xt_con)
     1408      deallocate(d_xt_con_zmasse)
    14041409      deallocate(d_xt_wake)
    14051410      deallocate(d_xt_lsc)
Note: See TracChangeset for help on using the changeset viewer.