Ignore:
Timestamp:
Mar 20, 2018 1:00:05 PM (6 years ago)
Author:
knoop
Message:

Added gust module interface calls to restart data modules

File:
1 edited

Legend:

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

    r2894 r2912  
    2525! -----------------
    2626! $Id$
     27! Added gust module interface calls
     28!
     29! 2894 2018-03-15 09:17:58Z Giersch
    2730! Initial revision
    2831!
     
    8083           ONLY:  dx, dy
    8184
     85       USE gust_mod,                                                           &
     86           ONLY :  gust_module_enabled, gust_wrd_global
     87
    8288       USE indices,                                                            &
    8389           ONLY:  nz, nx, ny
     
    884890!-- If required, write restart data for turbulence generator.
    885891       IF ( syn_turb_gen )  CALL stg_wrd_global
     892!
     893!-- If required, write restart data for gust module.
     894       IF ( gust_module_enabled )  CALL gust_wrd_global
    886895
    887896!
     
    913922       USE chemistry_model_mod,                                                &
    914923           ONLY:  chem_wrd_local
     924
     925       USE gust_mod,                                                           &
     926           ONLY :  gust_module_enabled, gust_wrd_local
    915927               
    916928       USE indices,                                                            &
     
    13691381
    13701382!
     1383!-- If required, write restart data for gust module.
     1384       IF ( gust_module_enabled )  THEN
     1385          CALL gust_wrd_local
     1386       ENDIF
     1387
     1388!
    13711389!-- Write user-related restart data.
    13721390       CALL user_wrd_local
Note: See TracChangeset for help on using the changeset viewer.