Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix: Use DO I=1,N for interpolated data in routine Check_AvailYMDhm #85

Merged
merged 2 commits into from
Apr 29, 2021

Commits on Apr 28, 2021

  1. Bug fix: Use DO I=1,N for interpolated data in routine Check_AvailYMDhm

    A previous fix in HEMCO 3.0.0-rc.3 changed DO I = 1, N (which would
    have caused an out-of-bounds error) to DO I = 1, N-1 in routine
    Check_AvailYMDhm (in hcoio_util_mod.F90).  However, for
    interpolated data (such as Yuan_XLAI), this causes the check for
    the closest time point to fail.
    
    We have put in a check that sets the upper loop limit to N for
    interpolated data (if HCO_CFLAG_INTER = True), and to N-1 otherwise.
    
    Signed-off-by: Bob Yantosca <[email protected]>
    yantosca committed Apr 28, 2021
    Configuration menu
    Copy the full SHA
    d224b1e View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2021

  1. Configuration menu
    Copy the full SHA
    00148d0 View commit details
    Browse the repository at this point in the history