3.3.9 RemoveModelParameters
Command structure of RemoveModelParameters.
RemoveModelParameters allows you to remove individual model parameter sets from the global parameter database or to clear the database completely. RemoveModelParameters returns the list of the names of the remaining model parameter sets.
See also: GlobalModelParameters, RemoveSubcircuit.
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 parameter database.
In[3]:= GlobalModelParameters[]
Out[3]=
Remove the parameter set "Diode1".
In[4]:= RemoveModelParameters["Diode1"]
Out[4]=
Delete all remaining global parameter sets.
In[5]:= RemoveModelParameters[All]
Out[5]=
|