Ignore:
Timestamp:
Apr 30, 2020 4:29:59 PM (5 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/module_interface.f90

    r4495 r4514  
    2525! -----------------
    2626! $Id$
     27! Added global restart routines for plant-canopy model
     28!
     29! 4495 2020-04-13 20:11:20Z raasch
    2730! restart data handling with MPI-IO added
    2831!
     
    442445               pcm_3d_data_averaging,                                          &
    443446               pcm_data_output_3d,                                             &
     447               pcm_rrd_global,                                                 &
    444448               pcm_rrd_local,                                                  &
     449               pcm_wrd_global,                                                 &
    445450               pcm_wrd_local
    446451
     
    17221727    IF ( .NOT. found )  CALL gust_rrd_global( found ) ! ToDo: change interface to pass variable
    17231728    IF ( .NOT. found )  CALL lpm_rrd_global( found ) ! ToDo: change interface to pass variable
     1729    IF ( .NOT. found )  CALL pcm_rrd_global( found )
    17241730    IF ( .NOT. found )  CALL ocean_rrd_global( found ) ! ToDo: change interface to pass variable
    17251731    IF ( .NOT. found )  CALL stg_rrd_global ( found ) ! ToDo: change interface to pass variable
     
    17521758    IF ( gust_module_enabled )  CALL gust_rrd_global
    17531759    IF ( particle_advection )   CALL lpm_rrd_global
     1760    IF ( plant_canopy )         CALL pcm_rrd_global
    17541761    IF ( ocean_mode )           CALL ocean_rrd_global
    17551762    IF ( syn_turb_gen )         CALL stg_rrd_global
     
    17821789    IF ( gust_module_enabled )  CALL gust_wrd_global
    17831790    IF ( particle_advection )   CALL lpm_wrd_global
     1791    IF ( plant_canopy )         CALL pcm_wrd_global
    17841792    IF ( ocean_mode )           CALL ocean_wrd_global
    17851793    IF ( syn_turb_gen )         CALL stg_wrd_global
Note: See TracChangeset for help on using the changeset viewer.