Class Parameters
Base parameters for a LosslessTransmissionLine.
Implements
Inherited Members
Namespace: SpiceSharp.Components.LosslessTransmissionLines
Assembly: SpiceSharp.dll
Syntax
public class Parameters : ParameterSet<Parameters>, ICloneable<Parameters>, IImportParameterSet<double>, IExportPropertySet<double>, IImportParameterSet<GivenParameter<double>>, IExportPropertySet<GivenParameter<double>>, IParameterSet
Properties
AbsoluteTolerance
Gets or sets the relative tolerance used to determine if a breakpoint (where harsh nonlinear behavior occurs) needs to be added.
Declaration
[ParameterName("abstol")]
[ParameterInfo("The absolute tolerance used to decide on adding a breakpoint.")]
[GreaterThan(0)]
[Finite]
public double AbsoluteTolerance { get; set; }
Property Value
Type | Description |
---|---|
double | The absolute tolerance. |
Admittance
Gets the admittance (reciprocal of the impedance).
Declaration
public double Admittance { get; }
Property Value
Type | Description |
---|---|
double | The admittance. |
Delay
Gets or sets the transmission delay of the transmission line.
Declaration
[ParameterName("td")]
[ParameterInfo("Transmission delay", Units = "s")]
[GreaterThanOrEquals(0)]
[Finite]
public GivenParameter<double> Delay { get; set; }
Property Value
Type | Description |
---|---|
GivenParameter<double> | The delay. |
Frequency
Gets the frequency specification of the transmission line.
Declaration
[ParameterName("f")]
[ParameterInfo("Frequency", Units = "Hz")]
[GreaterThan(0)]
[Finite]
public double Frequency { get; set; }
Property Value
Type | Description |
---|---|
double | The frequency specification. |
Impedance
Gets or sets the characteristic impedance.
Declaration
[ParameterName("z0")]
[ParameterName("zo")]
[ParameterInfo("Characteristic impedance", Units = "Ω")]
[GreaterThan(0)]
[Finite]
public double Impedance { get; set; }
Property Value
Type | Description |
---|---|
double | The characteristic impedance. |
NormalizedLength
Gets normalized length at the given Frequency.
Declaration
[ParameterName("nl")]
[ParameterInfo("Normalized length at the given frequency")]
[GreaterThanOrEquals(0)]
[Finite]
public double NormalizedLength { get; set; }
Property Value
Type | Description |
---|---|
double | The normalized length. |
ParallelMultiplier
Gets or sets the number of transmission lines in parallel.
Declaration
[ParameterName("m")]
[ParameterInfo("Parallel multiplier")]
[GreaterThanOrEquals(0)]
public double ParallelMultiplier { get; set; }
Property Value
Type | Description |
---|---|
double | The number of transmission lines in parallel. |
RelativeTolerance
Gets or sets the relative tolerance used to determine if a breakpoint (where harsh nonlinear behavior occurs) needs to be added.
Declaration
[ParameterName("reltol")]
[ParameterInfo("The relative tolerance used to decide on adding a breakpoint.")]
[GreaterThan(0)]
[Finite]
public double RelativeTolerance { get; set; }
Property Value
Type | Description |
---|---|
double | The relative tolerance. |
Methods
CalculateDefaults()
Method for calculating the default values of derived parameters.
Declaration
public void CalculateDefaults()