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
During the run of the function get_sigmoid_parameters() in heating_building.py the following FutureWarning is raised:
FutureWarning: Calling float on a single element Series is deprecated and will raise a TypeError in the future. Use float(ser.iloc[0]) instead
The warning concerns the script between lines 271-275.
a = float(sigmoid["parameter_a"])
b = float(sigmoid["parameter_b"])
c = float(sigmoid["parameter_c"])
if self.ww_incl:
d = float(sigmoid["parameter_d"])
I ran this script through the oemof-B3 model with a Windows 10 operating system and Python 3.10.12
This could be adapted to avoid TypeErrors.
The text was updated successfully, but these errors were encountered:
During the run of the function
get_sigmoid_parameters()
inheating_building.py
the following FutureWarning is raised:The warning concerns the script between lines 271-275.
I ran this script through the oemof-B3 model with a Windows 10 operating system and Python 3.10.12
This could be adapted to avoid TypeErrors.
The text was updated successfully, but these errors were encountered: