From 1049f02a8530db0820e6d02e9154eb67519547fc Mon Sep 17 00:00:00 2001 From: Daafip Date: Mon, 8 Apr 2024 10:37:46 +0200 Subject: [PATCH] Typo in SP, Should be Sp --- src/HBV/HBV_bmi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HBV/HBV_bmi.py b/src/HBV/HBV_bmi.py index a55eb67..d29c5e2 100644 --- a/src/HBV/HBV_bmi.py +++ b/src/HBV/HBV_bmi.py @@ -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])