FEM_BASIS_T6_DISPLAY is a MATLAB program, using double precision arithmetic, which reads data defining a quadratic triangular ("T6") mesh and displays the basis function associated with any node in the mesh.
The entire mesh is shown (which could be a problem for large meshes!). However, a finite element basis function is nonzero over only a relatively small number of elements. Over these elements, the basis function is quadratic, and the curved nature of this part of the surface is suggested by taking many plot points in this region.
The best part of the presentation is that MATLAB allows the user to turn the plot or zoom in and out, which makes it much easier to understand the information that is being presented.
The triangular mesh is defined by a node file containing the coordinates of nodes, and a triangle file containing sets of the six nodes that make up each triangle.
Note that the six nodes making up each triangle are to be listed in a particular order, in which the vertices come first, followed by the midside nodes. Moreover, the first midside node is the one between vertices 1 and 2, as suggested by the following diagram:
3
|\
| \
| \
6 5
| \
| \
| \
1---4---2
In general, a mesh of quadratic triangles allows the sides to be bent. However, for this application, it is assumed that the sides of each triangle are straight, that is, that each midside node lies on the line segment joining the corresponding vertices.
BEZIER_SURFACE_DISPLAY is a MATLAB program which displays a Bezier surface.
FEM_50 is a MATLAB finite element program in just 50 lines of code.
FEM_50_HEAT is a modified version of FEM_50 suitable for solving the heat equation.
FEM_BASIS_T3_DISPLAY is a MATLAB program which displays a basis function associated with a linear triangle ("T3") mesh.
FEM_IO is a library of MATLAB routines for reading or writing the node, element and data files that define a finite element model.
FEM_SAMPLE is a MATLAB library of routines for evaluating a finite element function defined on an order 3 or order 6 triangulation.
FEM2D_HEAT is a MATLAB program that solves the time dependent heat equation in the unit square.
FEM2D_POISSON is a MATLAB program for solving Poisson's equation on a square, using the finite element method.
FEMPACK is a library of MATLAB routines for simple finite element calculations.
FREE_FEM_HEAT is a MATLAB program that solves the time dependent heat equation in an arbitrary triangulated 2D region.
FREE_FEM_NAVIER_STOKES is a MATLAB program for solving the steady incompressible Navier Stokes equations on an arbitrary triangulated region, using the finite element method.
FREE_FEM_POISSON is a MATLAB program for solving Poisson's equation on a triangulated region, using the finite element method.
FREE_FEM_STOKES is a MATLAB program for solving the Stokes equations on a triangulated region, using the finite element method.
POLYGONAL_SURFACE_DISPLAY is a MATLAB program which reads two files defining a polygonal surface and displays it within MATLAB.
TET_MESH_DISPLAY is a MATLAB program which can read in the node and tetra files defining a tet mesh and display a wireframe image.
TRI_MESH_DISPLAY is a MATLAB program which reads data defining a triangular mesh of a 3D surface and displays it.
TRIANGLE is an executable C program which computes a triangulation of a geometric region.
TRIANGULATION_DISPLAY_OPEN_GL is an executable C++ program which reads files defining a triangulation and displays an image using Open GL.
TRIANGULATION_ORDER6 is a directory which contains a description and examples of order 6 triangulations.
TRIANGULATION_ORDER6_CONTOUR is a MATLAB script which can make contours of a scalar quantity defined on the nodes of an order 6 triangulation.
TRIANGULATION_PLOT is a MATLAB program which creates an EPS image of a triangulation.
SMALL_SQUARE is a simple mesh of 25 nodes and 8 elements over the [0,4] by [0,4] square. Test files you may copy include:
BIG_SQUARE is a simple mesh of 169 nodes and 72 elements over the [0,1] by [0,1] square. Test files you may copy include:
You can go up one level to the MATLAB source codes.