pub struct JetStream {
pub altitude_m: f32,
pub core_speed: f32,
pub direction: f32,
pub vertical_width_m: f32,
pub wave_amplitude: f32,
pub wave_number: f32,
pub wave_phase: f32,
pub wave_phase_speed: f32,
}Expand description
A jet stream — a narrow band of fast upper-level wind.
Fields§
§altitude_m: f32Core altitude (m).
core_speed: f32Core wind speed (m/s).
direction: f32Direction (radians from +X axis).
vertical_width_m: f32Vertical half-width (m) — Gaussian roll-off.
wave_amplitude: f32Horizontal sinusoidal amplitude for Rossby wave undulation.
wave_number: f32Rossby wave number (radians per metre along the stream).
wave_phase: f32Phase offset (radians).
wave_phase_speed: f32Phase advance speed (radians/second).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JetStream
impl RefUnwindSafe for JetStream
impl Send for JetStream
impl Sync for JetStream
impl Unpin for JetStream
impl UnsafeUnpin for JetStream
impl UnwindSafe for JetStream
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.