Documentation /  Analog Insydes /  Reference Manual /  Netlist Format /

IntroductionCircuit

3.1.1 Netlist

Command structure of Netlist.

A flat netlist is described in Analog Insydes by means of a Netlist object. A Netlist consists of a sequence of netlist entries which can be either basic components or model references. Each netlist entry is a list. The general syntax for a Netlist object is as follows:

netlistname =

Netlist[

netlist entry 1,

netlist entry 2,



]

The format of a netlist entry is described in Section 3.1.3.

Usually, a Netlist object is contained in a Circuit object together with model and parameter definitions.

See also: Circuit, CircuitEquations, Sections 3.1.3-3.1.7.

Examples

Load Analog Insydes.

In[1]:= <<AnalogInsydes`

A simple voltage divider netlist.

In[2]:= voldiv =
Netlist[
{V0, {1, 0}, V0},
{R1, {1, 2}, R1},
{R2, {2, 0}, R2}
]

Out[2]=

IntroductionCircuit