Struct nyx_space::io::gravity::HarmonicsMem[][src]

pub struct HarmonicsMem { /* fields omitted */ }

HarmonicsMem loads the requested gravity potential files and stores them in memory (in a HashMap).

WARNING: This memory backend may require a lot of RAM (e.g. EMG2008 2190x2190 requires nearly 400 MB of RAM).

Implementations

impl HarmonicsMem[src]

pub fn from_j2(j2: f64) -> HarmonicsMem[src]

Initialize HarmonicsMem with a custom J2 value

pub fn j2_jgm3() -> HarmonicsMem[src]

Initialize HarmonicsMem as an EARTH J2 only using the JGM3 model (available in GMAT)

Use the embedded Earth parameter. If others are needed, load from from_shadr or from_egm. WARNING: This is an EARTH gravity model, and should not be used around any other body.

pub fn j2_jgm2() -> HarmonicsMem[src]

Initialize HarmonicsMem as an EARTH J2 only using the JGM2 model (available in GMAT)

Use the embedded Earth parameter. If others are needed, load from from_shadr or from_egm. WARNING: This is an EARTH gravity model, and should not be used around any other body.

pub fn j2_egm2008() -> HarmonicsMem[src]

Initialize HarmonicsMem as J2 only using the EGM2008 model (from the GRACE mission, best model as of 2018)

WARNING: This is an EARTH gravity model, and should not be used around any other body.

pub fn from_shadr(
    filepath: &str,
    degree: usize,
    order: usize,
    gunzipped: bool
) -> Result<HarmonicsMem, ParsingError>
[src]

Initialize HarmonicsMem from the file path (must be a gunzipped file)

Gravity models provided by nyx: + EMG2008 to 2190 for Earth (tide free) + Moon to 1500 (from SHADR file) + Mars to 120 (from SHADR file) + Venus to 150 (from SHADR file)

pub fn from_egm(
    filepath: &str,
    degree: usize,
    order: usize,
    gunzipped: bool
) -> Result<HarmonicsMem, ParsingError>
[src]

pub fn from_cof(
    filepath: &str,
    degree: usize,
    order: usize,
    gunzipped: bool
) -> Result<HarmonicsMem, ParsingError>
[src]

Trait Implementations

impl Clone for HarmonicsMem[src]

impl GravityPotentialStor for HarmonicsMem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,