Skip to content

Commit

Permalink
Merge pull request #247 from NCAR/quad_val_fix
Browse files Browse the repository at this point in the history
bugfix for issue #246 quad_vals
  • Loading branch information
hkershaw-brown committed Jun 24, 2021
2 parents 23248cb + 69807e8 commit 0af1e6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ individual files.

The changes are now listed with the most recent at the top.

**June 24 2021 :: bug fix for cam-fv model_interpolate. Tag: v.9.11.3**

- cam-fv model_interpolate now passes the correct array slice of quad_vals
to quad_lon_lat_evaluate

**June 24 2021 :: latest version of local particle filter. Tag: v9.11.2**

- latest version of particle filter from Jon Potterjoy
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'Data Assimilation Research Section'

# The full version, including alpha/beta/rc tags
release = '9.11.2'
release = '9.11.3'
master_doc = 'README'

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion models/cam-fv/model_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ subroutine model_interpolate(state_handle, ens_size, location, obs_qty, interp_v
! do the horizontal interpolation for each ensemble member.
! call one at a time to avoid creating temporary arrays
call quad_lon_lat_evaluate(interp_handle, lon_fract, lat_fract, &
quad_vals(:,imem), interp_vals(imem), status_array(imem))
quad_vals(imem,:), interp_vals(imem), status_array(imem))
end do

if (using_chemistry) &
Expand Down

0 comments on commit 0af1e6c

Please sign in to comment.