2 ! Author(s)/Contact(s):
5 ! <brief list of changes to this source file>
8 ! Parameters: <Specify typical arguments passed>
10 ! <list file names and briefly describe the data they include>
12 ! <list file names and briefly describe the information they include>
15 ! <list exit condition or error codes returned >
16 ! If appropriate, descriptive troubleshooting instructions or
17 ! likely causes for failures could be mentioned here with the
18 ! appropriate error code
20 ! User controllable options: <if applicable>
23 !ywGW subroutine wrf_drv_HYDRO(HYDRO_dt,grid, config_flags, its,ite,jts,jte)
24 subroutine wrf_drv_HYDRO(HYDRO_dt,grid, its,ite,jts,jte)
25 use module_wrf_HYDRO, only: wrf_cpl_HYDRO
26 USE module_domain, ONLY : domain
27 USE module_configure, ONLY : grid_config_rec_type
29 integer:: its,ite,jts,jte
31 TYPE ( domain ), INTENT(INOUT) :: grid
32 !ywGW TYPE ( grid_config_rec_type ), INTENT(IN) :: config_flags
33 TYPE ( grid_config_rec_type ) :: config_flags
36 if(grid%num_nests .lt. 1) then
38 !ywGW call wrf_cpl_HYDRO(HYDRO_dt, grid, config_flags, its,ite,jts,jte)
39 call wrf_cpl_HYDRO(HYDRO_dt, grid, its,ite,jts,jte)
42 end subroutine wrf_drv_HYDRO
45 subroutine wrf_drv_HYDRO_ini(grid,its,ite,jts,jte)
46 use module_wrf_HYDRO, only: wrf_cpl_HYDRO
47 USE module_domain, ONLY : domain
49 integer:: its,ite,jts,jte
50 TYPE ( domain ), INTENT(INOUT) :: grid
52 if(grid%num_nests .lt. 1) then
53 ! call wrf_cpl_HYDRO_ini(grid,its,ite,jts,jte)
56 end subroutine wrf_drv_HYDRO_ini