Class Parameters
Base parameters for a VoltageDelay.
Implements
Inherited Members
Namespace: SpiceSharp.Components.VoltageDelays
Assembly: SpiceSharp.dll
Syntax
public class Parameters : ParameterSet<Parameters>, ICloneable<Parameters>, IImportParameterSet<double>, IExportPropertySet<double>, IParameterSet
Properties
AbsoluteTolerance
Gets or sets the absolute tolerance to determine when a breakpoint (heavy 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. |
Delay
Gets or sets the delay in seconds.
Declaration
[ParameterName("delay")]
[ParameterName("td")]
[ParameterInfo("The delay.", Units = "s")]
[GreaterThanOrEquals(0)]
[Finite]
public double Delay { get; set; }
Property Value
Type | Description |
---|---|
double | The delay. |
RelativeTolerance
Gets or sets the relative tolerance to determine when a breakpoint (heavy 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. |