Documentation /  Analog Insydes /  Reference Manual /  Model Library Management /

GlobalSubcircuitsLoadModel

3.3.5 GlobalModelParameters

Command structure of GlobalModelParameters.

With GlobalModelParameters you can inspect the contents of the global model parameter database. GlobalModelParameters returns a list of the names of the parameter sets stored in the database.

See also: FindModelParameters, GlobalSubcircuits.

Examples

Load Analog Insydes.

In[1]:= <<AnalogInsydes`

Define two diode model parameter sets.

In[2]:= Circuit[
ModelParameters[Name -> "Diode1", Scope -> Global,
IS -> 1.2*^-12, N -> 1.1],
ModelParameters[Name -> "Diode2", Scope -> Global,
IS -> 1.0*^-14, N -> 1.5]
] // ExpandSubcircuits;

List the contents of the global model parameter database.

In[3]:= GlobalModelParameters[] // InputForm

Out[3]//InputForm= {{"Diode1"}, {"Diode2"}}

GlobalSubcircuitsLoadModel