Interface ISimulation<V>
Interface that describes a simulation that outputs its solved variables.
Inherited Members
Namespace: SpiceSharp.Simulations
Assembly: SpiceSharp.dll
Syntax
public interface ISimulation<V> : ISimulation, IStateful, IBehavioral, IParameterSetCollection, IParameterSet where V : IVariable
Type Parameters
Name | Description |
---|---|
V | The type of variables. |
Properties
Solved
Gets the variables that are being solved by the simulation.
Declaration
IVariableDictionary<V> Solved { get; }
Property Value
Type | Description |
---|---|
IVariableDictionary<V> | The variables. |