Skip to content

Commit 75a05fa

Browse files
maxcapodi78maxcapodi78
maxcapodi78
authored and
maxcapodi78
committed
fixed bug in boundaries
1 parent 0d35c2f commit 75a05fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pyaedt/application/Design.py

+2
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,8 @@ def boundaries(self):
361361
current_boundaries = bb[::2]
362362
current_types = bb[1::2]
363363
check_boundaries = current_boundaries[:] + self.ports[:] + self.excitations[:]
364+
if "nets" in dir(self):
365+
check_boundaries += self.nets
364366
for k in list(self._boundaries.keys())[:]:
365367
if k not in check_boundaries:
366368
del self._boundaries[k]

0 commit comments

Comments
 (0)