Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jefalon committed Jan 26, 2024
2 parents 7462ab2 + 2c3159c commit 724f9e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion windse/DomainManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1433,13 +1433,13 @@ def __init__(self):
self.fprint("")
if self.mesh_type == "mshr":
raise NotImplementedError("Mshr is no longer supported, use gmsh instead.")

# self.fprint("Generating Mesh Using mshr")

# ### Create Mesh ###
# mshr_circle = Circle(Point(self.center[0],self.center[1]), self.radius, self.nt)
# self.mesh = generate_mesh(mshr_circle,self.res)


elif self.mesh_type == "gmsh":
self.fprint("Generating Mesh Using gmsh")

Expand Down
2 changes: 1 addition & 1 deletion windse/FunctionSpaceManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class LinearFunctionSpace(GenericFunctionSpace):
def __init__(self,dom):
super(LinearFunctionSpace, self).__init__(dom)

# trick the mesh to working?
# # trick the mesh to working?
# dummy = MeshFunction('bool', self.mesh, self.mesh.geometry().dim(),False)
# print("before:", self.mesh.num_entities_global(0))
# self.mesh = refine(self.mesh,dummy)
Expand Down

0 comments on commit 724f9e6

Please sign in to comment.