Struct power_flow_data::InterAreaTransfer
source · pub struct InterAreaTransfer {
pub arfrom: AreaNum,
pub arto: AreaNum,
pub trid: ArrayString<1>,
pub ptran: f64,
}Expand description
Using PSS/E, the user has the capability to identify in which area each bus or load resides. Further, the user can schedule active power transfers between pairs of areas.
See AreaInterchange for desired net interchange.
Fields§
§arfrom: AreaNum“From area” number (1 through the maximum number of areas at the current size level).
arto: AreaNum“To area” number (1 through the maximum number of areas at the current size level).
trid: ArrayString<1>Single-character (0 through 9 or A through Z) upper-case interarea transfer identifier
used to distinguish among multiple transfers between areas arfrom and arto.
trid = “1” by default.
ptran: f64MW comprising this transfer.
A positive ptran indicates that area arfrom is selling to area arto.
ptran = 0.0 by default.
Auto Trait Implementations§
impl Freeze for InterAreaTransfer
impl RefUnwindSafe for InterAreaTransfer
impl Send for InterAreaTransfer
impl Sync for InterAreaTransfer
impl Unpin for InterAreaTransfer
impl UnwindSafe for InterAreaTransfer
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