create_resistor_on_pin#
- EdbHfss.create_resistor_on_pin(pos_pin, neg_pin, rvalue=1, resistor_name='')[source]#
Create a Resistor boundary between two given pins.
- Parameters:
- Returns:
str
Name of the Resistor.
Examples
>>> from pyedb import Edb >>> edbapp = Edb("myaedbfolder", "project name", "release version") >>> pins =edbapp.components.get_pin_from_component("U2A5") >>> edbapp.hfss.create_resistor_on_pin(pins[0], pins[1],50,"res_name")