Skip to content

Commit 9b62c72

Browse files
fix: qty_potential_temperature 3d interpolate in wrf model_mod
k+1 level was using k value for x_iul value fixes #1011
1 parent ca5ab7f commit 9b62c72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)