Class RealVoltageExport
This class can export real voltages.
Inherited Members
Namespace: SpiceSharp.Simulations
Assembly: SpiceSharp.dll
Syntax
public class RealVoltageExport : Export<double>, IExport<double>
Constructors
RealVoltageExport(IBiasingSimulation, Reference, Reference)
Initializes a new instance of the RealVoltageExport class.
Declaration
public RealVoltageExport(IBiasingSimulation simulation, Reference posNode, Reference refNode = default)
Parameters
Type | Name | Description |
---|---|---|
IBiasingSimulation | simulation | The simulation. |
Reference | posNode | The positive node (can be a string or a string array for a path). |
Reference | refNode | The reference/negative node (can be a string or a string array for a path). |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown if |
ArgumentNullException | Thrown if |
Properties
Positive
Gets the positive node.
Declaration
public Reference Positive { get; }
Property Value
Type | Description |
---|---|
Reference |
Reference
Gets the reference node.
Declaration
public Reference Reference { get; }
Property Value
Type | Description |
---|---|
Reference |
Methods
BuildExtractor(ISimulation)
Builds the extractor for the given simulation.
Declaration
protected override Func<double> BuildExtractor(ISimulation simulation)
Parameters
Type | Name | Description |
---|---|---|
ISimulation | simulation | The simulation. |
Returns
Type | Description |
---|---|
Func<double> | The extractor. |
Overrides
ToString()
Converts the export to a string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The string. |
Overrides
Implements
Extension Methods
See Also
Export<T>