We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e491673 commit 41a67e3Copy full SHA for 41a67e3
1 file changed
mesh/patch.py
@@ -484,6 +484,10 @@ def fill_BC(self, name):
484
485
# that will handle the standard type of BCs, but if we asked
486
# 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)
491
if self.BCs[name].ylb in bnd.ext_bcs.keys():
492
bnd.ext_bcs[self.BCs[name].ylb](self.BCs[name].ylb, "ylb", name, self)
493
if self.BCs[name].yrb in bnd.ext_bcs.keys():
0 commit comments