Class Parameters
Base parameters for a Capacitor.
Implements
Inherited Members
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. |