diff --git a/doc/source/Getting_started/Quickcode.rst b/doc/source/Getting_started/Quickcode.rst index 7c484435191..1475ae608b4 100644 --- a/doc/source/Getting_started/Quickcode.rst +++ b/doc/source/Getting_started/Quickcode.rst @@ -1,4 +1,4 @@ -Quick Code +Quick code ========== Documentation and issues diff --git a/doc/source/Getting_started/Troubleshooting.rst b/doc/source/Getting_started/Troubleshooting.rst index c1973f45c27..e50ad5b5598 100644 --- a/doc/source/Getting_started/Troubleshooting.rst +++ b/doc/source/Getting_started/Troubleshooting.rst @@ -59,10 +59,10 @@ Run this script directly from AEDT and pass the wheelhouse file name as an argum Run PyAEDT ~~~~~~~~~~ -COM vs gRPC ------------ -Prior to the 2022R2 release CPython automation in AEDT used -`COM `_ which +COM and gRPC +------------ +Prior to the 2022 R2 release, CPython automation in AEDT used +`COM `_ , which requires all interfaces to be registered in the Windows Registry. Communication between Python and the AEDT API were translated through an intermediate layer using `pywin32 `_ and `PythonNET `_. diff --git a/doc/styles/Vocab/ANSYS/accept.txt b/doc/styles/Vocab/ANSYS/accept.txt index 16e7708252b..05c0ccba44d 100644 --- a/doc/styles/Vocab/ANSYS/accept.txt +++ b/doc/styles/Vocab/ANSYS/accept.txt @@ -2,6 +2,9 @@ ANSYS Ansys ansys AEDB +API +AEDT +AEDT API 2D Extractor airbox airgap @@ -11,6 +14,11 @@ busbars Bz circuit Circuit +com +COM +COM interface +Components +components CPython DesignXploration docstring @@ -18,15 +26,21 @@ Docstrings docstrings doppler EDB +EDB API efields EMIT getters globals +gRPC +GRPC +HFSS HFSS 3D Layout Huray Icepak IronPython limitilines +Layout +layout matplotlib Maxwell 2D Maxwell 3D @@ -51,11 +65,13 @@ Postprocessing PMs pyaedt PyAEDT +PyAnsys PyPI Python pyvista Q2D Extractor Q3D Extractor +Q3D RC RF RMXprt @@ -83,4 +99,6 @@ Slurm Python.NET Toolkits toolkits - +3D modeler +2D modeler +Stackup 3D diff --git a/pyaedt/modeler/circuits/PrimitivesCircuit.py b/pyaedt/modeler/circuits/PrimitivesCircuit.py index 99efa8e5d41..30248420644 100644 --- a/pyaedt/modeler/circuits/PrimitivesCircuit.py +++ b/pyaedt/modeler/circuits/PrimitivesCircuit.py @@ -230,7 +230,7 @@ def add_pin_iports(self, name, id_num): comp_id = "CompInst@" + name + ";" + str(id_num) + ";395" arg1 = ["Name:Selections", "Selections:=", [comp_id]] self.oeditor.AddPinIPorts(arg1) - + self.refresh_all_ids() return True @pyaedt_function_handler()