Mesh Plate PDF
Mesh Plate PDF
Mesh Plate PDF
1. Introduction
In Finite Element Analysis the first thing important is discretizing the given structure. This part is
called preprocessing. The information needed for Finite Element Analysis is the coordinates and nodal
connectivity of the elements when a structure is discretized. This nodal connectivity and coordinates are
used for further analysis. When FEA is done in MATLAB, mostly preprocessing is done, using others
preprocessors and the nodal connectivity’s and nodal coordinates are given as input to the MATLAB
code. Doing this is an extra effort. It will be nice if we discretize the structure in the MATLAB itself and
get the nodal connectivity’s and nodal coordinates. The present code can be used to discretize the plate
of rectangular and circular in shape for FEA.
First the meshing of plate is demonstrated in the file RectangularPlate. After a function
MeshRectangularPlate is written to get the nodal coordinates and nodal connectivity’s of the elements.
L = 1; B = 1; Nx = 10; Ny = 10 ;
http://sites.google.com/site/kolukulasivasrinivas/
Figure 1: Plate Meshed
http://sites.google.com/site/kolukulasivasrinivas/
5. Meshing a circular/sector of a Plate
Using present code a circular plate or a sector of the plate can be discretized or meshed using 4
noded and 3 noded elements. The input required for meshing a circular plate is; radius, angle of the
plate and number of elements required along the radius and angle.
First the meshing of circular plate is demonstrated in the file CircularPlate. After a function
MeshCircularPlate is written to get the nodal coordinates and nodal connectivity’s of the elements.
http://sites.google.com/site/kolukulasivasrinivas/
Figure 4: OneHalf Circular Plate Mesh
http://sites.google.com/site/kolukulasivasrinivas/