Ignore:
Timestamp:
Nov 30, 2020 2:16:31 PM (4 years ago)
Author:
suehring
Message:

Bugfix in time-control of indoor model in case of restarts and at the very first time step

File:
1 edited

Legend:

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

    r4777 r4802  
    2424! -----------------
    2525! $Id$
     26! include time_indoor into restart mechanism
     27!
     28! 4777 2020-11-06 14:50:49Z raasch
    2629! bugfix for writing spectra data with MPI-I/O (they are global arrays!)
    2730!
     
    109112        ONLY:  nx, nxl, nxr, ny, nys, nyn, nz, nzb, nzt
    110113
     114    USE indoor_model_mod,                                                                          &
     115        ONLY:  time_indoor
     116
    111117    USE kinds
    112118
     
    716722       CALL wrd_write_string( 'time_dots' )
    717723       WRITE ( 14 )  time_dots
     724
     725       CALL wrd_write_string( 'time_indoor' )
     726       WRITE ( 14 )  time_indoor
    718727
    719728       CALL wrd_write_string( 'time_radiation' )
     
    10811090       CALL wrd_mpi_io( 'time_dosp', time_dosp )
    10821091       CALL wrd_mpi_io( 'time_dots', time_dots )
     1092       CALL wrd_mpi_io( 'time_indoor', time_indoor )
    10831093       CALL wrd_mpi_io( 'time_radiation', time_radiation )
    10841094       CALL wrd_mpi_io( 'time_restart', time_restart )
Note: See TracChangeset for help on using the changeset viewer.