Skip to content

Commit

Permalink
BUG: wrong model field
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuMorlighem committed Feb 1, 2025
1 parent 450ac08 commit 6ec7aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/m/classes/hydrologyshakti.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def checkconsistency(self, md, solution, analyses): # {{{
md = checkfield(md, 'fieldname', 'hydrology.neumannflux', 'timeseries', 1, 'NaN', 1, 'Inf', 1)
md = checkfield(md, 'fieldname', 'hydrology.spchead', 'Inf', 1, 'timeseries', 1)
md = checkfield(md, 'fieldname', 'hydrology.relaxation', '>=', 0)
md = checkfield(md, 'fieldname', 'materials.storage', '>', 0, 'universal', 1, 'NaN', 1, 'Inf', 1)
md = checkfield(md, 'fieldname', 'hydrology.storage', '>=', 0, 'universal', 1, 'NaN', 1, 'Inf', 1)
md = checkfield(md, 'fieldname', 'hydrology.requested_outputs', 'stringrow', 1)
return md
# }}}
Expand Down

0 comments on commit 6ec7aad

Please sign in to comment.