-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete implementation of Cigre 207, extract common solar heating
- Loading branch information
Halvor Lund
committed
May 30, 2024
1 parent
fe42a31
commit c2ef481
Showing
13 changed files
with
318 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from linerate.units import WattPerSquareMeter, Unitless, Meter, WattPerMeter | ||
|
||
|
||
def compute_solar_heating( | ||
absorptivity: Unitless, | ||
global_radiation_intensity: WattPerSquareMeter, | ||
conductor_diameter: Meter, | ||
) -> WattPerMeter: | ||
r"""Compute the solar heating experienced by the conductor. | ||
Equation (8) on page 18 of :cite:p:`cigre601` and (11) on page 4 in :cite:p:`cigre207`. | ||
Parameters | ||
---------- | ||
absorptivity: | ||
:math:`\alpha_s`. Material constant. According to :cite:p:`cigre601`, it starts at | ||
approximately 0.2 for new cables and reaches a constant value of approximately 0.9 | ||
after about one year. | ||
global_radiation_intensity: | ||
:math:`I_T~\left[\text{W}~\text{m}^{-2}\right]`.The global radiation intensity. | ||
conductor_diameter: | ||
:math:`D~\left[\text{m}\right]`. Outer diameter of the conductor. | ||
Returns | ||
------- | ||
Union[float, float64, ndarray[Any, dtype[float64]]] | ||
:math:`P_S~\left[\text{W}~\text{m}^{-1}\right]`. The solar heating of the conductor | ||
""" | ||
alpha_s = absorptivity | ||
I_T = global_radiation_intensity | ||
D = conductor_diameter | ||
|
||
return alpha_s * I_T * D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.