Ignore:
Timestamp:
May 10, 2020 5:05:07 PM (4 years ago)
Author:
raasch
Message:

salsa: added reading/writing of global restart data + reading/writing restart data with MPI-IO, bugfix for MPI-IO in plant_canopy_model_mod, tutorial user-interface dispersion_eularian_and_lpm_extended updated

File:
1 edited

Legend:

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

    r4518 r4525  
    2525! -----------------
    2626! $Id$
     27! added restart I/O for global salsa data,
     28! added restart with MPI-IO for salsa
     29!
     30! 4518 2020-05-04 15:44:28Z suehring
    2731! Call of doq_rrd_local enabled
    2832!
     
    489493               salsa_data_output_3d,                                           &
    490494               salsa_statistics,                                               &
     495               salsa_rrd_global,                                               &
    491496               salsa_rrd_local,                                                &
     497               salsa_wrd_global,                                               &
    492498               salsa_wrd_local
    493499
     
    17361742    IF ( .NOT. found )  CALL pcm_rrd_global( found )
    17371743    IF ( .NOT. found )  CALL ocean_rrd_global( found ) ! ToDo: change interface to pass variable
     1744    IF ( .NOT. found )  CALL salsa_rrd_global( found )
    17381745    IF ( .NOT. found )  CALL stg_rrd_global ( found ) ! ToDo: change interface to pass variable
    17391746    IF ( .NOT. found )  CALL wtm_rrd_global( found ) ! ToDo: change interface to pass variable
     
    17671774    IF ( plant_canopy )         CALL pcm_rrd_global
    17681775    IF ( ocean_mode )           CALL ocean_rrd_global
     1776    IF ( salsa )                CALL salsa_rrd_global
    17691777    IF ( syn_turb_gen )         CALL stg_rrd_global
    17701778    IF ( wind_turbine )         CALL wtm_rrd_global
     
    17981806    IF ( plant_canopy )         CALL pcm_wrd_global
    17991807    IF ( ocean_mode )           CALL ocean_wrd_global
     1808    IF ( salsa )                CALL salsa_wrd_global
    18001809    IF ( syn_turb_gen )         CALL stg_wrd_global
    18011810    IF ( wind_turbine )         CALL wtm_wrd_global
     
    20042013    IF ( ocean_mode )           CALL ocean_rrd_local
    20052014    IF ( radiation )            CALL radiation_rrd_local
    2006 !    IF ( salsa )                CALL salsa_rrd_local
     2015    IF ( salsa )                CALL salsa_rrd_local
    20072016    IF ( urban_surface )        CALL usm_rrd_local
    20082017    IF ( surface_output )       CALL surface_data_output_rrd_local
Note: See TracChangeset for help on using the changeset viewer.