Struct sim::output_analysis::TerminatingSimulationOutput[][src]

pub struct TerminatingSimulationOutput<T> { /* fields omitted */ }

Terminating simulations are useful when the initial and final conditions of a simulation are known, and set deliberately to match real world conditions. For example, a simulation spanning a 9:00 to 17:00 work day might use the terminating simulation approach to simulation experiments and analysis. These initial and final conditions are known and of interest.

Implementations

impl<T: Float> TerminatingSimulationOutput<T>[src]

pub fn post(time_series: Vec<T>) -> TerminatingSimulationOutput<T>[src]

This TerminatingSimulationOutput constructor method creates a new terminating simulation output, with a single replication. The put_time_series method is then used to load additional simulation replications (time series).

pub fn put_time_series(&mut self, time_series: Vec<T>)[src]

This method loads a single simulation replication output into the TerminatingSimulationOutput object. Typically, simulation analysis will require many replications, and thus many put_time_series calls.

Trait Implementations

impl<T: Clone> Clone for TerminatingSimulationOutput<T>[src]

impl<T: Debug> Debug for TerminatingSimulationOutput<T>[src]

impl<T: Default> Default for TerminatingSimulationOutput<T>[src]

impl<'de, T> Deserialize<'de> for TerminatingSimulationOutput<T> where
    T: Deserialize<'de>, 
[src]

impl<T> Serialize for TerminatingSimulationOutput<T> where
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for TerminatingSimulationOutput<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for TerminatingSimulationOutput<T> where
    T: Send
[src]

impl<T> Sync for TerminatingSimulationOutput<T> where
    T: Sync
[src]

impl<T> Unpin for TerminatingSimulationOutput<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for TerminatingSimulationOutput<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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