pub struct NetworkControlData {
pub switched_shunts: Vec<SwitchedShunt>,
pub switched_shunts_opf: Vec<SwitchedShuntOpf>,
pub oltc_specs: Vec<OltcSpec>,
pub par_specs: Vec<ParSpec>,
}Expand description
Discrete voltage control devices: switched shunts, OLTCs, and PARs.
Fields§
§switched_shunts: Vec<SwitchedShunt>Discrete switched shunt banks for voltage control in the NR outer loop.
switched_shunts_opf: Vec<SwitchedShuntOpf>OPF-relaxed switched shunts for AC-OPF optimization.
oltc_specs: Vec<OltcSpec>OLTC transformer control specifications.
par_specs: Vec<ParSpec>Phase Angle Regulator (PAR) specifications.
Trait Implementations§
Source§impl Clone for NetworkControlData
impl Clone for NetworkControlData
Source§fn clone(&self) -> NetworkControlData
fn clone(&self) -> NetworkControlData
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 NetworkControlData
impl Debug for NetworkControlData
Source§impl Default for NetworkControlData
impl Default for NetworkControlData
Source§fn default() -> NetworkControlData
fn default() -> NetworkControlData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkControlData
impl<'de> Deserialize<'de> for NetworkControlData
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 NetworkControlData
impl RefUnwindSafe for NetworkControlData
impl Send for NetworkControlData
impl Sync for NetworkControlData
impl Unpin for NetworkControlData
impl UnsafeUnpin for NetworkControlData
impl UnwindSafe for NetworkControlData
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