ST2CUT

Struct ST2CUT 

Source
pub struct ST2CUT {
Show 22 fields pub i: BusNum, pub stat: i8, pub mode1: i32, pub busr1: BusNum, pub mode2: i32, pub busr2: BusNum, pub k1: f64, pub k2: f64, pub t1: f64, pub t2: f64, pub t3: f64, pub t4: f64, pub t5: f64, pub t6: f64, pub t7: f64, pub t8: f64, pub t9: f64, pub t10: f64, pub lsmax: f64, pub lsmin: f64, pub vcu: f64, pub vcl: f64,
}
Expand description

Parameters for the ST2CUT model (Dual-input stabilizing model) in PSS/E.

Fields§

§i: BusNum

Buses number.

§stat: i8

Model status is either one for in-service or zero for out-of-service.

§mode1: i32

Input mode.

  • 1 - Rotor speed deviation
  • 2 - Bus frequency deviation
  • 3 - Generator electrical power
  • 4 - Generator accelerating power
  • 5 - Bus voltage
  • 5 - Derivative of bus voltage
§busr1: BusNum

Reference bus number.

§mode2: i32

Input mode.

  • 1 - Rotor speed deviation
  • 2 - Bus frequency deviation
  • 3 - Generator electrical power
  • 4 - Generator accelerating power
  • 5 - Bus voltage
  • 5 - Derivative of bus voltage
§busr2: BusNum

Reference bus number.

§k1: f64

Input 1 gain K1.

§k2: f64

Input 2 gain K2.

§t1: f64

Input 1 time constant T1.

§t2: f64

Input 2 time constant T2.

§t3: f64

Washout numerator time constant T3.

§t4: f64

Lead/lag denominator time constant T4.

§t5: f64

Lead/lag numerator time constant T5.

§t6: f64

Lead/lag denominator time constant T6.

§t7: f64

Lead/lag numerator time constant T7.

§t8: f64

Lead/lag denominator time constant T8.

§t9: f64

Lead/lag numerator time constant T9.

§t10: f64

Lead/lag denominator time constant T10.

§lsmax: f64

Stabilizer output upper limit.

§lsmin: f64

Stabilizer output lower limit.

§vcu: f64

Output cutoff upper limit.

§vcl: f64

Output cutoff lower limit.

Trait Implementations§

Source§

impl Clone for ST2CUT

Source§

fn clone(&self) -> ST2CUT

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 ST2CUT

Source§

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

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

impl Default for ST2CUT

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Copy for ST2CUT

Auto Trait Implementations§

§

impl Freeze for ST2CUT

§

impl RefUnwindSafe for ST2CUT

§

impl Send for ST2CUT

§

impl Sync for ST2CUT

§

impl Unpin for ST2CUT

§

impl UnwindSafe for ST2CUT

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, 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.