Changeset 3646 for palm/trunk/SOURCE/data_output_3d.f90
- Timestamp:
- Dec 28, 2018 5:58:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_3d.f90
r3637 r3646 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix: use time_since_reference_point instead of simulated_time (relevant 28 ! when using wall/soil spinup) 29 ! 30 ! 3637 2018-12-20 01:51:36Z knoop 27 31 ! Implementation of the PALM module interface 28 32 ! … … 255 259 io_blocks, io_group, land_surface, message_string, & 256 260 ntdim_3d, nz_do3d, ocean_mode, plant_canopy, & 257 psolver, salsa, simulated_time, time_since_reference_point,&261 psolver, salsa, time_since_reference_point, & 258 262 urban_surface, varnamelength 259 263 … … 355 359 IF ( netcdf_data_format > 4 ) THEN 356 360 IF ( do3d_time_count(av) + 1 > ntdim_3d(av) ) THEN 357 WRITE ( message_string, * ) 'Output of 3d data is not given at t=', &358 simulated_time, '&because the maximum ', &359 'number of output time levels is ', &361 WRITE ( message_string, * ) 'Output of 3d data is not given at t=', & 362 time_since_reference_point, 's because the maximum ', & 363 'number of output time levels is ', & 360 364 'exceeded.' 361 365 CALL message( 'data_output_3d', 'PA0387', 0, 1, 0, 6, 0 ) … … 447 451 CASE ( 'pc' ) ! particle concentration (requires ghostpoint exchange) 448 452 IF ( av == 0 ) THEN 449 IF ( simulated_time>= particle_advection_start ) THEN453 IF ( time_since_reference_point >= particle_advection_start ) THEN 450 454 tend = prt_count 451 455 ELSE … … 470 474 CASE ( 'pr' ) ! mean particle radius (effective radius) 471 475 IF ( av == 0 ) THEN 472 IF ( simulated_time>= particle_advection_start ) THEN476 IF ( time_since_reference_point >= particle_advection_start ) THEN 473 477 DO i = nxl, nxr 474 478 DO j = nys, nyn … … 585 589 CASE ( 'ql_vp' ) 586 590 IF ( av == 0 ) THEN 587 IF ( simulated_time>= particle_advection_start ) THEN591 IF ( time_since_reference_point >= particle_advection_start ) THEN 588 592 DO i = nxl, nxr 589 593 DO j = nys, nyn
Note: See TracChangeset
for help on using the changeset viewer.