JouleHeating
JouleHeating
JouleHeating(
transit: floatArrayLike,
magnetic_coeff: floatArrayLike,
temperature_coeff_linear: floatArrayLike,
linear_resistance_dc_20c: floatArrayLike,
reference_temperature: floatArrayLike = 20.0,
**kwargs: Any,
)
Bases: PowerTerm
Joule heating term.
If more than one input are numpy arrays, they should have the same size.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
float | ndarray
|
Transit intensity (A). |
required |
|
float | ndarray
|
Coefficient for magnetic effects (—). |
required |
|
float | ndarray
|
Linear resistance augmentation with temperature (K⁻¹). |
required |
|
float | ndarray
|
Electric resistance per unit length (DC) at 20°C (Ω·m⁻¹). |
required |
|
float | ndarray
|
Reference temperature (°C). The default is 20. |
20.0
|
Source code in src/thermohl/power/cigre/joule_heating.py
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 | |
derivative
derivative(
conductor_temperature: floatArrayLike,
) -> floatArrayLike
Compute joule heating derivative.
If more than one input are numpy arrays, they should have the same size.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
float | ndarray
|
Conductor temperature (°C). |
required |
Returns:
| Type | Description |
|---|---|
floatArrayLike
|
float | numpy.ndarray: Power term derivative (W·m⁻¹·K⁻¹). |
Source code in src/thermohl/power/cigre/joule_heating.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
value
value(
conductor_temperature: floatArrayLike,
) -> floatArrayLike
Compute joule heating.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
float | ndarray
|
Conductor temperature (°C). |
required |
Returns:
| Type | Description |
|---|---|
floatArrayLike
|
float | numpy.ndarray: Power term value (W·m⁻¹). |
Source code in src/thermohl/power/cigre/joule_heating.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |