From 31b9b4aec29f3be820b387b5920e230ff42df134 Mon Sep 17 00:00:00 2001 From: Halvor Lund Date: Mon, 10 Jun 2024 16:31:29 +0200 Subject: [PATCH] Fix reference to moved function --- examples/plot_solar_heating_comparison.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/plot_solar_heating_comparison.py b/examples/plot_solar_heating_comparison.py index 3680781..33cdd2e 100644 --- a/examples/plot_solar_heating_comparison.py +++ b/examples/plot_solar_heating_comparison.py @@ -13,7 +13,7 @@ import matplotlib.pyplot as plt import numpy as np -from linerate.equations import cigre601, ieee738, solar_angles +from linerate.equations import cigre601, ieee738, solar_angles, solar_heating from linerate.equations.math import switch_cos_sin ############################################################################### @@ -72,7 +72,7 @@ # Calculate P_c with different varying parameters # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - P_s_cigre = cigre601.solar_heating.compute_solar_heating(alpha_s, I_T, D) + P_s_cigre = solar_heating.compute_solar_heating(alpha_s, I_T, D) P_s_ieee = ieee738.solar_heating.compute_solar_heating(alpha_s, Q_se, cos_theta, D) ###############################################################################