Skip to content

Commit e08756e

Browse files
Merge pull request #1005 from NCAR/roms-ssh-required
ROMS Rutgers assert sea surface height is in the state for model_interpolate
2 parents b249989 + 07dbbc8 commit e08756e

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.rst

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

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

25+
**December 3 2025 :: BAMS article. Tag 11.19.1**
26+
27+
Documentation updates:
28+
29+
- How to cite DART
30+
- Bulletin of the American Meteorological Society 2025 article
31+
32+
Bug-fix:
33+
34+
- Assert sea surface height is present in the state for ROMS Rutgers
35+
model_interpolate
36+
2537
**November 13 2025 :: HF Radar converter. Tag 11.19.0**
2638

2739
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.19.0'
24+
release = '11.19.1'
2525
root_doc = 'index'
2626

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

models/ROMS_rutgers/model_mod.f90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ subroutine model_interpolate(state_handle, ens_size, location, qty, expected_obs
402402
! because we need to compute the depth using it.
403403
! Recall that SSH can be both -ve and +ve
404404
sshid = get_varid_from_kind(domid, QTY_SEA_SURFACE_HEIGHT)
405+
if (sshid < 0 ) call error_handler(E_ERR, 'model_interpolate', 'requires sea surface height in the state')
405406
do i = 1, Nc
406407
dartidx = get_dart_vector_index(lon_c(i), lat_c(i), 1, domid, sshid)
407408
SSHcorn(i, :) = get_state(dartidx, state_handle)

0 commit comments

Comments
 (0)