#[non_exhaustive]pub struct NodalGeneratorParameters {
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 parameters in dense bus order, aggregated over the generators at each
bus. See DcOpfPreparation::calc_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 NodalGeneratorParameters
impl Clone for NodalGeneratorParameters
Source§fn clone(&self) -> NodalGeneratorParameters
fn clone(&self) -> NodalGeneratorParameters
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 NodalGeneratorParameters
impl Debug for NodalGeneratorParameters
Source§impl<'de> Deserialize<'de> for NodalGeneratorParameters
impl<'de> Deserialize<'de> for NodalGeneratorParameters
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 NodalGeneratorParameters
impl PartialEq for NodalGeneratorParameters
Source§fn eq(&self, other: &NodalGeneratorParameters) -> bool
fn eq(&self, other: &NodalGeneratorParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodalGeneratorParameters
impl Serialize for NodalGeneratorParameters
impl StructuralPartialEq for NodalGeneratorParameters
Auto Trait Implementations§
impl Freeze for NodalGeneratorParameters
impl RefUnwindSafe for NodalGeneratorParameters
impl Send for NodalGeneratorParameters
impl Sync for NodalGeneratorParameters
impl Unpin for NodalGeneratorParameters
impl UnsafeUnpin for NodalGeneratorParameters
impl UnwindSafe for NodalGeneratorParameters
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