Expand description
Planetary ephemerides backed by JPL DE-series SPK files.
Pure-Rust replacement for JEOD’s models/environment/ephemerides/ DE4xx
reader. Where JEOD links a hand-rolled binary loader to JPL DE405/DE421
kernels, this crate delegates the file format and Chebyshev evaluation to
the anise crate (a Rust SPICE/NAIF reimplementation) and exposes a
thin, frame-tagged API on top.
§Public surface
Ephemeris— owns ananise::Almanacand answers position/velocity queries from.bspfiles (e.g.,de421.bsp,de440.bsp). All vectors are returned in J2000 ICRF, in meters and m/s, wrapped asPosition<RootInertial>/Velocity<RootInertial>fromastrodyn_quantities.EphemerisBody— the body-identifier enum that maps JEOD’sEphemerisBodyconstants toanise’s NAIF integer IDs (Sun, Moon, Earth, the planets and barycenters needed by Tier 3 tests).EphemerisError— fail-loudly error type for missing files, unsupported bodies, or out-of-range epochs.
§Role in the pipeline
The ephemeris populates third-body positions for gravity (Sun and Moon
perturbations on Earth orbits, planet-on-planet perturbations on
interplanetary trajectories) and for radiation-pressure / shadow geometry
in astrodyn_interactions. JEOD source: models/environment/ephemerides/.
Pure Rust, zero Bevy dependency.
§Example
Resolve DE421 via data::load (in-workspace assets/ during dev,
cached fetch from the kernels-v1 GitHub Release for downstream
consumers), then query the Sun’s position relative to the
solar-system barycenter at J2000.0 (TDB Julian Day 2_451_545.0):
use astrodyn_ephemeris::{data, Ephemeris, EphemerisBody};
let bytes = data::load(&data::DE421)?;
let eph = Ephemeris::from_bsp_bytes(&bytes)?;
let (pos, _vel) = eph.get_state_typed(
EphemerisBody::Sun,
EphemerisBody::SolarSystemBarycenter,
2_451_545.0,
)?;
// The Sun is close to the barycenter (~1 solar radius offset).
assert!(pos.raw_si().length() < 2.0e9);Re-exports§
pub use bodies::EphemerisBody;pub use ephemeris::Ephemeris;pub use ephemeris::EphemerisError;
Modules§
- assets
- Path resolvers for the in-workspace kernel fixtures.
- bodies
- Solar-system body identifier enum used by
crate::Ephemerisqueries. - data
- Catalog of ephemeris and orientation kernels distributed alongside the crate.
- ephemeris
Ephemerisreader and theEphemerisErrorfailure type.
Structs§
- Body
Attitude - RootInertial → body attitude of vehicle
V, witnessed unit-norm and scalar-first / left-transformation (JEOD canonical). - Body
Frame - Body (CoM-centered) frame of vehicle
V. Rotates with the vehicle. - Earth
- Planet marker for Earth.
- Ecef
- Earth-centered Earth-fixed frame (ITRF-like). Rotates with Earth.
- Frame
Transform - Proper rotation taking vectors expressed in
Fromto the same vectors expressed inTo. - GMST
- Greenwich Mean Sidereal Time (angle, but seconds-ized by convention).
- GPS
- GPS Time (TAI − 19 s).
- Grav
Param - Gravitational parameter μ = GM tagged with the source planet
P. - Harmonic
Degree - Spherical-harmonic degree or order index. Unitless ordinal.
- Inertia
Tensor - Mass moment of inertia tensor (
kg·m²) expressed in frameF. - Integ
Origin - The integration-frame origin: position and velocity of the integration-frame origin expressed in root-inertial coordinates.
- Integration
Frame - A body’s integration frame — a non-rotating quasi-inertial frame whose origin generally differs from the root inertial origin.
- Left
Transform r' = q r q⁻¹— the JEOD convention.- Lvlh
- Local Vertical / Local Horizontal frame relative to chief vehicle
Chief. Z axis points planet-ward; Y opposes orbital angular momentum; X completes the right-handed triad (approximately along-track in near-circular orbits). - Mars
- Planet marker for Mars.
- Mass
Node - Mass-tree wildcard inertial-flavor frame for kinematic-propagation scratch state.
- Moon
- Planet marker for Moon.
- Ned
- North-East-Down topocentric frame relative to chief vehicle
Chief. - Normalized
Quat - A quaternion witnessed to have unit norm at construction time.
- Planet
Fixed - Planet-fixed frame for any planet
P. Rotates with that planet. - Planet
Inertial - A particular planet’s inertial (non-rotating, J2000-aligned) frame, centered at the planet’s CoM.
- Qty3
- Componentwise 3-vector: each of
x,y,zcarries the dimensionD, and the whole vector carries the frame tagF. - Quat
- Quaternion tagged with its storage layout and transformation convention.
- Right
Transform r' = q⁻¹ r q— the opposite of JEOD; common in many textbooks.- Root
Inertial - The simulation’s root inertial frame — the unique inertial node at the top of the frame tree.
- Scalar
First - Storage layout
[q0, q1, q2, q3]whereq0is the scalar part (JEOD). - Scalar
Last - Storage layout
[x, y, z, w]wherewis the scalar part (glam). - Seconds
Since - Seconds elapsed in the named time scale, measured from that scale’s epoch.
- Self
Planet - Phantom marker for “this entity’s own planet” — used by ECS adapters
whose per-entity components carry
PlanetFixed<P>phantoms but whose planet identity is determined at runtime by the entity itself. - SelfRef
- Phantom marker for “this entity’s own vehicle frame” — used by ECS adapters whose per-entity components carry frame phantoms but whose vehicle identity is determined at runtime by the entity itself.
- Structural
Frame - Structural (geometric-origin) frame of vehicle
V. Rotates with vehicle. - Sun
- Planet marker for Sun.
- TAI
- International Atomic Time.
- TDB
- Barycentric Dynamical Time (relativistic correction to TT).
- TT
- Terrestrial Time (TAI + 32.184 s).
- Time
Converter - Explicit converter between two time scales.
- UT1
- Universal Time 1 (Earth-rotation based).
- UTC
- Coordinated Universal Time (leap-second stepped).
Traits§
- Array3
Ext - Extension trait on
[f64; 3](raw component arrays from CSVs or JEOD initial conditions) producing frame-tagged 3-vectors. - F64Ext
- Unit-construction extension on
f64. - Frame
- Compile-time reference frame tag.
- Layout
- Compile-time quaternion storage layout marker.
- Planet
- Compile-time planet tag used to parameterize planet-fixed frames.
- Time
Scale - Compile-time time-scale tag.
- Transform
- Compile-time quaternion transformation convention marker.
- Vec3Ext
- Extension trait on
glam::DVec3producing frame-tagged 3-vectors. - Vehicle
- Compile-time vehicle tag used to parameterize vehicle-relative frames.
Type Aliases§
- Acceleration
- Acceleration in frame
F. Base SI unit: m/s². - Angular
Acceleration - Angular acceleration in frame
F. Base SI unit: rad/s². - Angular
Momentum - Angular momentum in frame
F. Base SI unit: kg·m²/s. - Angular
Velocity - Angular velocity in frame
F. Base SI unit: rad/s. - Force
- Force in frame
F. Base SI unit: newtons. - Jeod
Quat - The JEOD canonical quaternion type: scalar-first, left-transformation.
- Jerk
- Jerk (time derivative of acceleration) in frame
F. Base SI unit: m/s³. - Mass
Flow Rate - Scalar mass-flow rate.
- Position
- Position in frame
F(default:RootInertial). Base SI unit: meters. - Specific
AngMom - Scalar specific angular momentum.
- Specific
Energy - Scalar specific energy.
- Torque
- Torque in frame
F. Base SI unit: N·m. - Velocity
- Velocity in frame
F. Base SI unit: m/s.