Show / Hide Table of Contents

Class Parameters

Base parameters for a Capacitor.

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

Properties

Capacitance

Gets the capacitance parameter.

Declaration
[ParameterName("capacitance")]
[ParameterInfo("Device capacitance", Units = "F", IsPrincipal = true)]
[GreaterThanOrEquals(0)]
[Finite]
public GivenParameter<double> Capacitance { get; set; }
Property Value
Type Description
GivenParameter<double>

The capacitance.

InitialCondition

Gets the initial voltage parameter.

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

The initial voltage.

Length

Gets the length of the capacitor.

Declaration
[ParameterName("l")]
[ParameterInfo("Device length", Units = "m", Interesting = false)]
[GreaterThanOrEquals(0)]
[Finite]
public GivenParameter<double> Length { get; set; }
Property Value
Type Description
GivenParameter<double>

The length of the capacitor.

ParallelMultiplier

Gets or sets the parallel multiplier.

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

The parallel multiplier.

Temperature

Gets the temperature parameter (in degrees Kelvin).

Declaration
[GreaterThan(0)]
[Finite]
public GivenParameter<double> Temperature { get; set; }
Property Value
Type Description
GivenParameter<double>

The temperature in Kelvin.

TemperatureCelsius

Gets or sets the temperature in degrees Celsius.

Declaration
[ParameterName("temp")]
[ParameterInfo("Instance operating temperature", Units = "°C", Interesting = false)]
[GreaterThan(-273.15)]
[Finite]
public double TemperatureCelsius { get; set; }
Property Value
Type Description
double

The temperature celsius.

Width

Gets the width of the capacitor.

Declaration
[ParameterName("w")]
[ParameterInfo("Device width", Units = "m", Interesting = false)]
[GreaterThanOrEquals(0)]
[Finite]
public GivenParameter<double> Width { get; set; }
Property Value
Type Description
GivenParameter<double>

The width of the capacitor.

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