pub struct MicrostripInput {
pub width: f64,
pub height: f64,
pub thickness: f64,
pub er: f64,
pub frequency: f64,
}Expand description
Inputs for microstrip impedance calculation. All dimensions in mils.
Fields§
§width: f64Conductor width (mils).
height: f64Dielectric height — distance from trace to ground plane (mils).
thickness: f64Conductor thickness (mils). Usually from copper weight.
er: f64Substrate relative permittivity (e.g., 4.6 for FR-4).
frequency: f64Frequency (Hz). Used for Kirschning-Jansen dispersion correction.
Auto Trait Implementations§
impl Freeze for MicrostripInput
impl RefUnwindSafe for MicrostripInput
impl Send for MicrostripInput
impl Sync for MicrostripInput
impl Unpin for MicrostripInput
impl UnsafeUnpin for MicrostripInput
impl UnwindSafe for MicrostripInput
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