Interface IExport<T>
An interface that describes an exporter for simulation data.
Namespace: SpiceSharp.Simulations
Assembly: SpiceSharp.dll
Syntax
public interface IExport<T>
Type Parameters
Name | Description |
---|---|
T | The type of output data. |
Properties
Simulation
Gets or sets the simulation that the export applies to.
Declaration
ISimulation Simulation { get; set; }
Property Value
Type | Description |
---|---|
ISimulation |
Value
Gets the current value from the simulation.
Declaration
T Value { get; }
Property Value
Type | Description |
---|---|
T |
Remarks
This property will return a default if there is nothing to extract.