Changeset 4694 for palm/trunk/SOURCE/land_surface_model_mod.f90
- Timestamp:
- Sep 23, 2020 3:09:19 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/land_surface_model_mod.f90
r4671 r4694 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Fix reading of surface data from MPI restart file 28 ! 29 ! 4671 2020-09-09 20:27:58Z pavelkrc 27 30 ! Implementation of downward facing USM and LSM surfaces for RTM 4.1 28 31 ! Author: J. Resler (Institute of Computer Science, Prague) … … 7611 7614 INTEGER(iwp) :: l !< running index surface orientation 7612 7615 7613 INTEGER(iwp), DIMENSION(nys:nyn,nxl:nxr) :: end_index7616 !INTEGER(iwp), DIMENSION(nys:nyn,nxl:nxr) :: end_index 7614 7617 INTEGER(iwp), DIMENSION(nys:nyn,nxl:nxr) :: global_start 7615 INTEGER(iwp), DIMENSION(nys:nyn,nxl:nxr) :: start_index7618 !INTEGER(iwp), DIMENSION(nys:nyn,nxl:nxr) :: start_index 7616 7619 7617 7620 LOGICAL :: array_found … … 7690 7693 global_start ) 7691 7694 7695 IF ( MAXVAL( surf_lsm_h(l)%end_index ) <= 0 ) CYCLE 7696 7692 7697 CALL rrd_mpi_io_surface( 't_soil_h(' // dum // ')', t_soil_h(l)%var_2d ) 7693 7698 CALL rrd_mpi_io_surface( 'm_soil_h(' // dum // ')', m_soil_h(l)%var_2d ) … … 7705 7710 !kk Has to be discussed with the developpers 7706 7711 7707 CALL rrd_mpi_io( 'lsm_start_index_v_' // dum, s tart_index )7708 CALL rrd_mpi_io( 'lsm_end_index_v_' // dum, end_index )7712 CALL rrd_mpi_io( 'lsm_start_index_v_' // dum, surf_lsm_v(l)%start_index ) 7713 CALL rrd_mpi_io( 'lsm_end_index_v_' // dum, surf_lsm_v(l)%end_index ) 7709 7714 CALL rrd_mpi_io( 'lsm_global_start_index_v_' // dum , global_start ) 7710 7715 7711 CALL rd_mpi_io_surface_filetypes( s tart_index,end_index, ldum, global_start )7712 7713 IF ( MAXVAL( end_index ) <= 0 ) CYCLE7716 CALL rd_mpi_io_surface_filetypes( surf_lsm_v(l)%start_index, surf_lsm_v(l)%end_index, ldum, global_start ) 7717 7718 IF ( MAXVAL( surf_lsm_v(l)%end_index ) <= 0 ) CYCLE 7714 7719 7715 7720 CALL rrd_mpi_io_surface( 't_soil_v(' // dum // ')', t_soil_v(l)%var_2d )
Note: See TracChangeset
for help on using the changeset viewer.