Skip to content

Commit

Permalink
Update ch_thresh and cf_thresh
Browse files Browse the repository at this point in the history
  • Loading branch information
angehung5 authored Feb 5, 2024
1 parent 889552b commit 9bfa3bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/canopy_calcs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ SUBROUTINE canopy_calcs(nn)
end if

! ... check for contiguous canopy conditions at each model grid cell
if (hcmref .gt. fch_thresh .and. canfracref .gt. frt_thresh &
if (hcmref .gt. ch_thresh .and. canfracref .gt. cf_thresh &
.and. lairef .gt. lai_thresh) then

! ... call canopy parameters to get canopy, fire info, and shape distribution parameters
Expand Down Expand Up @@ -548,7 +548,7 @@ SUBROUTINE canopy_calcs(nn)
end if

! ... check for contiguous canopy conditions at each model grid cell
if (hcmref .gt. fch_thresh .and. canfracref .gt. frt_thresh &
if (hcmref .gt. ch_thresh .and. canfracref .gt. cf_thresh &
.and. lairef .gt. lai_thresh) then

! ... call canopy parameters to get canopy, fire info, and shape distribution parameters
Expand Down

0 comments on commit 9bfa3bb

Please sign in to comment.