JouleHeating
JouleHeating
JouleHeating(
transit: floatArrayLike,
temp_low: floatArrayLike,
temp_high: floatArrayLike,
linear_resistance_temp_low: floatArrayLike,
linear_resistance_temp_high: floatArrayLike,
**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
|
Temperature for linear_resistance_temp_low measurement (°C). |
required |
|
float | ndarray
|
Temperature for linear_resistance_temp_high measurement (°C). |
required |
|
float | ndarray
|
Electric resistance per unit length at temp_low (Ω·m⁻¹). |
required |
|
float | ndarray
|
Electric resistance per unit length at temp_high (Ω·m⁻¹). |
required |
Source code in src/thermohl/power/ieee/joule_heating.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
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/ieee/joule_heating.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | |
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/ieee/joule_heating.py
68 69 70 71 72 73 74 75 76 77 78 | |