- Timestamp:
- Dec 2, 2020 12:05:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/surface_data_output_mod.f90
r4671 r4805 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix: add time_dosurf to restart data 28 ! 29 ! 4671 2020-09-09 20:27:58Z pavelkrc 27 30 ! Implementation of downward facing USM and LSM surfaces 28 31 ! … … 35 38 ! - Bugfix in counting of surface elements 36 39 ! - Bugfix in data-output of averaged surface data in case of restarts 37 ! 40 ! 38 41 ! 4577 2020-06-25 09:53:58Z raasch 39 42 ! File re-formatted to follow the PALM coding standard … … 4486 4489 CASE ( 'average_count_surf' ) 4487 4490 READ ( 13 ) average_count_surf 4491 CASE ( 'time_dosurf' ) 4492 READ ( 13 ) time_dosurf 4488 4493 CASE ( 'time_dosurf_av' ) 4489 4494 READ ( 13 ) time_dosurf_av … … 4507 4512 4508 4513 CALL rrd_mpi_io( 'average_count_surf', average_count_surf ) 4514 CALL rrd_mpi_io( 'time_dosurf', time_dosurf ) 4509 4515 CALL rrd_mpi_io( 'time_dosurf_av', time_dosurf_av ) 4510 4516 … … 4576 4582 ! 4577 4583 !-- Note, surface data which is written to file is organized in a different way than 4578 !-- the output surface data. The output surface data is a concatenated array of the 4584 !-- the output surface data. The output surface data is a concatenated array of the 4579 4585 !-- different surface types and orientations, while the mpi-io expects surface data that 4580 4586 !-- is consecutive in terms of start- and end-index, i.e. organized along the (j,i) … … 4678 4684 WRITE ( 14 ) average_count_surf 4679 4685 4686 CALL wrd_write_string( 'time_dosurf' ) 4687 WRITE ( 14 ) time_dosurf 4688 4680 4689 CALL wrd_write_string( 'time_dosurf_av' ) 4681 4690 WRITE ( 14 ) time_dosurf_av … … 4684 4693 4685 4694 CALL wrd_mpi_io( 'average_count_surf', average_count_surf ) 4695 CALL wrd_mpi_io( 'time_dosurf', time_dosurf ) 4686 4696 CALL wrd_mpi_io( 'time_dosurf_av', time_dosurf_av ) 4687 4697 … … 4730 4740 ! 4731 4741 !-- Note, surface data which is written to file is organized in a different way than 4732 !-- the output surface data. The output surface data is a concatenated array of the 4742 !-- the output surface data. The output surface data is a concatenated array of the 4733 4743 !-- different surface types and orientations, while the mpi-io expects surface data that 4734 4744 !-- is consecutive in terms of start- and end-index, i.e. organized along the (j,i)
Note: See TracChangeset
for help on using the changeset viewer.