pub enum LoadConnection {
WyeGrounded,
WyeUngrounded,
Delta,
}Expand description
Winding connection type for fault and unbalanced analysis.
Determines how the load’s zero-sequence impedance participates in short-circuit calculations.
Variants§
WyeGrounded
Wye-connected with grounded neutral (zero-sequence current path exists).
WyeUngrounded
Wye-connected with ungrounded (floating) neutral.
Delta
Delta-connected (no zero-sequence current path).
Trait Implementations§
Source§impl Clone for LoadConnection
impl Clone for LoadConnection
Source§fn clone(&self) -> LoadConnection
fn clone(&self) -> LoadConnection
Returns a duplicate of the value. Read more
1.0.0 · 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 LoadConnection
impl Debug for LoadConnection
Source§impl Default for LoadConnection
impl Default for LoadConnection
Source§fn default() -> LoadConnection
fn default() -> LoadConnection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoadConnection
impl<'de> Deserialize<'de> for LoadConnection
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 LoadConnection
impl PartialEq for LoadConnection
Source§impl Serialize for LoadConnection
impl Serialize for LoadConnection
impl Copy for LoadConnection
impl Eq for LoadConnection
impl StructuralPartialEq for LoadConnection
Auto Trait Implementations§
impl Freeze for LoadConnection
impl RefUnwindSafe for LoadConnection
impl Send for LoadConnection
impl Sync for LoadConnection
impl Unpin for LoadConnection
impl UnsafeUnpin for LoadConnection
impl UnwindSafe for LoadConnection
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