pub struct EmbeddedMicrostripInput {
pub width: f64,
pub height: f64,
pub thickness: f64,
pub er: f64,
pub cover_height: f64,
pub frequency: f64,
}Expand description
Inputs for embedded 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).
er: f64Substrate relative permittivity.
cover_height: f64Cover height — dielectric above the trace (mils). When 0, result equals the surface microstrip.
frequency: f64Frequency (Hz). Passed through to the surface microstrip calculation.
Auto Trait Implementations§
impl Freeze for EmbeddedMicrostripInput
impl RefUnwindSafe for EmbeddedMicrostripInput
impl Send for EmbeddedMicrostripInput
impl Sync for EmbeddedMicrostripInput
impl Unpin for EmbeddedMicrostripInput
impl UnsafeUnpin for EmbeddedMicrostripInput
impl UnwindSafe for EmbeddedMicrostripInput
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