SolarHeating
SolarHeating
SolarHeating(
latitude: floatArrayLike,
altitude: floatArrayLike,
cable_azimuth: floatArrayLike,
datetime_utc: datetimeArrayLike,
outer_diameter: floatArrayLike,
solar_absorptivity: floatArrayLike,
solar_irradiance: floatArrayLike,
**kwargs: Any,
)
Bases: SolarHeating
Solar heating term.
If more than one input are numpy arrays, they should have the same size.
:param latitude: Latitude in degrees. :param altitude: Altitude. :param cable_azimuth: Azimuth of the conductor in degrees. :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 irradiance term.
Source code in src/thermohl/power/olla/solar_heating.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | |
derivative
derivative(
conductor_temperature: floatArrayLike,
) -> floatArrayLike
Compute solar heating derivative.
:param conductor_temperature: Conductor temperature. :return: Derivative of solar heating.
Source code in src/thermohl/power/solar_heating.py
134 135 136 137 138 139 140 | |
value
value(
conductor_temperature: floatArrayLike,
) -> floatArrayLike
Compute solar heating.
:param conductor_temperature: Conductor temperature (°C). :return: Power term value (W·m⁻¹).
Source code in src/thermohl/power/solar_heating.py
121 122 123 124 125 126 127 128 129 130 131 132 | |