Skip to content

Commit

Permalink
Fix/issue 3689 (#3787)
Browse files Browse the repository at this point in the history
* Refresh IDs to get port information

* Fix vale

* Fix vale

* Fix vale

* Fix vale

* Fix vale

* Update doc/source/Getting_started/Troubleshooting.rst

Co-authored-by: Kathy Pippert <[email protected]>

* Update doc/source/Getting_started/Troubleshooting.rst

Co-authored-by: Kathy Pippert <[email protected]>

---------

Co-authored-by: Kathy Pippert <[email protected]>
  • Loading branch information
Samuelopez-ansys and PipKat authored Oct 24, 2023
1 parent d20f7bc commit 72c2ddb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/source/Getting_started/Quickcode.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Quick Code
Quick code
==========

Documentation and issues
Expand Down
8 changes: 4 additions & 4 deletions doc/source/Getting_started/Troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://learn.microsoft.com/en-us/windows/win32/com/com-objects-and-interfaces>`_ which
COM and gRPC
------------
Prior to the 2022 R2 release, CPython automation in AEDT used
`COM <https://learn.microsoft.com/en-us/windows/win32/com/com-objects-and-interfaces>`_ , 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 <https://github.com/mhammond/pywin32>`_ and `PythonNET <https://pythonnet.github.io/pythonnet/>`_.
Expand Down
20 changes: 19 additions & 1 deletion doc/styles/Vocab/ANSYS/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ ANSYS
Ansys
ansys
AEDB
API
AEDT
AEDT API
2D Extractor
airbox
airgap
Expand All @@ -11,22 +14,33 @@ busbars
Bz
circuit
Circuit
com
COM
COM interface
Components
components
CPython
DesignXploration
docstring
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
Expand All @@ -51,11 +65,13 @@ Postprocessing
PMs
pyaedt
PyAEDT
PyAnsys
PyPI
Python
pyvista
Q2D Extractor
Q3D Extractor
Q3D
RC
RF
RMXprt
Expand Down Expand Up @@ -83,4 +99,6 @@ Slurm
Python.NET
Toolkits
toolkits

3D modeler
2D modeler
Stackup 3D
2 changes: 1 addition & 1 deletion pyaedt/modeler/circuits/PrimitivesCircuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 72c2ddb

Please sign in to comment.