#[non_exhaustive]pub struct NodalAcGeneratorData {
pub q: Vec<f64>,
pub c: Vec<f64>,
pub c0: Vec<f64>,
pub pmax: Vec<f64>,
pub pmin: Vec<f64>,
pub qmax: Vec<f64>,
pub qmin: Vec<f64>,
pub has_gen: Vec<bool>,
}Expand description
Generator data in dense bus order, aggregated over the generators at each
bus. See AcOpfInstance::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>§qmax: Vec<f64>§qmin: 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. A reactive limit loop reads it to tell a bus that holds its voltage from one that cannot.
Trait Implementations§
Source§impl Clone for NodalAcGeneratorData
impl Clone for NodalAcGeneratorData
Source§fn clone(&self) -> NodalAcGeneratorData
fn clone(&self) -> NodalAcGeneratorData
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 NodalAcGeneratorData
impl Debug for NodalAcGeneratorData
Source§impl<'de> Deserialize<'de> for NodalAcGeneratorData
impl<'de> Deserialize<'de> for NodalAcGeneratorData
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 NodalAcGeneratorData
impl PartialEq for NodalAcGeneratorData
Source§fn eq(&self, other: &NodalAcGeneratorData) -> bool
fn eq(&self, other: &NodalAcGeneratorData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodalAcGeneratorData
impl Serialize for NodalAcGeneratorData
impl StructuralPartialEq for NodalAcGeneratorData
Auto Trait Implementations§
impl Freeze for NodalAcGeneratorData
impl RefUnwindSafe for NodalAcGeneratorData
impl Send for NodalAcGeneratorData
impl Sync for NodalAcGeneratorData
impl Unpin for NodalAcGeneratorData
impl UnsafeUnpin for NodalAcGeneratorData
impl UnwindSafe for NodalAcGeneratorData
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