Changeset 4039 for palm/trunk/SOURCE/data_output_3d.f90
- Timestamp:
- Jun 18, 2019 10:32:41 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_3d.f90
r3994 r4039 25 25 ! ----------------- 26 26 ! $Id$ 27 ! modularize diagnostic output 28 ! 29 ! 3994 2019-05-22 18:08:09Z suehring 27 30 ! output of turbulence intensity added 28 31 ! … … 275 278 USE cpulog, & 276 279 ONLY: log_point, cpu_log 277 278 USE diagnostic_output_quantities_mod, &279 ONLY: ti, ti_av280 280 281 281 #if defined( __parallel ) … … 703 703 ENDIF 704 704 to_be_resorted => vpt_av 705 ENDIF706 707 CASE ( 'ti' )708 IF ( av == 0 ) THEN709 to_be_resorted => ti710 ELSE711 IF ( .NOT. ALLOCATED( ti_av ) ) THEN712 ALLOCATE( ti_av(nzb:nzt+1,nys:nyn,nxl:nxr) )713 ti_av = REAL( fill_value, KIND = wp )714 ENDIF715 to_be_resorted => ti_av716 705 ENDIF 717 706
Note: See TracChangeset
for help on using the changeset viewer.