pub struct LineDiff87lParams {
pub slope1: f64,
pub slope2: f64,
pub i_pickup: f64,
pub from_bus: u32,
pub to_bus: u32,
pub circuit: String,
pub tf: f64,
}Expand description
87L — Line differential relay.
Compares currents at both ends of a transmission line. Trips the branch (not a generator) when the differential current exceeds the restraint.
DYR params: SLOPE1 SLOPE2 I_PICKUP FROM_BUS TO_BUS CKT TF
Fields§
§slope1: f64Slope 1 of restraint characteristic (typical 0.2–0.3).
slope2: f64Slope 2 (high-current region, typical 0.6–0.8).
i_pickup: f64Minimum pickup current (pu).
from_bus: u32From-bus of protected line.
to_bus: u32To-bus of protected line.
circuit: StringCircuit identifier.
tf: f64Measurement filter time constant (s). Default: 0.01 (10ms).
Trait Implementations§
Source§impl Clone for LineDiff87lParams
impl Clone for LineDiff87lParams
Source§fn clone(&self) -> LineDiff87lParams
fn clone(&self) -> LineDiff87lParams
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 LineDiff87lParams
impl Debug for LineDiff87lParams
Source§impl<'de> Deserialize<'de> for LineDiff87lParams
impl<'de> Deserialize<'de> for LineDiff87lParams
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
Auto Trait Implementations§
impl Freeze for LineDiff87lParams
impl RefUnwindSafe for LineDiff87lParams
impl Send for LineDiff87lParams
impl Sync for LineDiff87lParams
impl Unpin for LineDiff87lParams
impl UnsafeUnpin for LineDiff87lParams
impl UnwindSafe for LineDiff87lParams
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