Class VoltageExport
Voltage 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.VoltageExports
Assembly: SpiceSharpParser.dll
Syntax
public class VoltageExport : Export
Constructors
| Improve this Doc View SourceVoltageExport(String, Simulation, String, String)
Initializes a new instance of the VoltageExport class.
Declaration
public VoltageExport(string name, Simulation simulation, string node, string reference = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | Name of export. |
| SpiceSharp.Simulations.Simulation | simulation | Simulation. |
| System.String | node | Positive node. |
| System.String | reference | Negative reference node. |
Properties
| Improve this Doc View SourceExportImpl
Gets the complex voltage export.
Declaration
protected ComplexVoltageExport ExportImpl { get; }
Property Value
| Type | Description |
|---|---|
| SpiceSharp.Simulations.ComplexVoltageExport |
ExportRealImpl
Gets the real voltage export.
Declaration
protected RealVoltageExport ExportRealImpl { get; }
Property Value
| Type | Description |
|---|---|
| SpiceSharp.Simulations.RealVoltageExport |
Node
Gets the main node.
Declaration
public string Node { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
QuantityUnit
Gets the quantity unit.
Declaration
public override string QuantityUnit { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Overrides
| Improve this Doc View SourceReference
Gets the reference node.
Declaration
public string Reference { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
| Improve this Doc View SourceExtract()
Extracts the voltage value.
Declaration
public override double Extract()
Returns
| Type | Description |
|---|---|
| System.Double | A voltage value at the main node. |