Show / Hide Table of Contents

Interface ISpiceModel<TCircuit, TSimulation>

Namespace: SpiceSharpParser.ModelReaders.Netlist.Spice
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

Comments

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
Type Description
MonteCarloResult
| 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
int? Seed { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
| Improve this Doc View Source

SimulationConfiguration

Gets the simulation configuration.

Declaration
SimulationConfiguration SimulationConfiguration { get; }
Property Value
Type Description
SimulationConfiguration
| 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
string Title { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ValidationResult

Declaration
SpiceNetlistValidationResult ValidationResult { get; }
Property Value
Type Description
SpiceNetlistValidationResult
| 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>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX