Ignore:
Timestamp:
Dec 4, 2017, 5:19:33 PM (7 years ago)
Author:
Laurent Fairhead
Message:

Added sza, solar zenithal angle, to outputs for CMIP6 dataresquest

File:
1 edited

Legend:

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

    r3082 r3110  
    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)
    1618  INTEGER, SAVE, ALLOCATABLE ::  itau_con(:)       ! Nombre de pas ou rflag <= 1
    1719  !$OMP THREADPRIVATE(itau_con)
     
    144146
    145147    allocate(snow_o(klon), zfra_o(klon))
     148    allocate(sza_o(klon) )
    146149    allocate(itau_con(klon))
    147150    allocate(sens_prec_liq_o(klon,2))
     
    198201
    199202    deallocate(snow_o,zfra_o,itau_con)
     203    deallocate(sza_o)
    200204    deallocate (bils_ec,bils_ech,bils_tke,bils_diss,bils_kinetic,bils_enthalp,bils_latent)
    201205    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.