Interface ISpiceModel<TCircuit, TSimulation>
Assembly: SpiceSharpParser.dll
Syntax
public interface ISpiceModel<out TCircuit, TSimulation>
Type Parameters
Name |
Description |
TCircuit |
|
TSimulation |
|
Properties
|
Improve this Doc
View Source
Circuit
Gets the circuit from the netlist.
Declaration
TCircuit Circuit { get; }
Property Value
Type |
Description |
TCircuit |
|
|
Improve this Doc
View Source
Gets the list of comments from the netlist.
Declaration
List<string> Comments { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<System.String> |
|
|
Improve this Doc
View Source
Exports
Gets the list of exports from the netlist.
Declaration
List<Export> Exports { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<Export> |
|
|
Improve this Doc
View Source
MonteCarloResult
Gets the Monte Carlo Analysis results.
Declaration
MonteCarloResult MonteCarloResult { get; }
Property Value
|
Improve this Doc
View Source
Prints
Gets the list of generated prints.
Declaration
List<Print> Prints { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<Print> |
|
|
Improve this Doc
View Source
Seed
Gets or sets the used random seed.
Declaration
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
SimulationConfiguration
Gets the simulation configuration.
Declaration
SimulationConfiguration SimulationConfiguration { get; }
Property Value
|
Improve this Doc
View Source
Simulations
Gets the list of simulation from the netlist.
Declaration
List<TSimulation> Simulations { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<TSimulation> |
|
|
Improve this Doc
View Source
Title
Gets the title of the netlist.
Declaration
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
ValidationResult
Declaration
SpiceNetlistValidationResult ValidationResult { get; }
Property Value
|
Improve this Doc
View Source
XyPlots
Gets the list of generated X-Y plots.
Declaration
List<XyPlot> XyPlots { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<XyPlot> |
|