Export my resultant geometry as a mesh to furtherly opperate

Hello everyone,

I’ve been working with a deformation problem, and I’ve gotten a result for my deformations which I’m happy with. Now, I need to take my new deformed geometry and create a mesh over it, so I can perform another FeniCs algorithm on it. Is there a way to do that?

First of all, please specify what version of FEniCS you are using. Are you using legacy FEniCS or DOLFINx?

In legacy FEniCS, you can use the command (ALE.move(mesh, deformation)) to change your mesh, while you would deform the geometry directly in FEniCSx, as shown in: Changing the shape in the surface normal directions - #6 by dokken

Im working With FeniCs legacy and your code works perfectly. Thanks a lot!