コンテンツにスキップ

AtmosphereModel

このコンテンツはまだ日本語訳がありません。

Defined in: lib.rs:74

pub trait AtmosphereModel: [Send](https://doc.rust-lang.org/std/marker/trait.Send.html) + [Sync](https://doc.rust-lang.org/std/marker/trait.Sync.html)

An atmospheric density model.

Computes density [kg/m³] from geodetic position and epoch. The model is frame-agnostic: it receives pre-computed geodetic coordinates rather than frame-typed ECI vectors. The frame-to-geodetic conversion is the caller’s responsibility.

fn density(&self, input: &AtmosphereInput<’_>) -> f64

Compute atmospheric density [kg/m³].