create_symbol#

NexximComponents.create_symbol(name: str, pins: list) bool#

Create a symbol.

Parameters:
namestr

Name of the symbol.

pinslist

List of the pins.

Returns:
bool

True when successful, False when failed.

References

>>> oSymbolManager.Add

Examples

>>> from ansys.aedt.core import Circuit
>>> aedtapp = Circuit()
>>> sch = aedtapp.modeler.schematic
>>> sch.create_symbol("my_symbol", [1, 2])