Show / Hide Table of Contents

Class Parameters

Base parameters for a Inductor

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.Inductors
Assembly: SpiceSharp.dll
Syntax
public class Parameters : ParameterSet<Parameters>, ICloneable<Parameters>, IImportParameterSet<double>, IExportPropertySet<double>, IImportParameterSet<GivenParameter<double>>, IExportPropertySet<GivenParameter<double>>, IParameterSet

Properties

Inductance

Gets the inductance parameter.

Declaration
[ParameterName("inductance")]
[ParameterInfo("Inductance of the inductor", Units = "H", IsPrincipal = true)]
[GreaterThanOrEquals(0)]
[Finite]
public double Inductance { get; set; }
Property Value
Type Description
double

The inductance.

InitialCondition

Gets the initial current parameter.

Declaration
[ParameterName("ic")]
[ParameterInfo("Initial current through the inductor", Units = "V", Interesting = false)]
[Finite]
public GivenParameter<double> InitialCondition { get; set; }
Property Value
Type Description
GivenParameter<double>

The initial current.

ParallelMultiplier

Gets or sets the parallel multiplier.

Declaration
[ParameterName("m")]
[ParameterInfo("Parallel multiplier")]
[GreaterThan(0)]
[Finite]
public double ParallelMultiplier { get; set; }
Property Value
Type Description
double

The parallel multiplier.

SeriesMultiplier

Gets or sets the series multiplier.

Declaration
[ParameterName("n")]
[ParameterInfo("Series multiplier")]
[GreaterThanOrEquals(0)]
[Finite]
public double SeriesMultiplier { get; set; }
Property Value
Type Description
double

The series multiplier.

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