mirror of https://gitlab.com/pamhyr/pamhyr2
Mage: Fix BC export when node is not associate.
parent
c6274890a7
commit
12e3d779c6
|
|
@ -268,6 +268,9 @@ class Mage(CommandLineSolver):
|
||||||
|
|
||||||
for tab in ["liquid", "solid", "suspenssion"]:
|
for tab in ["liquid", "solid", "suspenssion"]:
|
||||||
for bound in lst.get_tab(tab):
|
for bound in lst.get_tab(tab):
|
||||||
|
if bound.node is None:
|
||||||
|
continue
|
||||||
|
|
||||||
if bound.bctype == "ZD":
|
if bound.bctype == "ZD":
|
||||||
AVA.append(bound)
|
AVA.append(bound)
|
||||||
elif bound.bctype == "TD" or bound.bctype == "PC":
|
elif bound.bctype == "TD" or bound.bctype == "PC":
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue