-
How can I add a menu and Icons in Linux and Windows?
I want to add a menu and icons as below. How can I add a menu and Icons in Linux Linux and Windows?
-
change power/ground nets to signal net in edb api
Hi, I want to change the power nets to signal nets in edb api. I could not find a method in the documentation for this. I would appreciate if anyone knows how to do it. Thanks
-
Duplicating port in Directional coupler
I created a port in a directional coupler , designed as a quarter and duplicated with duplicate_and mirror, using the following instruction: hfss.modeler.create_polyline(position_list = [["-(l35/2+pl)", "l1-l2-w50/2", "h1"], ["-(l35/2+pl)", "l1-l2-w50/2", "0"]], name="port1", xsection_type="Line", xsection_width="w50") Is…
-
Assign port on circle sheet
Hi, i want to create a lumped port for a circle called "port" n pyaedt. I used this code for port creation: int_line_start=["fx-r_ext","0","h_SMA"] int_line_end=["fx","0","h_SMA"] hfss.create_lumped_port_to_sheet("port", axisdir=[int_line_start, int_line_end], portname="1",…
-
how to run cpython and pyaedt from electronics desktop
I would like to run a cpyton script from aedt
-
How to access AEDT API methods not implemented in PyAEDT?
For example, to capture the variables in the derivative study: There is an AEDT API method to get these variables: oProject = oDesktop.GetActiveProject() oDesign = oProject.GetActiveDesign() oModule = oDesign.GetModule("AnalysisSetup") variables = oModule.GetDerivativeVariables("Setup1") How could I use this method using…
-
How to inspect properties of objects in AEDT modeler in a script
I would like to query properties of objects in a Ansys Electronic Desktop design with a script. Say I have created a new relative coordinate system, how can I query the values of e.g. the origin X, Y, and Z values?