We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d35c2f commit 75a05faCopy full SHA for 75a05fa
pyaedt/application/Design.py
@@ -361,6 +361,8 @@ def boundaries(self):
361
current_boundaries = bb[::2]
362
current_types = bb[1::2]
363
check_boundaries = current_boundaries[:] + self.ports[:] + self.excitations[:]
364
+ if "nets" in dir(self):
365
+ check_boundaries += self.nets
366
for k in list(self._boundaries.keys())[:]:
367
if k not in check_boundaries:
368
del self._boundaries[k]
0 commit comments