Skip to content

Commit

Permalink
fix type issue with xlf
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Oct 4, 2018
1 parent d8f6ff6 commit 0bb2565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riverroute/RtmMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2579,7 +2579,7 @@ subroutine MOSART_init
TUnit%hlen(iunit) = TUnit%area(iunit) / TUnit%rlenTotal(iunit) / 2._r8

! constrain hlen (hillslope length) values based on cell area
hlen_max = max(1000.0, sqrt(TUnit%area(iunit)))
hlen_max = max(1000.0_r8, sqrt(TUnit%area(iunit)))
if(TUnit%hlen(iunit) > hlen_max) then
TUnit%hlen(iunit) = hlen_max ! allievate the outlier in drainag\e density estimation. TO DO
end if
Expand Down

0 comments on commit 0bb2565

Please sign in to comment.