pub struct TransientVector { /* private fields */ }Expand description
Vector representing a transient circuit simulation’s voltages and currents.
Implementations§
Source§impl TransientVector
impl TransientVector
Sourcepub fn voltage_derivative(&self, net: NetRef) -> f64
pub fn voltage_derivative(&self, net: NetRef) -> f64
Get the value of net’s voltage derivative.
Sourcepub fn current(&self, connection: ConnectionRef) -> f64
pub fn current(&self, connection: ConnectionRef) -> f64
Get the value of connection’s current.
Sourcepub fn current_derivative(&self, connection: ConnectionRef) -> f64
pub fn current_derivative(&self, connection: ConnectionRef) -> f64
Get the value of connection’s current derivative.
Auto Trait Implementations§
impl Freeze for TransientVector
impl RefUnwindSafe for TransientVector
impl Send for TransientVector
impl Sync for TransientVector
impl Unpin for TransientVector
impl UnwindSafe for TransientVector
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