Skip to main content

SweepCaseSummary

Struct SweepCaseSummary 

Source
pub struct SweepCaseSummary {
Show 40 fields pub case_id: String, pub group: String, pub note: String, pub scenario: String, pub output_dir: String, pub success: bool, pub continuous_power_mw: f64, pub burst_power_mw: f64, pub burst_duration_s: f64, pub pulse_energy_gj: f64, pub initial_ep_gj: f64, pub thermal_rejection_mw_per_k: f64, pub actuator_demand_scale: f64, pub damping_scale: f64, pub stiffness_scale: f64, pub burst_cadence_s: Option<f64>, pub allocation_strategy: Option<String>, pub min_ep_gj: f64, pub energy_depleted_gj: f64, pub peak_temperature_k: f64, pub peak_temperature_c: f64, pub time_above_thermal_threshold_s: f64, pub recharge_time_s: Option<f64>, pub time_to_any_threshold_s: Option<f64>, pub first_local_buffer_breach_s: Option<f64>, pub first_admissible_breach_s: Option<f64>, pub effective_duty_cycle: f64, pub recharge_readiness_fraction: f64, pub successful_burst_fraction: f64, pub mean_authority_utilization: f64, pub mean_delivered_ratio: f64, pub degraded_state_fraction: f64, pub min_local_buffer_mj: f64, pub local_imbalance_max_mj: f64, pub saturation_count: usize, pub delivered_mechanical_work_j: f64, pub energy_breach: bool, pub thermal_breach: bool, pub local_buffer_breach: bool, pub saturation_breach: bool,
}

Fields§

§case_id: String§group: String§note: String§scenario: String§output_dir: String§success: bool§continuous_power_mw: f64§burst_power_mw: f64§burst_duration_s: f64§pulse_energy_gj: f64§initial_ep_gj: f64§thermal_rejection_mw_per_k: f64§actuator_demand_scale: f64§damping_scale: f64§stiffness_scale: f64§burst_cadence_s: Option<f64>§allocation_strategy: Option<String>§min_ep_gj: f64§energy_depleted_gj: f64§peak_temperature_k: f64§peak_temperature_c: f64§time_above_thermal_threshold_s: f64§recharge_time_s: Option<f64>§time_to_any_threshold_s: Option<f64>§first_local_buffer_breach_s: Option<f64>§first_admissible_breach_s: Option<f64>§effective_duty_cycle: f64§recharge_readiness_fraction: f64§successful_burst_fraction: f64§mean_authority_utilization: f64§mean_delivered_ratio: f64§degraded_state_fraction: f64§min_local_buffer_mj: f64§local_imbalance_max_mj: f64§saturation_count: usize§delivered_mechanical_work_j: f64§energy_breach: bool§thermal_breach: bool§local_buffer_breach: bool§saturation_breach: bool

Trait Implementations§

Source§

impl Clone for SweepCaseSummary

Source§

fn clone(&self) -> SweepCaseSummary

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 SweepCaseSummary

Source§

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

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

impl<'de> Deserialize<'de> for SweepCaseSummary

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 SweepCaseSummary

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>,