Ignore:
Timestamp:
Apr 8, 2019 1:44:34 PM (5 years ago)
Author:
knoop
Message:

Moving prognostic equations of bcm into bulk_cloud_model_mod

File:
1 edited

Legend:

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

    r3864 r3870  
    146146               bcm_init,                                                       &
    147147               bcm_header,                                                     &
     148               bcm_actions,                                                    &
     149               bcm_prognostic_equations,                                       &
    148150               bcm_swap_timelevel,                                             &
    149151               bcm_3d_data_averaging,                                          &
     
    876878
    877879
     880    IF ( bulk_cloud_model    )  CALL bcm_actions( location )
    878881    IF ( gust_module_enabled )  CALL gust_actions( location )
    879882    IF ( user_module_enabled )  CALL user_actions( location )
     
    896899
    897900
     901    IF ( bulk_cloud_model    )  CALL bcm_actions( i, j, location )
    898902    IF ( gust_module_enabled )  CALL gust_actions( i, j, location )
    899903    IF ( user_module_enabled )  CALL user_actions( i, j, location )
     
    911915
    912916
     917    IF ( bulk_cloud_model    )  CALL bcm_prognostic_equations()
    913918    IF ( gust_module_enabled )  CALL gust_prognostic_equations()
    914919    IF ( ocean_mode          )  CALL ocean_prognostic_equations()
     
    933938
    934939
     940    IF ( bulk_cloud_model    )  CALL bcm_prognostic_equations( i, j, i_omp_start, tn )
    935941    IF ( gust_module_enabled )  CALL gust_prognostic_equations( i, j, i_omp_start, tn )
    936942    IF ( ocean_mode          )  CALL ocean_prognostic_equations( i, j, i_omp_start, tn )
Note: See TracChangeset for help on using the changeset viewer.