You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Netcdf thinks you are defining the unlimited dimension again.
The 3D sphere obs_diag obs_kind_mod::max_defined_types_of_obs. I'm not sure at the moment why streamflow_obs_diag has a local max_defined_types_of_obs
"! All streamflow observations are identity observations at this point" is not true right?
! Check to see if it is an identity observation.
- ! All streamflow observations are identity observations at this point
if (flavor < 0) then
! Not every model location has a streamflow observation, but the
! location can be anywhere in the model state, so the 'flavor' can
! be quite large. We cannot allocate that much space, so we create
! a lookup array ....
- max_defined_types_of_obs = lookup_flavor(flavor) !HK max_defined_types_of_obs is unset for real obs.
if (flavor > num_obs_types) then
write(string1,*)'unsupported identity observation ',-1*flavor
write(string2,*)'Increase "num_obs_types" and recompile.'
call error_handler(E_ERR, 'obs_diag', string1, source, text2=string2)
endif
obsname = 'STREAM_FLOW'
Nidentity = Nidentity + 1
endif
The text was updated successfully, but these errors were encountered:
🐛 🐛 🐨
Describe the bug
Errors out with message about NC_UNLIMITED size already in use.
Error Message
Which model(s) are you working with?
wrf_hydro
Version of DART
Which version of DART are you using?
Reported with v9.9.0-637-g654607621
Reproduced with v9.13.2
Have you modified the DART code?
Yes - v9.9.0-637-g654607621 has the fix for bug: #323
v9.13.2 nope.
Build information
Please describe:
Suspected cause
The error is happening because streamflow_obs_diag.f90 has a local max_defined_types that is undefined
There is
but this is in an if statement that is not entered.
So when you get to the netcdf writing:
so for this line:
Netcdf thinks you are defining the unlimited dimension again.
The 3D sphere
obs_diag obs_kind_mod::max_defined_types_of_obs
. I'm not sure at the moment why streamflow_obs_diag has a localmax_defined_types_of_obs
"! All streamflow observations are identity observations at this point" is not true right?
The text was updated successfully, but these errors were encountered: