pub struct ThermalInput {
pub r_theta_ja: f64,
pub power_w: f64,
pub t_ambient_c: f64,
}Expand description
Inputs for thermal management calculation.
Fields§
§r_theta_ja: f64Thermal resistance, junction-to-ambient (°C/W).
power_w: f64Power dissipation (W).
t_ambient_c: f64Ambient temperature (°C).
Auto Trait Implementations§
impl Freeze for ThermalInput
impl RefUnwindSafe for ThermalInput
impl Send for ThermalInput
impl Sync for ThermalInput
impl Unpin for ThermalInput
impl UnsafeUnpin for ThermalInput
impl UnwindSafe for ThermalInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more