ansys / pyaedt

AEDT Python Client Package
https://aedt.docs.pyansys.com
MIT License
204 stars 125 forks source link

how can we change port_name #1557

Closed kclme84 closed 2 years ago

kclme84 commented 2 years ago

Description of the feature

if we use h3d.create_edge_port("microstrip",0) to create one edge port ,how can we change this port name? thanks !

Steps for implementing the feature

No response

Useful links and references

No response

hui-zhou-a commented 2 years ago

@kclme84 changing property in aedt is not impossible, but cumbersome. I highly recommend to assign the correct port name in the first place.

hui-zhou-a commented 2 years ago

@kclme84, aedt is only intended to create. I am investigating if port can be created in EDB in which changing its properties is much more convenient.

kclme84 commented 2 years ago

@ring630 ok,thanks ! I will be trying!

kclme84 commented 2 years ago

we can use "Modeler3DLayout.change_property()" to modify the port name.thanks! @ring630