Skip to content
Snippets Groups Projects
Commit a29f824a authored by Victoria Suiazova's avatar Victoria Suiazova Committed by Anna Shestakova
Browse files

VEG_to_IVEG_sfx

parent 8d74b6fe
No related branches found
No related tags found
No related merge requests found
...@@ -20,13 +20,13 @@ module sfx_api_inmcm ...@@ -20,13 +20,13 @@ module sfx_api_inmcm
contains contains
! -------------------------------------------------------------------------------- ! --------------------------------------------------------------------------------
subroutine inmcm_to_sfx_in_cell(meteo, arg, VEGG, depth_inm, lai_inm) subroutine inmcm_to_sfx_in_cell(meteo, arg, IVEG_sfx, depth_inm, lai_inm)
!> @brief converts legacy arg [AR1 INMCM format] array to sfx meteo input !> @brief converts legacy arg [AR1 INMCM format] array to sfx meteo input
! ---------------------------------------------------------------------------- ! ----------------------------------------------------------------------------
implicit none implicit none
type (meteoDataType), intent(inout) :: meteo type (meteoDataType), intent(inout) :: meteo
real, dimension(6), intent(in) :: arg real, dimension(6), intent(in) :: arg
integer,intent(in) :: VEGG real,intent(in) :: IVEG_sfx
real,intent(in) :: depth_inm real,intent(in) :: depth_inm
real,intent(in) :: lai_inm real,intent(in) :: lai_inm
...@@ -41,7 +41,7 @@ contains ...@@ -41,7 +41,7 @@ contains
meteo%z0_m = arg(6) meteo%z0_m = arg(6)
meteo%depth = depth_inm meteo%depth = depth_inm
meteo%lai = lai_inm meteo%lai = lai_inm
meteo%surface_type = VEGG meteo%surface_type = IVEG_sfx
end subroutine inmcm_to_sfx_in_cell end subroutine inmcm_to_sfx_in_cell
! -------------------------------------------------------------------------------- ! --------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment