Skip to content

Commit d51f09a

Browse files
committed
Use tc_home as inputs%site_info in BiomeE II
1 parent 345cf7a commit d51f09a

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/interface_in_biosphere_biomee.mod.f90

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ module md_interface_in_biomee
203203
real :: lon
204204
real :: lat
205205
real :: elv ! elevation
206+
real :: tc_home
206207

207208
contains
208209

@@ -407,9 +408,10 @@ subroutine populate_site_info(self, site_info)
407408
real(kind=c_double), dimension(nvars_site_info), intent(in) :: site_info
408409

409410
! Site info
410-
self%lon = real( site_info(1) )
411-
self%lat = real( site_info(2) )
412-
self%elv = real( site_info(3) )
411+
self%lon = real( site_info(1) )
412+
self%lat = real( site_info(2) )
413+
self%elv = real( site_info(3) )
414+
!self%tc_home = real( site_info(4) )
413415
end subroutine populate_site_info
414416

415417
subroutine populate_spec_data(self, params_species)

0 commit comments

Comments
 (0)