set_spice_model#

Modeler3DLayout.set_spice_model(assignment, input_file, model_name=None, subcircuit_name=None, pin_map=None)[source]#

Assign a Spice model to a component.

Parameters:
assignmentstr

Name of the component.

input_filestr, optional

Full path to the model file. The default is None.

model_namestr, optional

Name of the model. The default is None, in which case the model name is the file name without an extension.

subcircuit_namestr, optional

Name of the subcircuit. The default is None, in which case the subcircuit name is the model name.

pin_maplist, optional

List of [spice_pin_name, aedt_pin_name] to customize the pin mapping between Spice pins and AEDT pins.

Returns:
bool

True when successful, False when failed.

Examples

>>> from pyaedt import Hfss3dLayout
>>> h3d = Hfss3dLayout("myproject")
>>> h3d.modeler.set_spice_model(assignment="A1",input_file=,subcircuit_name="SUBCK1")