@@ -265,8 +265,8 @@ module ELMFatesInterfaceMod
265
265
266
266
! This is the array of pointer to the host land model data and its associated
267
267
! common variable name
268
- type (hlm_fates_api_var_type), allocatable :: bc_in(:)
269
- type (hlm_fates_api_var_type), allocatable :: bc_out(:)
268
+ ! type(hlm_fates_api_var_type), allocatable :: bc_in(:)
269
+ ! type(hlm_fates_api_var_type), allocatable :: bc_out(:)
270
270
271
271
! This is the number of HLM variables that are being passed in and out of FATES
272
272
integer , public :: num_hlmvar_in, num_hlmvar_out
@@ -303,8 +303,8 @@ module ELMFatesInterfaceMod
303
303
procedure , public :: WrapUpdateFatesRmean
304
304
procedure , public :: WrapGlobalSeedDispersal
305
305
procedure , public :: WrapUpdateFatesSeedInOut
306
- procedure , public :: WrapTransferBCIn
307
- procedure , public :: WrapTransferBCOut
306
+ ! procedure, public :: WrapTransferBCIn
307
+ ! procedure, public :: WrapTransferBCOut
308
308
309
309
end type hlm_fates_interface_type
310
310
@@ -922,7 +922,7 @@ subroutine init(this, bounds_proc, flandusepftdat)
922
922
end if
923
923
924
924
! Initialize the fates to host land model API variable mapping
925
- call this% InitAndSetAPIAssociation()
925
+ ! call this%InitAndSetAPIAssociation()
926
926
927
927
! Retrieve the landuse x pft static data if the optional switch has been set
928
928
if (use_fates_fixed_biogeog .and. use_fates_luh) then
@@ -1253,7 +1253,7 @@ subroutine dynamics_driv(this, bounds_clump, top_as_inst, &
1253
1253
end if
1254
1254
1255
1255
! Transfer decomposition fluxes to the FATES patch data structure
1256
- call this% WrapTransferBCIn(nc)
1256
+ ! call this%WrapTransferBCIn(nc)
1257
1257
1258
1258
do s= 1 ,this% fates(nc)% nsites
1259
1259
@@ -3643,61 +3643,61 @@ end subroutine wrap_hydraulics_drive
3643
3643
3644
3644
! ======================================================================================
3645
3645
3646
- subroutine WrapTransferBCIn (this , nc )
3646
+ ! subroutine WrapTransferBCIn(this, nc)
3647
3647
3648
- ! !DESCRIPTION:
3649
- ! ---------------------------------------------------------------------------------
3650
- ! This call passes the HLM inputs to FATES patch-level boundary conditions
3651
- ! ---------------------------------------------------------------------------------
3648
+ ! ! !DESCRIPTION:
3649
+ ! ! ---------------------------------------------------------------------------------
3650
+ ! ! This call passes the HLM inputs to FATES patch-level boundary conditions
3651
+ ! ! ---------------------------------------------------------------------------------
3652
3652
3653
- ! !USES:
3654
- !
3655
- ! !ARGUMENTS:
3656
- class(hlm_fates_interface_type), intent (inout ) :: this
3657
- integer , intent (in ) :: nc
3653
+ ! ! !USES:
3654
+ ! !
3655
+ ! ! !ARGUMENTS:
3656
+ ! class(hlm_fates_interface_type), intent(inout) :: this
3657
+ ! integer, intent(in) :: nc
3658
3658
3659
- ! !LOCAL:
3660
- integer :: s, ivar ! indices and loop counters
3659
+ ! ! !LOCAL:
3660
+ ! integer :: s, ivar ! indices and loop counters
3661
3661
3662
- do s = 1 , this% fates(nc)% nsites
3663
- do ivar = 1 ,this% num_hlmvar_in
3664
- call this% fates(nc)% sites(s)% TransferBCIn(this% bc_in(ivar)% api_str, &
3665
- this% bc_in(ivar)% hlm_var)
3666
- end do
3667
- end do
3662
+ ! do s = 1, this%fates(nc)%nsites
3663
+ ! do ivar = 1,this%num_hlmvar_in
3664
+ ! call this%fates(nc)%sites(s)%TransferBCIn(this%bc_in(ivar)%api_str, &
3665
+ ! this%bc_in(ivar)%hlm_var)
3666
+ ! end do
3667
+ ! end do
3668
3668
3669
- end subroutine WrapTransferBCIn
3669
+ ! end subroutine WrapTransferBCIn
3670
3670
3671
- ! ======================================================================================
3671
+ ! ! ======================================================================================
3672
3672
3673
- subroutine WrapTransferBCOut (this , nc )
3673
+ ! subroutine WrapTransferBCOut(this, nc)
3674
3674
3675
- ! !DESCRIPTION:
3676
- ! ---------------------------------------------------------------------------------
3677
- ! This call passes the HLM inputs to FATES patch-level boundary conditions
3678
- ! ---------------------------------------------------------------------------------
3675
+ ! ! !DESCRIPTION:
3676
+ ! ! ---------------------------------------------------------------------------------
3677
+ ! ! This call passes the HLM inputs to FATES patch-level boundary conditions
3678
+ ! ! ---------------------------------------------------------------------------------
3679
3679
3680
- ! !USES:
3681
- !
3682
- ! !ARGUMENTS:
3683
- class(hlm_fates_interface_type), intent (inout ) :: this
3684
- integer , intent (in ) :: nc
3680
+ ! ! !USES:
3681
+ ! !
3682
+ ! ! !ARGUMENTS:
3683
+ ! class(hlm_fates_interface_type), intent(inout) :: this
3684
+ ! integer, intent(in) :: nc
3685
3685
3686
- ! !LOCAL:
3687
- integer :: s, ivar ! indices and loop counters
3688
- real (r8 ) :: dtime ! step size to pass to FATES to handle timestep conversions
3686
+ ! ! !LOCAL:
3687
+ ! integer :: s, ivar ! indices and loop counters
3688
+ ! real(r8) :: dtime ! step size to pass to FATES to handle timestep conversions
3689
3689
3690
- ! Get the step size in seconds
3691
- dtime = real (get_step_size(),r8 )
3690
+ ! ! Get the step size in seconds
3691
+ ! dtime = real(get_step_size(),r8)
3692
3692
3693
- do s = 1 , this% fates(nc)% nsites
3694
- do ivar = 1 ,this% num_hlmvar_out
3695
- call this% fates(nc)% sites(s)% TransferBCOut(this% bc_out(ivar)% api_str, &
3696
- this% bc_out(ivar)% hlm_var, dtime)
3697
- end do
3698
- end do
3693
+ ! do s = 1, this%fates(nc)%nsites
3694
+ ! do ivar = 1,this%num_hlmvar_out
3695
+ ! call this%fates(nc)%sites(s)%TransferBCOut(this%bc_out(ivar)%api_str, &
3696
+ ! this%bc_out(ivar)%hlm_var, dtime)
3697
+ ! end do
3698
+ ! end do
3699
3699
3700
- end subroutine WrapTransferBCOut
3700
+ ! end subroutine WrapTransferBCOut
3701
3701
3702
3702
! ======================================================================================
3703
3703
0 commit comments