From: Paul T. B. <ptb...@gm...> - 2019-03-08 21:36:02
|
This is really a ParaView question and not a libMesh one, but I will try to help. In ParaView, you need to add the filter to your pipeline to show the displacement. It is based on using a vector variable, so you will also need to use the calculator filter to create a vector field for your displacement (e.g. u*iHat + v*jHat + w*kHat). Alternatively, to avoid needing the calculator in ParaView, you can change the variable names in the example to be "Ux" "Uy" and "Uz". Paraview will then understand "U" as the vector variable to which you can use the "Warp by Vector" filter to get what you want. Here's a link to many ParaView tutorials. Hope that helps. Best, Paul On Sun, Mar 3, 2019 at 5:15 PM Nikrouz <nik...@gm...> wrote: > Dear all, > > I am new to libMesh. I have run the "Large Deformation Elasticity > <http://libmesh.github.io/examples/systems_of_equations_ex7.html>" > example but I can not see the deformed shape of the beam in Paraview or > VisIt. What I can see is the amount of displacements(u,v and w) > > Should I change the current code to be able to visualize the large > deformation in Paraview or Vislit? > > Thanks everybody! > > > > _______________________________________________ > Libmesh-users mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libmesh-users > |