Struct nyx_space::md::ui::MDProcess [−][src]
pub struct MDProcess<'a> where
DefaultAllocator: Allocator<f64, U6>, {
pub sc_dyn: Arc<SpacecraftDynamics<'a>>,
pub init_state: Spacecraft,
pub formatter: Option<StateFormatter>,
pub prop_time: Option<Duration>,
pub prop_event: Option<ConditionSerde>,
pub prop_tol: f64,
pub name: String,
}Expand description
An MDProcess allows the creation and propagation of a spacecraft subjected to some dynamics
Fields
sc_dyn: Arc<SpacecraftDynamics<'a>>init_state: Spacecraftformatter: Option<StateFormatter>prop_time: Option<Duration>prop_event: Option<ConditionSerde>prop_tol: f64name: StringImplementations
pub fn try_from_scenario(
scen: &ScenarioSerde,
prop_name: String,
stm_flag: bool,
cosm: Arc<Cosm>
) -> Result<(Self, Option<StateFormatter>), ParsingError>
pub fn execute_with(
&mut self,
hdlrs: Vec<Box<dyn MdHdlr<Spacecraft>>>
) -> Result<(), NyxError>
pub fn execute_with(
&mut self,
hdlrs: Vec<Box<dyn MdHdlr<Spacecraft>>>
) -> Result<(), NyxError>
Execute the MD with the provided handlers. Note that you must initialize your own CSV output if that’s desired.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for MDProcess<'a>
impl<'a> !UnwindSafe for MDProcess<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> bool
Checks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SP
The inclusion map: converts self to the equivalent element of its superset.