Skip to content

Commit

Permalink
Introducing different type of refinement.
Browse files Browse the repository at this point in the history
Signed-off-by: Umberto Zerbinati <zerbinati@maths.ox.ac.uk>
  • Loading branch information
Umberto Zerbinati committed Feb 5, 2024
1 parent 70715f5 commit c016658
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions ngsPETSc/utils/firedrake.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,36 @@ def flagsUtils(flags, option, default):
except KeyError:
return default

def uniformRefinementRoutine(ngmesh, plex):
def uniformRefinementRoutine(ngmesh, cdm):
'''
Routing called inside of NetgenHierarchy to compute refined ngmesh and plex.
'''
#We refine the netgen mesh uniformly
ngmesh.Refine(adaptive=False)
#We refine the DMPlex mesh uniformly
cdm.setRefinementUniform(True)
rdm = cdm.refine()
rdm.removeLabel("pyop2_core")
rdm.removeLabel("pyop2_owned")
rdm.removeLabel("pyop2_ghost")
return (rdm, ngmesh)

def alfeldRefinementRoutine(ngmesh, cdm):
'''
Routing called inside of NetgenHierarchy to compute refined ngmesh and plex.
'''
#We refine the netgen mesh alfeld
ngmesh.SplitAlfeld()
#We refine the DMPlex mesh alfeld
tr = PETSc.DMPlexTransform().create(comm=PETSc.COMM_WORLD)
tr.setType(PETSc.DMPlexTransformType.REFINEREGULAR)
tr.setDM(cdm)
tr.setUp()
rdm = tr.apply(cdm)
return (rdm, ngmesh)

refinementTypes = {"uniform": uniformRefinementRoutine,
"Alfeld": alfeldRefinementRoutine}

def NetgenHierarchy(mesh, levs, flags):
'''
Expand Down Expand Up @@ -288,6 +314,7 @@ def NetgenHierarchy(mesh, levs, flags):
if isinstance(order, int):
order= [order]*(levs+1)
tol = flagsUtils(flags, "tol", 1e-8)
refType = flagsUtils(flags, "refinement_type", "uniform")
#Firedrake quoantities
meshes = []
refinements_per_level = 1
Expand All @@ -306,14 +333,7 @@ def NetgenHierarchy(mesh, levs, flags):
for l in range(levs):
#Streightening the mesh
ngmesh.Curve(1)
#We refine the netgen mesh uniformly
ngmesh.Refine(adaptive=False)
#We refine the DMPlex mesh uniformly
cdm.setRefinementUniform(True)
rdm = cdm.refine()
rdm.removeLabel("pyop2_core")
rdm.removeLabel("pyop2_owned")
rdm.removeLabel("pyop2_ghost")
rdm, ngmesh = refinementTypes[refType](ngmesh, cdm)
cdm = rdm
#We snap the mesh to the Netgen mesh
snapToNetgenDMPlex(ngmesh, rdm)
Expand Down

0 comments on commit c016658

Please sign in to comment.