Ignore:
Timestamp:
Nov 6, 2020 2:50:49 PM (3 years ago)
Author:
raasch
Message:

bugfix for reading/writing spectra data with MPI-I/O

File:
1 edited

Legend:

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

    r4671 r4777  
    2424! -----------------
    2525! $Id$
     26! bugfix for writing spectra data with MPI-I/O (they are global arrays!)
     27!
     28! 4671 2020-09-09 20:27:58Z pavelkrc
    2629! Implementation of downward facing USM and LSM surfaces
    2730!
     
    10501053       CALL wrd_mpi_io( 'simulated_time', simulated_time )
    10511054       IF ( ALLOCATED( spectrum_x ) )  THEN
    1052           CALL wrd_mpi_io( 'spectrum_x', spectrum_x )
    1053           CALL wrd_mpi_io( 'spectrum_y', spectrum_y )
     1055          CALL wrd_mpi_io_global_array( 'spectrum_x', spectrum_x )
     1056          CALL wrd_mpi_io_global_array( 'spectrum_y', spectrum_y )
    10541057       ENDIF
    10551058       CALL wrd_mpi_io( 'spinup_time ', spinup_time )
Note: See TracChangeset for help on using the changeset viewer.