JUK1
|
#include "CircuitElements/Resistor.hpp"
#include "CircuitElements/Capacitor.hpp"
#include "CircuitElements/NLCapacitor.hpp"
#include "CircuitElements/Inductor.hpp"
#include "CircuitElements/VoltageSource.hpp"
#include "CircuitElements/SinusoidalVoltageSource.hpp"
#include "CircuitElements/TimeSeriesVoltageSource.hpp"
#include "CircuitElements/CurrentSource.hpp"
#include "CircuitElements/BJT.hpp"
#include "CircuitElements/Diode.hpp"
#include "CircuitElements/SParameterBlock.hpp"
#include "CircuitElements/SParameterBlockVF.hpp"
#include "CircuitElements/NLNMOS.hpp"
#include "CircuitElements/NLCurrentSource.hpp"
Go to the source code of this file.
Classes | |
struct | CircuitElements< T > |
a glorified container for the different types of components. More... | |
Enumerations | |
enum class | SolutionStage { StaticSolution = 0 , DynamicSolution = 1 , NonLinearSolution = 2 } |
An enum to track how far we want to go in a solution. More... | |
enum class | ComponentType { Resistor , Capacitor , Inductor , VoltageSource , CurrentSource , BJT , Diode } |
An enum for component types. Current unused. More... | |
|
strong |
An enum for component types. Current unused.
Enumerator | |
---|---|
Resistor | |
Capacitor | |
Inductor | |
VoltageSource | |
CurrentSource | |
BJT | |
Diode |
Definition at line 31 of file CircuitElements.hpp.
|
strong |
An enum to track how far we want to go in a solution.
Enumerator | |
---|---|
StaticSolution | |
DynamicSolution | |
NonLinearSolution |
Definition at line 24 of file CircuitElements.hpp.