#[non_exhaustive]pub struct AcPfBusData {
pub q_d: Vec<f64>,
pub g_s: Vec<f64>,
pub b_s: Vec<f64>,
pub initial_vm: Vec<f64>,
pub initial_va: Vec<f64>,
}Expand description
Bus values needed to start and evaluate an AC power flow.
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_d: Vec<f64>Nodal reactive demand in the selected power unit. Synthetic transformer star buses carry zero.
g_s: Vec<f64>Nodal shunt conductance in the selected admittance unit.
b_s: Vec<f64>Nodal shunt susceptance in the selected admittance unit.
initial_vm: Vec<f64>Initial voltage magnitude, per unit.
initial_va: Vec<f64>Initial voltage angle, radians.
Trait Implementations§
Source§impl Clone for AcPfBusData
impl Clone for AcPfBusData
Source§fn clone(&self) -> AcPfBusData
fn clone(&self) -> AcPfBusData
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 AcPfBusData
impl Debug for AcPfBusData
Source§impl<'de> Deserialize<'de> for AcPfBusData
impl<'de> Deserialize<'de> for AcPfBusData
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 AcPfBusData
impl PartialEq for AcPfBusData
Source§fn eq(&self, other: &AcPfBusData) -> bool
fn eq(&self, other: &AcPfBusData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AcPfBusData
impl Serialize for AcPfBusData
impl StructuralPartialEq for AcPfBusData
Auto Trait Implementations§
impl Freeze for AcPfBusData
impl RefUnwindSafe for AcPfBusData
impl Send for AcPfBusData
impl Sync for AcPfBusData
impl Unpin for AcPfBusData
impl UnsafeUnpin for AcPfBusData
impl UnwindSafe for AcPfBusData
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