Show / Hide Table of Contents

Class Parameters

Base parameters for a LosslessTransmissionLine.

Inheritance
object
ParameterSet
ParameterSet<Parameters>
Parameters
Implements
ICloneable<Parameters>
IImportParameterSet<double>
IExportPropertySet<double>
IImportParameterSet<GivenParameter<double>>
IExportPropertySet<GivenParameter<double>>
IParameterSet
Inherited Members
ParameterSet<Parameters>.Clone()
ParameterSet.SetParameter<P>(string, P)
ParameterSet.TrySetParameter<P>(string, P)
ParameterSet.GetProperty<P>(string)
ParameterSet.TryGetProperty<P>(string, out P)
ParameterSet.CreateParameterSetter<P>(string)
ParameterSet.CreatePropertyGetter<P>(string)
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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()

Implements

ICloneable<T>
IImportParameterSet<P>
IExportPropertySet<P>
IImportParameterSet<P>
IExportPropertySet<P>
IParameterSet

Extension Methods

Utility.ThrowIfNull<T>(T, string)
Documentation.ParameterValues<T>(IParameterSet, bool)
Documentation.Parameters(IParameterSet)

See Also

ParameterSet
In this article
Back to top Generated by DocFX