3.3.2 FindModel
Command structure of FindModel.
FindModel searches a list of model library files for a specified model definition and returns the name of the first library in which the model was found. FindModel returns the symbol $Failed if it cannot find the model definition in any of the library files.
FindModel has the following options:
Options for FindModel.
See also: FindModelParameters, ListLibrary, LoadModel.
Examples
Load Analog Insydes.
In[1]:= <<AnalogInsydes`
Determine the name of the library file which contains the model "BJT/GummelPoon".
In[2]:= FindModel["BJT", "GummelPoon"] // InputForm
Out[2]//InputForm= "FullModels`"
Return the name of the first library from the given list which contains the model "BJT/AC".
In[3]:= FindModel["BJT", "AC", ModelLibrary -> {"FullDiodeModels`", "BasicBJTModels`", "SimplifiedModels`"} ] // InputForm
Out[3]//InputForm= "BasicBJTModels`"
|