SolarHeating
SolarHeating
SolarHeating(
latitude: floatArrayLike,
cable_azimuth: floatArrayLike,
albedo: floatArrayLike,
datetime_utc: datetimeArrayLike,
outer_diameter: floatArrayLike,
solar_absorptivity: floatArrayLike,
solar_irradiance: floatArrayLike,
**kwargs: Any,
)
Bases: PowerTerm
Solar heating term.
:param latitude: Latitude in degrees. :param cable_azimuth: Azimuth of the conductor in degrees. :param albedo: Albedo. :param datetime_utc: Datetime in UTC. :param outer_diameter: external diameter of the conductor. :param solar_absorptivity: Solar absorption coefficient of the conductor. :param solar_irradiance: Optional precomputed solar radiation term.
Source code in src/thermohl/power/cigre/solar_heating.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | |
derivative
derivative(
conductor_temperature: floatArrayLike,
) -> floatArrayLike
Compute solar heating derivative.
Source code in src/thermohl/power/cigre/solar_heating.py
124 125 126 | |
value
value(
conductor_temperature: floatArrayLike,
) -> floatArrayLike
Compute solar heating. If more than one input are numpy arrays, they should have the same size.
:param conductor_temperature: Conductor temperature (°C). :return: Power term value (W·m⁻¹).
Source code in src/thermohl/power/cigre/solar_heating.py
110 111 112 113 114 115 116 117 118 119 120 121 122 | |