pub struct TransientResult { /* private fields */ }Expand description
The result of running a transient simulation.
Can be queried for voltages and currents at different points in time.
Implementations§
Source§impl TransientResult
impl TransientResult
pub fn voltage_at(&self, net: NetRef, time: f64) -> f64
pub fn current_at( &self, component: &ComponentRef, terminal: usize, time: f64, ) -> f64
pub fn connected_net(&self, connection: &ConnectionRef) -> NetRef
Auto Trait Implementations§
impl Freeze for TransientResult
impl RefUnwindSafe for TransientResult
impl Send for TransientResult
impl Sync for TransientResult
impl Unpin for TransientResult
impl UnwindSafe for TransientResult
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