Class SpiceModel<TCircuit, TSimulation>
A result of reading a SPICE netlist model.
Inheritance
System.Object
SpiceModel<TCircuit, TSimulation>
Implements
ISpiceModel<TCircuit, TSimulation>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.ModelReaders.Netlist.Spice
Assembly: SpiceSharpParser.dll
Syntax
public class SpiceModel<TCircuit, TSimulation> : ISpiceModel<TCircuit, TSimulation> where TCircuit : class
Type Parameters
Name | Description |
---|---|
TCircuit | |
TSimulation |
Constructors
| Improve this Doc View SourceSpiceModel(TCircuit, String)
Declaration
public SpiceModel(TCircuit circuit, string title)
Parameters
Type | Name | Description |
---|---|---|
TCircuit | circuit | |
System.String | title |
Properties
| Improve this Doc View SourceCircuit
Gets or sets the circuit from the netlist.
Declaration
public TCircuit Circuit { get; set; }
Property Value
Type | Description |
---|---|
TCircuit |
Comments
Gets the list of comments from the netlist.
Declaration
public List<string> Comments { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Exports
Gets the list of exports from the netlist.
Declaration
public List<Export> Exports { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Export> |
MonteCarloResult
Gets the Monte Carlo Analysis results.
Declaration
public MonteCarloResult MonteCarloResult { get; }
Property Value
Type | Description |
---|---|
MonteCarloResult |
Prints
Gets the list of generated prints.
Declaration
public List<Print> Prints { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Print> |
Seed
Gets or sets the used random seed.
Declaration
public int? Seed { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
SimulationConfiguration
Gets the simulation configuration.
Declaration
public SimulationConfiguration SimulationConfiguration { get; }
Property Value
Type | Description |
---|---|
SimulationConfiguration |
Simulations
Gets the list of simulation from the netlist.
Declaration
public List<TSimulation> Simulations { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TSimulation> |
Title
Gets the title of the netlist.
Declaration
public string Title { get; }
Property Value
Type | Description |
---|---|
System.String |
ValidationResult
Gets the validation result.
Declaration
public SpiceNetlistValidationResult ValidationResult { get; }
Property Value
Type | Description |
---|---|
SpiceNetlistValidationResult |
XyPlots
Gets the list of generated X-Y plots.
Declaration
public List<XyPlot> XyPlots { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<XyPlot> |