- Timestamp:
- Jul 28, 2025, 7:23:15 PM (7 days ago)
- Location:
- LMDZ6/branches/contrails
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/contrails
- Property svn:mergeinfo changed
/LMDZ6/trunk merged: 5654-5683,5685-5690,5692-5715,5718-5721,5726-5727,5729,5744-5761,5763-5778,5780,5785-5789
- Property svn:mergeinfo changed
-
LMDZ6/branches/contrails/libf/phylmd/phys_output_var_mod.f90
r5618 r5791 105 105 INTEGER, DIMENSION(nfiles), SAVE :: nnhorim 106 106 INTEGER, DIMENSION(nfiles), SAVE :: nhorim, nvertm 107 INTEGER, DIMENSION(nfiles), SAVE :: ncanaux !FC 108 !$OMP THREADPRIVATE(ncanaux) 107 109 INTEGER, DIMENSION(nfiles), SAVE :: nvertap, nvertbp, nvertAlt 108 110 REAL, DIMENSION(nfiles), SAVE :: zoutm … … 179 181 !$OMP THREADPRIVATE(cloud_cover_sw, cloud_cover_sw_s2) 180 182 183 ! Direct-beam shortwave into a horizontal plane 184 REAL, SAVE, ALLOCATABLE :: ZFLUX_DIR(:,:), ZFLUX_DIR_CLEAR(:,:), & 185 & ZFLUX_DIR_s2(:,:), ZFLUX_DIR_CLEAR_s2(:,:) 186 !$OMP THREADPRIVATE(ZFLUX_DIR, ZFLUX_DIR_CLEAR, ZFLUX_DIR_s2, ZFLUX_DIR_CLEAR_s2) 187 REAL, SAVE, ALLOCATABLE :: ZFLUX_DIR_SUN(:), ZFLUX_DIR_SUN_s2(:) 188 !$OMP THREADPRIVATE(ZFLUX_DIR_SUN, ZFLUX_DIR_SUN_s2) 189 181 190 CONTAINS 182 191 … … 252 261 ALLOCATE(icc3dstra(klon, klev)) 253 262 254 263 ! cloud_cover_sw, cloud_cover_sw_s2 from Ecrad 255 264 ALLOCATE(cloud_cover_sw(klon)) 256 265 ALLOCATE(cloud_cover_sw_s2(klon)) 266 ALLOCATE(ZFLUX_DIR(klon,klev+1)) 267 ALLOCATE(ZFLUX_DIR_CLEAR(klon,klev+1)) 268 ALLOCATE(ZFLUX_DIR_s2(klon,klev+1)) 269 ALLOCATE(ZFLUX_DIR_CLEAR_s2(klon,klev+1)) 270 ALLOCATE(ZFLUX_DIR_SUN(klon)) 271 ALLOCATE(ZFLUX_DIR_SUN_s2(klon)) 257 272 258 273 END SUBROUTINE phys_output_var_init … … 308 323 !AI cloud_cover_sw, cloud_cover_sw_s2 from Ecrad 309 324 DEALLOCATE(cloud_cover_sw, cloud_cover_sw_s2) 325 DEALLOCATE(ZFLUX_DIR, ZFLUX_DIR_CLEAR, ZFLUX_DIR_s2, ZFLUX_DIR_CLEAR_s2) 326 DEALLOCATE(ZFLUX_DIR_SUN, ZFLUX_DIR_SUN_s2) 310 327 311 328 END SUBROUTINE phys_output_var_end
Note: See TracChangeset
for help on using the changeset viewer.