Ignore:
Timestamp:
Nov 5, 2018, 3:24:59 PM (6 years ago)
Author:
Laurent Fairhead
Message:

Undoing merge with trunk (r3356) to properly register Yann's latest modifications

Location:
LMDZ6/branches/DYNAMICO-conv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/DYNAMICO-conv

  • LMDZ6/branches/DYNAMICO-conv/libf/phylmd/phys_output_var_mod.F90

    r3356 r3411  
    1414  REAL, SAVE, ALLOCATABLE :: snow_o(:), zfra_o(:)
    1515  !$OMP THREADPRIVATE(snow_o, zfra_o)
    16   REAL, SAVE, ALLOCATABLE :: sza_o(:) ! solar zenithal angle
    17   !$OMP THREADPRIVATE(sza_o)
    1816  INTEGER, SAVE, ALLOCATABLE ::  itau_con(:)       ! Nombre de pas ou rflag <= 1
    1917  !$OMP THREADPRIVATE(itau_con)
     
    8886
    8987  ! swaero_diag : flag indicates if it is necessary to do calculation for some aerosol diagnostics
    90   ! swaerofree_diag : flag indicates if it is necessary to do calculation for some aerosol diagnostics
    9188  ! dryaod_diag : flag indicates if it is necessary to do calculation for some aerosol diagnostics
    9289  !--OB: this needs to be set to TRUE by default and changed back to FALSE after first radiation call
    9390  !--    and corrected back to TRUE based on output requests
    94   LOGICAL, SAVE                                :: swaerofree_diag=.TRUE.
    9591  LOGICAL, SAVE                                :: swaero_diag=.TRUE.
    9692  LOGICAL, SAVE                                :: dryaod_diag=.TRUE.
    97   !$OMP THREADPRIVATE(swaerofree_diag, swaero_diag, dryaod_diag)
     93  !$OMP THREADPRIVATE(swaero_diag, dryaod_diag)
    9894  ! ok_4xCO2atm : flag indicates if it is necessary to do a second call of
    9995  ! radiation code with a 4xCO2 or another different GES to assess SW/LW
     
    10298  !--    changed back to FALSE after first radiation call and corrected back to TRUE
    10399  !--    based on output requests
    104   LOGICAL, SAVE                                :: ok_4xCO2atm=.TRUE.
     100  LOGICAL, SAVE                                :: ok_4xCO2atm=.FALSE.
    105101  !$OMP THREADPRIVATE(ok_4xCO2atm)
    106102
     
    146142
    147143    allocate(snow_o(klon), zfra_o(klon))
    148     allocate(sza_o(klon) )
    149144    allocate(itau_con(klon))
    150145    allocate(sens_prec_liq_o(klon,2))
     
    201196
    202197    deallocate(snow_o,zfra_o,itau_con)
    203     deallocate(sza_o)
    204198    deallocate (bils_ec,bils_ech,bils_tke,bils_diss,bils_kinetic,bils_enthalp,bils_latent)
    205199    deallocate (d_qw_col, d_ql_col, d_qs_col, d_qt_col, d_ek_col, d_h_dair_col &
Note: See TracChangeset for help on using the changeset viewer.