Show / Hide Table of Contents

Class Parameters

Base parameters for a VoltageDelay.

Inheritance
object
ParameterSet
ParameterSet<Parameters>
Parameters
Implements
ICloneable<Parameters>
IImportParameterSet<double>
IExportPropertySet<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.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.

Implements

ICloneable<T>
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