Skip to main content

ArrheniusModel

Struct ArrheniusModel 

Source
pub struct ArrheniusModel {
    pub alpha_0: f32,
    pub e_a_ev: f32,
    pub label_str: &'static str,
}
Expand description

Arrhenius thermal-acceleration model for semiconductor PA degradation.

k(T) = α₀ · exp(−E_a / (k_B · T))

where T is absolute temperature [K], k_B = 8.617×10⁻⁵ eV/K, and E_a is the activation energy in eV.

§Pre-defined Constants

  • GAAS_PHEMT: E_a = 1.6 eV (GaAs pHEMT operating at 125°C)
  • GAN_HEMT: E_a = 2.1 eV (GaN HEMT operating at 150°C)

Fields§

§alpha_0: f32

Pre-exponential drift-rate factor (unitless multiplier).

§e_a_ev: f32

Activation energy in eV.

§label_str: &'static str

Human-readable identifier.

Implementations§

Source§

impl ArrheniusModel

Source

pub const GAAS_PHEMT: Self

GaAs pHEMT: E_a = 1.6 eV (Kayali 1999 JPL-96-25).

Source

pub const GAN_HEMT: Self

GaN HEMT: E_a = 2.1 eV (Kayali 1999 JPL-96-25, Table 3).

Trait Implementations§

Source§

impl Clone for ArrheniusModel

Source§

fn clone(&self) -> ArrheniusModel

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ArrheniusModel

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PhysicsModel for ArrheniusModel

Source§

fn predict_drift_rate(&self, temperature_celsius: f32) -> f32

Temperature in Celsius → predicted drift rate (normalised, unitless).

Source§

fn label(&self) -> &'static str

Short human-readable label for this model instance.
Source§

fn reference(&self) -> &'static str

Primary literature reference for the model.
Source§

fn maps_to_reason(&self) -> ReasonCode

The DSFB ReasonCode this model most directly corresponds to.
Source§

impl Copy for ArrheniusModel

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.