Skip to content

Commit 41a67e3

Browse files
committed
also all x special bcs
1 parent e491673 commit 41a67e3

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

mesh/patch.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,10 @@ def fill_BC(self, name):
484484

485485
# that will handle the standard type of BCs, but if we asked
486486
# for a custom BC, we handle it here
487+
if self.BCs[name].xlb in bnd.ext_bcs.keys():
488+
bnd.ext_bcs[self.BCs[name].xlb](self.BCs[name].xlb, "xlb", name, self)
489+
if self.BCs[name].xrb in bnd.ext_bcs.keys():
490+
bnd.ext_bcs[self.BCs[name].xrb](self.BCs[name].xrb, "xrb", name, self)
487491
if self.BCs[name].ylb in bnd.ext_bcs.keys():
488492
bnd.ext_bcs[self.BCs[name].ylb](self.BCs[name].ylb, "ylb", name, self)
489493
if self.BCs[name].yrb in bnd.ext_bcs.keys():

0 commit comments

Comments
 (0)