#[non_exhaustive]pub struct NodalGeneratorData {
pub q: Vec<f64>,
pub c: Vec<f64>,
pub c0: Vec<f64>,
pub pmax: Vec<f64>,
pub pmin: Vec<f64>,
pub has_gen: Vec<bool>,
}Expand description
Generator data in dense bus order, aggregated over the generators at each
bus. See DcOpfInstance::nodal_generator_data.
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.q: Vec<f64>§c: Vec<f64>§c0: Vec<f64>§pmax: Vec<f64>§pmin: Vec<f64>§has_gen: Vec<bool>Which buses host a generator. A bus without one has a zero range and a zero cost, which a formulation must not read as a free generator.
Trait Implementations§
Source§impl Clone for NodalGeneratorData
impl Clone for NodalGeneratorData
Source§fn clone(&self) -> NodalGeneratorData
fn clone(&self) -> NodalGeneratorData
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 NodalGeneratorData
impl Debug for NodalGeneratorData
Source§impl<'de> Deserialize<'de> for NodalGeneratorData
impl<'de> Deserialize<'de> for NodalGeneratorData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 PartialEq for NodalGeneratorData
impl PartialEq for NodalGeneratorData
Source§fn eq(&self, other: &NodalGeneratorData) -> bool
fn eq(&self, other: &NodalGeneratorData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodalGeneratorData
impl Serialize for NodalGeneratorData
impl StructuralPartialEq for NodalGeneratorData
Auto Trait Implementations§
impl Freeze for NodalGeneratorData
impl RefUnwindSafe for NodalGeneratorData
impl Send for NodalGeneratorData
impl Sync for NodalGeneratorData
impl Unpin for NodalGeneratorData
impl UnsafeUnpin for NodalGeneratorData
impl UnwindSafe for NodalGeneratorData
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