Ignore:
Timestamp:
Mar 2, 2021 4:39:14 PM (3 years ago)
Author:
raasch
Message:

revised output of surface data via MPI-IO for better performance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/read_restart_data_mod.f90

    r4848 r4893  
    2525! -----------------
    2626! $Id$
     27! revised output of surface data via MPI-IO for better performance,
     28! therefore binary version number has changed
     29!
     30! 4848 2021-01-21 15:51:51Z gronemeier
    2731! bugfix: removed syn_turb_gen from restart files
    2832!
     
    276280    CALL location_message( 'read global restart data', 'start' )
    277281
     282!
     283!-- Caution: When any of the read instructions have been changed, the
     284!-- -------  version number stored in the variable binary_version_global has
     285!--          to be increased. The same changes must also be done in wrd_write_global.
     286    binary_version_global = '5.3'
     287
    278288    IF ( TRIM( restart_data_format_input ) == 'fortran_binary' )  THEN
    279289!
     
    286296       READ ( 13 )  version_on_file
    287297
    288        binary_version_global = '5.2'
    289298       IF ( TRIM( version_on_file ) /= TRIM( binary_version_global ) )  THEN
    290299          WRITE( message_string, * ) 'version mismatch concerning ',           &
     
    373382!
    374383!--    Now read all control parameters:
    375 !--    Caution: When the following read instructions have been changed, the
    376 !--    -------  version number stored in the variable binary_version_global has
    377 !--             to be increased. The same changes must also be done in
    378 !--             wrd_write_global.
     384
    379385       READ ( 13 )  length
    380386       READ ( 13 )  restart_string(1:length)
     
    873879!--    Read global restart data using MPI-IO
    874880!--    ATTENTION: Arrays need to be read with routine rrd_mpi_io_global_array!
    875 !--    Caution: When any of the following read instructions have been changed, the
    876 !--    -------  version number stored in the variable binary_version_global has
    877 !--             to be increased. The same changes must also be done in
    878 !--             wrd_write_global.
     881
    879882!
    880883!--    Open the MPI-IO restart file.
     
    886889       CALL rrd_mpi_io( 'binary_version_global',  version_on_file )
    887890
    888        binary_version_global = '5.1'
    889891       IF ( TRIM( version_on_file ) /= TRIM( binary_version_global ) )  THEN
    890892          WRITE( message_string, * ) 'version mismatch concerning binary_version_global:',         &
Note: See TracChangeset for help on using the changeset viewer.