Skip to content

Commit

Permalink
Merge pull request #10 from Daafip/dev
Browse files Browse the repository at this point in the history
update docs, typo in param names
  • Loading branch information
Daafip authored Apr 8, 2024
2 parents 10ca3c6 + 1049f02 commit d7ec0ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/Forward model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"metadata": {},
"source": [
"# NOTEBOOK FOR REFERENCE ONLY!\n",
"Shows how model is implemented step by step **without** a BMI"
"Shows how model is implemented step by step **without** a BMI<br>\n",
"**And now snow models as implemented in 1.4.0.**"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/HBV/HBV_bmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def updating_dict_var_obj(self) -> None:
def updating_obj_from_dict_var(self) -> None:
"""Function which inverts the dictionary above & sets objects correctly"""
param_names = ["Imax", "Ce", "Sumax", "Beta", "Pmax", "Tlag", "Kf", "Ks", "FM"]
stor_names = ["Si", "Su", "Sf", "Ss", "SP"]
stor_names = ["Si", "Su", "Sf", "Ss", "Sp"]
self.set_pars([self.dict_var_obj[par] for par in param_names])
self.set_storage([self.dict_var_obj[stor] for stor in stor_names])

Expand Down

0 comments on commit d7ec0ea

Please sign in to comment.