- Timestamp:
- Nov 5, 2018, 3:24:59 PM (6 years ago)
- Location:
- LMDZ6/branches/DYNAMICO-conv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/DYNAMICO-conv
- Property svn:mergeinfo changed
/LMDZ6/trunk removed
- Property svn:mergeinfo changed
-
LMDZ6/branches/DYNAMICO-conv/libf/phylmd/phys_output_var_mod.F90
r3356 r3411 14 14 REAL, SAVE, ALLOCATABLE :: snow_o(:), zfra_o(:) 15 15 !$OMP THREADPRIVATE(snow_o, zfra_o) 16 REAL, SAVE, ALLOCATABLE :: sza_o(:) ! solar zenithal angle17 !$OMP THREADPRIVATE(sza_o)18 16 INTEGER, SAVE, ALLOCATABLE :: itau_con(:) ! Nombre de pas ou rflag <= 1 19 17 !$OMP THREADPRIVATE(itau_con) … … 88 86 89 87 ! 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 diagnostics91 88 ! dryaod_diag : flag indicates if it is necessary to do calculation for some aerosol diagnostics 92 89 !--OB: this needs to be set to TRUE by default and changed back to FALSE after first radiation call 93 90 !-- and corrected back to TRUE based on output requests 94 LOGICAL, SAVE :: swaerofree_diag=.TRUE.95 91 LOGICAL, SAVE :: swaero_diag=.TRUE. 96 92 LOGICAL, SAVE :: dryaod_diag=.TRUE. 97 !$OMP THREADPRIVATE(swaero free_diag, swaero_diag, dryaod_diag)93 !$OMP THREADPRIVATE(swaero_diag, dryaod_diag) 98 94 ! ok_4xCO2atm : flag indicates if it is necessary to do a second call of 99 95 ! radiation code with a 4xCO2 or another different GES to assess SW/LW … … 102 98 !-- changed back to FALSE after first radiation call and corrected back to TRUE 103 99 !-- based on output requests 104 LOGICAL, SAVE :: ok_4xCO2atm=. TRUE.100 LOGICAL, SAVE :: ok_4xCO2atm=.FALSE. 105 101 !$OMP THREADPRIVATE(ok_4xCO2atm) 106 102 … … 146 142 147 143 allocate(snow_o(klon), zfra_o(klon)) 148 allocate(sza_o(klon) )149 144 allocate(itau_con(klon)) 150 145 allocate(sens_prec_liq_o(klon,2)) … … 201 196 202 197 deallocate(snow_o,zfra_o,itau_con) 203 deallocate(sza_o)204 198 deallocate (bils_ec,bils_ech,bils_tke,bils_diss,bils_kinetic,bils_enthalp,bils_latent) 205 199 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.