Skip to main content

OpfDataSolution

Struct OpfDataSolution 

Source
pub struct OpfDataSolution {
    pub bus_voltage_magnitude: Vec<f64>,
    pub bus_voltage_angle: Vec<f64>,
    pub branch_from_active_flow: Vec<f64>,
    pub branch_from_reactive_flow: Vec<f64>,
    pub branch_to_active_flow: Vec<f64>,
    pub branch_to_reactive_flow: Vec<f64>,
    pub generator_active_power: Vec<f64>,
    pub generator_reactive_power: Vec<f64>,
    pub initial_generator_active_power: Vec<f64>,
    pub initial_generator_reactive_power: Vec<f64>,
    pub initial_generator_voltage_setpoint: Vec<f64>,
    pub objective: f64,
}
Expand description

The solved columns and stated objective of one OPFData document, in network units (per unit voltages, degrees, MW, MVAr), each vector in its network table’s order. OPFData explicitly represents a solved AC OPF, so these columns exist for every valid document; the solver initial pg, qg, and vg the grid section supplies ride along for solve metadata.

Fields§

§bus_voltage_magnitude: Vec<f64>

Solved bus voltage magnitude, per unit, bus order.

§bus_voltage_angle: Vec<f64>

Solved bus voltage angle, degrees, bus order.

§branch_from_active_flow: Vec<f64>

Solved from-side active flow, MW, branch order.

§branch_from_reactive_flow: Vec<f64>

Solved from-side reactive flow, MVAr, branch order.

§branch_to_active_flow: Vec<f64>

Solved to-side active flow, MW, branch order.

§branch_to_reactive_flow: Vec<f64>

Solved to-side reactive flow, MVAr, branch order.

§generator_active_power: Vec<f64>

Solved generator active dispatch, MW, generator order.

§generator_reactive_power: Vec<f64>

Solved generator reactive dispatch, MVAr, generator order.

§initial_generator_active_power: Vec<f64>

Solver initial generator active power, MW, generator order.

§initial_generator_reactive_power: Vec<f64>

Solver initial generator reactive power, MVAr, generator order.

§initial_generator_voltage_setpoint: Vec<f64>

Solver initial generator voltage setpoint, per unit, generator order.

§objective: f64

The stated solved objective, from metadata.objective.

Trait Implementations§

Source§

impl Clone for OpfDataSolution

Source§

fn clone(&self) -> OpfDataSolution

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for OpfDataSolution

Source§

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

Formats the value using the given formatter. 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> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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 = !

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.