Class Export
Describes a quantity that can be exported using simulated data.
Inheritance
System.Object
Export
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SpiceSharpParser.ModelReaders.Netlist.Spice.Readers.Controls.Exporters
Assembly: SpiceSharpParser.dll
Syntax
public abstract class Export
Constructors
| Improve this Doc View SourceExport(Simulation)
Initializes a new instance of the Export class.
Declaration
protected Export(Simulation simulation)
Parameters
Type | Name | Description |
---|---|---|
SpiceSharp.Simulations.Simulation | simulation | The simulation. |
Properties
| Improve this Doc View SourceExceptionsEnabled
Gets or sets a value indicating whether exceptions are enabled.
Declaration
protected bool ExceptionsEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets or sets the name.
Declaration
public string Name { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
QuantityUnit
Gets the export unit.
Declaration
public abstract string QuantityUnit { get; }
Property Value
Type | Description |
---|---|
System.String |
Simulation
Declaration
public Simulation Simulation { get; }
Property Value
Type | Description |
---|---|
SpiceSharp.Simulations.Simulation |
Methods
| Improve this Doc View SourceExtract()
Extract the quantity from simulated data.
Declaration
public abstract double Extract()
Returns
Type | Description |
---|---|
System.Double | A quantity. |
ToString()
Override string representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string representation of export. |
Overrides
System.Object.ToString()