#[non_exhaustive]pub struct LinDist3FlowDispatchChannel {
pub active_min: Option<f64>,
pub active_max: Option<f64>,
pub reactive_min: Option<f64>,
pub reactive_max: Option<f64>,
pub apparent_power_limit: Option<f64>,
pub current_limit: Option<f64>,
pub squared_winding_voltage: LinDist3FlowAffineExpression,
pub reference_winding_voltage: f64,
pub active_objective_coefficient: f64,
}Expand description
Bounds, objective coefficient, and SOC data for one dispatch channel.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.active_min: Option<f64>§active_max: Option<f64>§reactive_min: Option<f64>§reactive_max: Option<f64>§apparent_power_limit: Option<f64>§current_limit: Option<f64>§squared_winding_voltage: LinDist3FlowAffineExpressionAffine live |D v|² used by the rotated current cone.
reference_winding_voltage: f64§active_objective_coefficient: f64Linear objective coefficient on active watts.
Trait Implementations§
Source§impl Clone for LinDist3FlowDispatchChannel
impl Clone for LinDist3FlowDispatchChannel
Source§fn clone(&self) -> LinDist3FlowDispatchChannel
fn clone(&self) -> LinDist3FlowDispatchChannel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinDist3FlowDispatchChannel
impl Debug for LinDist3FlowDispatchChannel
Source§impl PartialEq for LinDist3FlowDispatchChannel
impl PartialEq for LinDist3FlowDispatchChannel
Source§fn eq(&self, other: &LinDist3FlowDispatchChannel) -> bool
fn eq(&self, other: &LinDist3FlowDispatchChannel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinDist3FlowDispatchChannel
Auto Trait Implementations§
impl Freeze for LinDist3FlowDispatchChannel
impl RefUnwindSafe for LinDist3FlowDispatchChannel
impl Send for LinDist3FlowDispatchChannel
impl Sync for LinDist3FlowDispatchChannel
impl Unpin for LinDist3FlowDispatchChannel
impl UnsafeUnpin for LinDist3FlowDispatchChannel
impl UnwindSafe for LinDist3FlowDispatchChannel
Blanket Implementations§
impl<T> Allocation for T
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