pub struct CrosstalkInput {
pub rise_time_ns: f64,
pub voltage: f64,
pub coupled_length_mils: f64,
pub spacing_mils: f64,
pub height_mils: f64,
pub er: f64,
pub trace_width_mils: f64,
}Expand description
Inputs for crosstalk estimation.
Fields§
§rise_time_ns: f64Signal rise time (ns).
voltage: f64Signal voltage (V).
coupled_length_mils: f64Coupled (parallel) trace length (mils).
spacing_mils: f64Edge-to-edge spacing between traces (mils).
height_mils: f64Dielectric height — trace to ground plane (mils).
er: f64Substrate relative permittivity.
trace_width_mils: f64Trace width (mils). Used for Er_eff calculation.
Auto Trait Implementations§
impl Freeze for CrosstalkInput
impl RefUnwindSafe for CrosstalkInput
impl Send for CrosstalkInput
impl Sync for CrosstalkInput
impl Unpin for CrosstalkInput
impl UnsafeUnpin for CrosstalkInput
impl UnwindSafe for CrosstalkInput
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