Skip to main content
2 of 4
added 4 characters in body
xzczd
  • 71.6k
  • 10
  • 183
  • 524

Note you must first load << NDSolve`FEM`. Otherwise your example does not evaluate.

You may simple select the coordinates that fulfill the required condition and then create a new Mesh:

mesh1 = ToElementMesh@Select[mesh[Coordinates], #[[2]] >= #[[1]] &] Show[mesh1["Wireframe"], Axes -> True, AxesLabel -> {x, y}] 

enter image description here

Daniel Huber
  • 60.8k
  • 2
  • 25
  • 71