pub struct CoplanarInput {
pub width: f64,
pub gap: f64,
pub height: f64,
pub thickness: f64,
pub er: f64,
}Expand description
Inputs for coplanar waveguide (CPW over ground) impedance calculation. All dimensions in mils.
Fields§
§width: f64Center conductor width (mils).
gap: f64Gap between center conductor and coplanar ground (mils).
height: f64Substrate height to bottom ground plane (mils).
thickness: f64Conductor thickness (mils).
er: f64Substrate relative permittivity.
Auto Trait Implementations§
impl Freeze for CoplanarInput
impl RefUnwindSafe for CoplanarInput
impl Send for CoplanarInput
impl Sync for CoplanarInput
impl Unpin for CoplanarInput
impl UnsafeUnpin for CoplanarInput
impl UnwindSafe for CoplanarInput
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