updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / hydro / Routing / Subsurface / module_subsurface_input.F
blob98abbf69482b8afeb8684d34f263c148116d34c2
1 module module_subsurface_input
2     implicit none
4     type subsurface_input_interface
6         ! infiltration excess from the land surface model (mm) on the routing grid
7         real, pointer, dimension(:,:) :: infiltration_excess
8     contains
9         procedure :: init => subsurface_input_init
10         procedure :: destroy => subsurface_input_destroy
11     end type subsurface_input_interface
13     contains
15     subroutine subsurface_input_init(this, ix, jx, infiltration_excess)
16         implicit none
17         class(subsurface_input_interface), intent(inout) :: this ! the type object being initialized
18         integer, intent(in) :: ix                     ! x grid size
19         integer, intent(in) :: jx                     ! y grid size
20         real, pointer, dimension(:,:) :: infiltration_excess
22         this%infiltration_excess => infiltration_excess
24     end subroutine subsurface_input_init
26     subroutine subsurface_input_destroy(this)
27         implicit none
28         class(subsurface_input_interface), intent(inout) :: this ! the type object being initialized
30     end subroutine subsurface_input_destroy
32 end module module_subsurface_input