Class Resistor
A resistor.
Inheritance
Implements
Inherited Members
Namespace: SpiceSharp.Components
Assembly: SpiceSharp.dll
Syntax
[Pin(0, "R+")]
[Pin(1, "R-")]
public class Resistor : Component<Parameters>, IComponent, IEntity, IParameterSetCollection, IParameterSet, ICloneable<IEntity>, IRuleSubject, IParameterized<Parameters>
Constructors
Resistor(string)
Initializes a new instance of the Resistor class.
Declaration
public Resistor(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the resistor. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |
Resistor(string, string, string, double)
Initializes a new instance of the Resistor class.
Declaration
public Resistor(string name, string pos, string neg, double res)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the resistor. |
string | pos | The positive node. |
string | neg | The negative node. |
double | res | The resistance. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |
Resistor(string, string, string, string)
Initializes a new instance of the Resistor class.
Declaration
public Resistor(string name, string pos, string neg, string model)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the resistor. |
string | pos | The positive node. |
string | neg | The negative node. |
string | model | The model name. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |
Fields
ResistorPinCount
Constants
Declaration
[ParameterName("pincount")]
[ParameterInfo("Number of pins")]
public const int ResistorPinCount = 2
Field Value
Type | Description |
---|---|
int |
Methods
CreateBehaviors(ISimulation)
Creates the behaviors and stores them in the specified container.
Declaration
public override void CreateBehaviors(ISimulation simulation)
Parameters
Type | Name | Description |
---|---|---|
ISimulation | simulation | The simulation. |
Overrides
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if |
ArgumentException | Thrown if the simulation does not use an IComplexSimulationState. |
TypeNotFoundException | Thrown if a required behavior or parameter set could not be found. |
AmbiguousTypeException | Thrown if a behavior or parameter set could not be resolved unambiguously. |