Skip to main content

TimeSeriesRecord

Struct TimeSeriesRecord 

Source
pub struct TimeSeriesRecord {
Show 44 fields pub time_s: f64, pub ep_j: f64, pub ep_gj: f64, pub temperature_k: f64, pub temperature_c: f64, pub y_m: f64, pub v_mps: f64, pub command_fraction: f64, pub active_segment: String, pub requested_actuator_power_w: f64, pub delivered_actuator_power_w: f64, pub central_transfer_power_w: f64, pub commanded_recharge_power_w: f64, pub parasitic_loss_w: f64, pub heat_generation_w: f64, pub heat_rejection_w: f64, pub gain: f64, pub damping: f64, pub stiffness: f64, pub mechanical_force_n: f64, pub acceleration_mps2: f64, pub delivered_ratio: f64, pub saturation_fraction: f64, pub ep_dot_j_per_s: f64, pub temperature_dot_k_per_s: f64, pub mechanical_power_w: f64, pub authority_utilization: f64, pub reduced_response_target_y_m: f64, pub reduced_response_target_rate_mps: f64, pub reduced_response_error_m: f64, pub reduced_response_error_rate_mps: f64, pub lyapunov_v: f64, pub lyapunov_dv_dt: f64, pub raw_next_ep_j: f64, pub raw_next_temperature_k: f64, pub raw_next_y_m: f64, pub raw_next_v_mps: f64, pub ep_clamped: bool, pub temperature_clamped: bool, pub y_clamped: bool, pub ydot_clamped: bool, pub near_admissible_boundary: bool, pub outside_admissible_region: bool, pub admissible_margin_fraction: f64,
}

Fields§

§time_s: f64§ep_j: f64§ep_gj: f64§temperature_k: f64§temperature_c: f64§y_m: f64§v_mps: f64§command_fraction: f64§active_segment: String§requested_actuator_power_w: f64§delivered_actuator_power_w: f64§central_transfer_power_w: f64§commanded_recharge_power_w: f64§parasitic_loss_w: f64§heat_generation_w: f64§heat_rejection_w: f64§gain: f64§damping: f64§stiffness: f64§mechanical_force_n: f64§acceleration_mps2: f64§delivered_ratio: f64§saturation_fraction: f64§ep_dot_j_per_s: f64§temperature_dot_k_per_s: f64§mechanical_power_w: f64§authority_utilization: f64§reduced_response_target_y_m: f64§reduced_response_target_rate_mps: f64§reduced_response_error_m: f64§reduced_response_error_rate_mps: f64§lyapunov_v: f64§lyapunov_dv_dt: f64§raw_next_ep_j: f64§raw_next_temperature_k: f64§raw_next_y_m: f64§raw_next_v_mps: f64§ep_clamped: bool§temperature_clamped: bool§y_clamped: bool§ydot_clamped: bool§near_admissible_boundary: bool§outside_admissible_region: bool§admissible_margin_fraction: f64

Trait Implementations§

Source§

impl Clone for TimeSeriesRecord

Source§

fn clone(&self) -> TimeSeriesRecord

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TimeSeriesRecord

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for TimeSeriesRecord

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for TimeSeriesRecord

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,