Ignore:
Timestamp:
Apr 30, 2020 4:29:59 PM (4 years ago)
Author:
suehring
Message:

Bugfix in plant-canopy model for output of averaged transpiration rate after a restart; Revise check for output for plant heating rate and rename error message number; Surface-data output: enable output of mixing ratio and passive scalar concentration at the surface; Surface-data input: Add possibility to prescribe surface sensible and latent heat fluxes via static input file

File:
1 edited

Legend:

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

    r4495 r4514  
    2424! -----------------
    2525! $Id$
     26! qsurf and ssurf added
     27!
     28! 4495 2020-04-13 20:11:20Z raasch
    2629! restart data handling with MPI-IO added
    2730!
     
    12541257          ENDIF
    12551258
     1259          IF ( ALLOCATED( qsurf_av ) )  THEN
     1260             CALL wrd_write_string( 'qsurf_av' )
     1261             WRITE ( 14 )  qsurf_av
     1262          ENDIF
     1263
    12561264          IF ( ALLOCATED( qsws_av ) )  THEN
    12571265             CALL wrd_write_string( 'qsws_av' )
     
    12691277             CALL wrd_write_string( 's_av' )
    12701278             WRITE ( 14 )  s_av
     1279          ENDIF
     1280
     1281          IF ( ALLOCATED( ssurf_av ) )  THEN
     1282             CALL wrd_write_string( 'ssurf_av' )
     1283             WRITE ( 14 )  ssurf_av
    12711284          ENDIF
    12721285
     
    14911504          ENDIF
    14921505
     1506          IF ( ALLOCATED( qsurf_av ) )  CALL wrd_mpi_io( 'qsurf_av', qsurf_av )
    14931507          IF ( ALLOCATED( qsws_av ) )  CALL wrd_mpi_io( 'qsws_av', qsws_av )
    14941508
     
    14991513          CALL wrd_mpi_io( 's', s )
    15001514          IF ( ALLOCATED( s_av ) )  CALL wrd_mpi_io( 's_av',  s_av )
     1515          IF ( ALLOCATED( ssurf_av ) )  CALL wrd_mpi_io( 'ssurf_av', ssurf_av )
    15011516          IF ( ALLOCATED( ssws_av ) )  CALL wrd_mpi_io( 'ssws_av', ssws_av )
    15021517
Note: See TracChangeset for help on using the changeset viewer.