Changeset 1883 for trunk/LMDZ.GENERIC/libf/phystd/turb_mod.F90
- Timestamp:
- Jan 2, 2018, 3:11:14 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/turb_mod.F90
r1834 r1883 4 4 REAL,SAVE,ALLOCATABLE :: q2(:,:) ! Turbulent Kinetic Energy 5 5 REAL,allocatable,SAVE :: l0(:) 6 !$OMP THREADPRIVATE(q2,l0) 6 7 REAL,SAVE,ALLOCATABLE :: ustar(:) 7 8 REAL,SAVE,ALLOCATABLE :: wstar(:) 8 9 REAL,SAVE,ALLOCATABLE :: tstar(:) 10 !$OMP THREADPRIVATE(ustar,wstar,tstar) 9 11 REAL,SAVE,ALLOCATABLE :: hfmax_th(:) 10 12 REAL,SAVE,ALLOCATABLE :: zmax_th(:) 13 !$OMP THREADPRIVATE(hfmax_th,zmax_th) 11 14 REAL,SAVE,ALLOCATABLE :: sensibFlux(:) 12 LOGICAL :: turb_resolved = .false. 15 LOGICAL,SAVE :: turb_resolved = .false. 16 !$OMP THREADPRIVATE(sensibFlux,turb_resolved) 13 17 ! this is a flag to say 'turbulence is resolved' 14 18 ! mostly for LES use. default is FALSE (for GCM and mesoscale)
Note: See TracChangeset
for help on using the changeset viewer.