#[non_exhaustive]pub enum AcBusSpecification {
Pq {
p: f64,
q: f64,
},
Pv {
p: f64,
vm: f64,
},
Reference {
vm: f64,
va: f64,
},
Isolated,
}Expand description
One bus of an AC power flow problem, the standard partial specification. Powers are MW and MVAr, voltage magnitudes per unit, angles degrees, as the network states them.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pq
Prescribed net active and reactive injection.
Pv
Prescribed net active injection and voltage magnitude.
Reference
Prescribed voltage magnitude and angle.
Isolated
No equation.
Trait Implementations§
Source§impl Clone for AcBusSpecification
impl Clone for AcBusSpecification
Source§fn clone(&self) -> AcBusSpecification
fn clone(&self) -> AcBusSpecification
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 moreimpl Copy for AcBusSpecification
Source§impl Debug for AcBusSpecification
impl Debug for AcBusSpecification
Source§impl<'de> Deserialize<'de> for AcBusSpecification
impl<'de> Deserialize<'de> for AcBusSpecification
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 JsonSchema for AcBusSpecification
impl JsonSchema for AcBusSpecification
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for AcBusSpecification
impl PartialEq for AcBusSpecification
Source§fn eq(&self, other: &AcBusSpecification) -> bool
fn eq(&self, other: &AcBusSpecification) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AcBusSpecification
impl Serialize for AcBusSpecification
impl StructuralPartialEq for AcBusSpecification
Auto Trait Implementations§
impl Freeze for AcBusSpecification
impl RefUnwindSafe for AcBusSpecification
impl Send for AcBusSpecification
impl Sync for AcBusSpecification
impl Unpin for AcBusSpecification
impl UnsafeUnpin for AcBusSpecification
impl UnwindSafe for AcBusSpecification
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