Struct iec60909::NetworkFeeder
source · pub struct NetworkFeeder<N: Default> {
pub node: N,
pub ur: f64,
pub ikss: f64,
pub rx: Option<f64>,
pub tr: Option<f64>,
pub r0x: f64,
pub x0x: f64,
}
Expand description
An external grid connection.
Fields§
§node: N
§ur: f64
Rated voltage of the feeder (kV).
ikss: f64
Initial symmetrical short-circuit current (kA).
rx: Option<f64>
R/X ratio of short-circuit impedance.
tr: Option<f64>
Rated transformation ratio at which the on-load tap-changer is in the main position (>= 1).
r0x: f64
§x0x: f64
Implementations§
Trait Implementations§
source§impl<N: Clone + Default> Clone for NetworkFeeder<N>
impl<N: Clone + Default> Clone for NetworkFeeder<N>
source§fn clone(&self) -> NetworkFeeder<N>
fn clone(&self) -> NetworkFeeder<N>
Returns a copy 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<N: Default + Default> Default for NetworkFeeder<N>
impl<N: Default + Default> Default for NetworkFeeder<N>
source§fn default() -> NetworkFeeder<N>
fn default() -> NetworkFeeder<N>
Returns the “default value” for a type. Read more
source§impl<'de, N> Deserialize<'de> for NetworkFeeder<N>where
N: Deserialize<'de> + Default,
impl<'de, N> Deserialize<'de> for NetworkFeeder<N>where N: Deserialize<'de> + Default,
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<N: PartialEq + Default> PartialEq<NetworkFeeder<N>> for NetworkFeeder<N>
impl<N: PartialEq + Default> PartialEq<NetworkFeeder<N>> for NetworkFeeder<N>
source§fn eq(&self, other: &NetworkFeeder<N>) -> bool
fn eq(&self, other: &NetworkFeeder<N>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<N: Default> StructuralPartialEq for NetworkFeeder<N>
Auto Trait Implementations§
impl<N> RefUnwindSafe for NetworkFeeder<N>where N: RefUnwindSafe,
impl<N> Send for NetworkFeeder<N>where N: Send,
impl<N> Sync for NetworkFeeder<N>where N: Sync,
impl<N> Unpin for NetworkFeeder<N>where N: Unpin,
impl<N> UnwindSafe for NetworkFeeder<N>where N: UnwindSafe,
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