Page 1 of 1

displaying two different meshes simultaneously in GiD

Posted: Mon Dec 12, 2016 7:03 pm
by aortizb
Hello, I am working with material point method. To plot results I define a mesh based on "Points" (the element type is "Point" in the post.msh file). All the interesting variables are plotted at these points. However,in conjunction with the "Point" mesh, I would like to visualize an underlying mesh of four-node quadrilaterals. No values for the variables will be associated with the four-node quadrilateral. Is this possible in GiD?

Thanks,
Alejandro.

Re: displaying two different meshes simultaneously in GiD

Posted: Mon Dec 12, 2016 9:13 pm
by escolano
Yes, you can write more than one mesh in the .post.msh file

MESH "FinitePoint2D 1" dimension 3 ElemType Point Nnode 1
Coordinates
...
End coordinates

Elements
...
End elements

MESH "SurfaceMesh 1" dimension 3 ElemType Quadrilateral Nnode 4
Coordinates
...
End coordinates

Elements
...
End elements

and define the nodal results only in some nodes, e.g. the ones of the 'Point' mesh
(the elements with nodes without result will be drawn transparent when drawing a contour filled result)

Re: displaying two different meshes simultaneously in GiD

Posted: Fri Oct 27, 2023 5:48 am
by Advika
Hello Friends,YouTube Vanced
I'm working with the Material Point Method, and I'm using a mesh defined by "Points" with the element type as "Point" in the post.msh file to plot various variables. However, I also want to display an underlying mesh of four-node quadrilaterals alongside the "Point" mesh. The quadrilaterals won't have any associated variable values. Is it possible to do this in GiD?

Re: displaying two different meshes simultaneously in GiD

Posted: Fri Oct 27, 2023 10:41 am
by escolano
Yes, you can define in the file .post.msh a mesh of quadrilaterals without any result on them.