pub struct GroundDynamics {}Trait Implementations§
Source§impl Clone for GroundDynamics
impl Clone for GroundDynamics
Source§fn clone(&self) -> GroundDynamics
fn clone(&self) -> GroundDynamics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Dynamics for GroundDynamics
impl Dynamics for GroundDynamics
type StateType = GroundAsset
Source§type HyperdualSize = Const<6>
type HyperdualSize = Const<6>
The state of the associated hyperdual state, almost always StateType + U1
Source§fn eom(
&self,
_delta_t: f64,
_state_vec: &OVector<f64, <Self::StateType as State>::VecLength>,
state_ctx: &Self::StateType,
_almanac: Arc<Almanac>,
) -> Result<OVector<f64, <Self::StateType as State>::VecLength>, DynamicsError>
fn eom( &self, _delta_t: f64, _state_vec: &OVector<f64, <Self::StateType as State>::VecLength>, state_ctx: &Self::StateType, _almanac: Arc<Almanac>, ) -> Result<OVector<f64, <Self::StateType as State>::VecLength>, DynamicsError>
Defines the equations of motion for these dynamics, or a combination of provided dynamics.
The time delta_t is in seconds PAST the context epoch. The state vector is the state which
changes for every intermediate step of the integration. The state context is the state of
what is being propagated, it should allow rebuilding a new state context from the
provided state vector.
Source§fn dual_eom(
&self,
_delta_t: f64,
osc: &Self::StateType,
_almanac: Arc<Almanac>,
) -> Result<(OVector<f64, <Self::StateType as State>::Size>, OMatrix<f64, <Self::StateType as State>::Size, <Self::StateType as State>::Size>), DynamicsError>
fn dual_eom( &self, _delta_t: f64, osc: &Self::StateType, _almanac: Arc<Almanac>, ) -> Result<(OVector<f64, <Self::StateType as State>::Size>, OMatrix<f64, <Self::StateType as State>::Size, <Self::StateType as State>::Size>), DynamicsError>
Defines the equations of motion for Dual numbers for these dynamics.
All dynamics need to allow for automatic differentiation. However, if differentiation is not supported,
then the dynamics should prevent initialization with a context which has an STM defined.
Source§fn finally(
&self,
next_state: Self::StateType,
_almanac: Arc<Almanac>,
) -> Result<Self::StateType, DynamicsError>
fn finally( &self, next_state: Self::StateType, _almanac: Arc<Almanac>, ) -> Result<Self::StateType, DynamicsError>
Optionally performs some final changes after each successful integration of the equations of motion.
For example, this can be used to update the Guidance mode.
NOTE: This function is also called just prior to very first integration step in order to update the initial state if needed.
Auto Trait Implementations§
impl Freeze for GroundDynamics
impl RefUnwindSafe for GroundDynamics
impl Send for GroundDynamics
impl Sync for GroundDynamics
impl Unpin for GroundDynamics
impl UnsafeUnpin for GroundDynamics
impl UnwindSafe for GroundDynamics
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.