Struct power_flow_data::DCLink
source · pub struct DCLink {
pub idc: BusNum,
pub jdc: BusNum,
pub dcckt: ArrayString<1>,
pub rdc: f64,
pub ldc: f64,
}Fields§
§idc: BusNumBranch “from bus” DC bus number.
jdc: BusNumBranch “to bus” DC bus number.
jdc is entered as a negative number to designate it as the metered end for area and
zone interchange calculations. Otherwise, bus idc is assumed to be the metered end.
dcckt: ArrayString<1>One-character uppercase alphanumeric branch circuit identifier.
It is recommended that single circuit branches be designated as having the circuit identifier “1”.
dcckt = “1” by default.
rdc: f64DC link resistance, entered in ohms. No default.
ldc: f64DC link inductance, entered in mH. ldc is not used by the power flow solution activities
but is available to multi-terminal DC line dynamics models. ldc = 0.0 by default.
Auto Trait Implementations§
impl Freeze for DCLink
impl RefUnwindSafe for DCLink
impl Send for DCLink
impl Sync for DCLink
impl Unpin for DCLink
impl UnwindSafe for DCLink
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