Skip to content

Commit

Permalink
Merge pull request #239 from antjost/devSolidFil
Browse files Browse the repository at this point in the history
[IBM] Bug fix - solid & filament
  • Loading branch information
vincentcasseau authored Dec 12, 2024
2 parents 2a0e9f5 + e077929 commit eabeb4c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cassiopee/Geom/Geom/IBM.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,10 @@ def localWMMFlags__(tb,tbFilament):

if tbFilament:
if len(Internal.getBases(tbFilament))==len(Internal.getBases(tb)):
isFilamentOnly=True
bb1 = Internal.getBases(tb)
bb2 = Internal.getBases(tbFilament)
if bb1[0][0]==bb2[0][0]:
isFilamentOnly=True
for z in Internal.getZones(tbFilament):
soldef = Internal.getNodeFromName(z,'.Solver#define')
if soldef is not None:
Expand Down

0 comments on commit eabeb4c

Please sign in to comment.