Skip to content

Commit

Permalink
Fix reference to moved function
Browse files Browse the repository at this point in the history
  • Loading branch information
Halvor Lund committed Jun 10, 2024
1 parent 322af2b commit 31b9b4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/plot_solar_heating_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

###############################################################################
Expand Down Expand Up @@ -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)

###############################################################################
Expand Down

0 comments on commit 31b9b4a

Please sign in to comment.