Ignore:
Timestamp:
Jan 20, 2019 8:20:58 PM (5 years ago)
Author:
knoop
Message:

Enabled module_interface_actions in time_integration and prognostic_equations

File:
1 edited

Legend:

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

    r3655 r3684  
    130130              gust_check_data_output,                                          &
    131131              gust_header,                                                     &
     132              gust_actions,                                                    &
    132133              gust_swap_timelevel,                                             &
    133134              gust_3d_data_averaging,                                          &
     
    240241              usm_rrd_local,                                                   &
    241242              usm_wrd_local
     243
     244   USE user_actions_mod,                                                       &
     245       ONLY:  user_actions
    242246
    243247   USE user_read_restart_data_mod,                                             &
     
    637641
    638642
     643   IF ( gust_module_enabled )  CALL gust_actions( location )
     644
     645   CALL user_actions( location ) ! ToDo: make user module switch
     646
     647
    639648END SUBROUTINE module_interface_actions
    640649
     
    651660   INTEGER(iwp),      INTENT(IN) ::  j         !< grid index in y-direction
    652661   CHARACTER (LEN=*), INTENT(IN) ::  location  !< call location string
     662
     663
     664   IF ( gust_module_enabled )  CALL gust_actions( i, j, location )
     665
     666   CALL user_actions( i, j, location ) ! ToDo: make user module switch
    653667
    654668
Note: See TracChangeset for help on using the changeset viewer.