Skip to content

Commit

Permalink
correct compensating error
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Sep 30, 2021
1 parent 593566d commit 4f99c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streams/dshr_strdata_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ subroutine shr_strdata_readLBUB(sdat, ns, mDate, mSec, newData, istr, rc)
call ESMF_TraceRegionExit(trim(istr)//'_setup')

! if model current date is outside of model lower or upper bound - find the stream bounds
if (rDateM < rDateLB .or. rDateM > rDateUB) then
if (rDateM < rDateLB .or. rDateM >= rDateUB) then
call ESMF_TraceRegionEnter(trim(istr)//'_fbound')
call shr_stream_findBounds(stream, mDate, mSec, sdat%masterproc, &
sdat%pstrm(ns)%ymdLB, dDateLB, sdat%pstrm(ns)%todLB, n_lb, filename_lb, &
Expand Down

0 comments on commit 4f99c9f

Please sign in to comment.