Skip to main content

FACTSModel

Enum FACTSModel 

Source
pub enum FACTSModel {
Show 22 variants Csvgn1(Csvgn1Params), Cstcon(CstconParams), Tcsc(TcscParams), Cdc4t(Cdc4tParams), Vscdct(VscdctParams), Csvgn3(Csvgn3Params), Cdc7t(Cdc7tParams), Csvgn4(Csvgn4Params), Csvgn5(Csvgn5Params), Cdc6t(Cdc6tParams), Cstcnt(CstcntParams), Mmc1(Mmc1Params), Hvdcplu1(HvdcPlu1Params), Csvgn6(Csvgn6Params), Stcon1(Stcon1Params), Gcsc(GcscParams), Sssc(SsscParams), Upfc(UpfcParams), Cdc3t(Cdc3tParams), Svsmo1(Svsmo1Params), Svsmo2(Svsmo2Params), Svsmo3(Svsmo3Params),
}
Expand description

Discriminated union of supported FACTS/HVDC dynamic models.

Variants§

§

Csvgn1(Csvgn1Params)

CSVGN1 — Static VAr Compensator (most common SVC model).

§

Cstcon(CstconParams)

CSTCON — STATCOM (current-source reactive control).

§

Tcsc(TcscParams)

TCSC — Thyristor-Controlled Series Capacitor.

§

Cdc4t(Cdc4tParams)

CDC4T — Generic LCC HVDC Two-Terminal.

§

Vscdct(VscdctParams)

VSCDCT — Generic VSC HVDC Two-Terminal.

§

Csvgn3(Csvgn3Params)

CSVGN3 — SVC with slope/droop regulator (Phase 15, 3 states).

§

Cdc7t(Cdc7tParams)

CDC7T — LCC HVDC + runback + current order controllers (Phase 15, 6 states).

§

Csvgn4(Csvgn4Params)

CSVGN4 — SVC with 4 states (adds POD) (Phase 20).

§

Csvgn5(Csvgn5Params)

CSVGN5 — SVC with 4 states (voltage support mode) (Phase 20).

§

Cdc6t(Cdc6tParams)

CDC6T — LCC HVDC with enhanced controls (Phase 20).

§

Cstcnt(CstcntParams)

CSTCNT — STATCOM with N controls (4 states) (Phase 20).

§

Mmc1(Mmc1Params)

MMC1 — Modular Multilevel Converter (5 states) (Phase 20).

§

Hvdcplu1(HvdcPlu1Params)

HVDCPLU1 — Siemens HVDC Plus VSC (Phase 26, 6 states, reuses Vscdct layout).

§

Csvgn6(Csvgn6Params)

CSVGN6 — SVC Variant 6 with Auxiliary Inputs (Phase 26, 5 states).

§

Stcon1(Stcon1Params)

STCON1 — STATCOM with Inner Current Control (Phase 26, 4 states).

§

Gcsc(GcscParams)

GCSC — Gate-Controlled Series Compensator (Phase 26, 3 states).

§

Sssc(SsscParams)

SSSC — Static Synchronous Series Compensator (Phase 26, 4 states).

§

Upfc(UpfcParams)

UPFC — Unified Power Flow Controller (Phase 26, 6 states).

§

Cdc3t(Cdc3tParams)

CDC3T — Three-Terminal LCC HVDC (Phase 26, 8 states).

§

Svsmo1(Svsmo1Params)

SVSMO1 — WECC Generic SVC voltage regulator (1 state).

§

Svsmo2(Svsmo2Params)

SVSMO2 — WECC Generic STATCOM (1 state).

§

Svsmo3(Svsmo3Params)

SVSMO3 — WECC Advanced SVC (2 states: b_svc + vr).

Trait Implementations§

Source§

impl Clone for FACTSModel

Source§

fn clone(&self) -> FACTSModel

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FACTSModel

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for FACTSModel

Source§

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 Serialize for FACTSModel

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,