Skip to content

Commit cb85f91

Browse files
Merge pull request #1018 from NCAR/fix-wrf-pot-temp-interp
fix: qty_potential_temperature 3d interpolate in wrf model_mod
2 parents ca5ab7f + 6f84545 commit cb85f91

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ individual files.
2222

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

25+
**February 4 2026 :: IODA2obsq. Tag v11.21.1**
26+
27+
New feature:
28+
- Radiances added to pyjedi ioda2obsq tool for DART JEDI interoperability
29+
30+
*contributed by Stephen Herbener, as part of DART collaboration with JCSDA*
31+
32+
Bug-fix:
33+
- WRF model_mod bug-fix for 3D potential temperature interpolation
34+
2535
**January 8 2026 :: ARVOR Float and SVP Drifters. Tag v11.20.0**
2636

2737
New Features:

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = 'Data Assimilation Research Section'
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = '11.20.0'
24+
release = '11.20.1'
2525
root_doc = 'index'
2626

2727
# -- General configuration ---------------------------------------------------

models/wrf/model_mod.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1832,7 +1832,7 @@ subroutine model_interpolate(state_handle, ens_size, location, obs_kind, expecte
18321832
iur = get_dart_vector_index(ur(1), ur(2), uniquek(uk)+1, domain_id(id), wrf%dom(id)%type_t)
18331833

18341834
x_ill = get_state(ill, state_handle)
1835-
x_ill = get_state(ill, state_handle)
1835+
x_iul = get_state(iul, state_handle)
18361836
x_ilr = get_state(ilr, state_handle)
18371837
x_iur = get_state(iur, state_handle)
18381838

0 commit comments

Comments
 (0)