mesh2d, a MATLAB code which generates unstructured meshes in 2D, by Darren Engwirda.
The code is relatively simple, flexible and powerful. The user is able to define a variety of geometric shapes, and desired mesh densities.
MESH2D is most useful because it allows a user to specify a shape or region, which the program will then fill with a triangular mesh. The density of the triangular mesh can be uniform, or the user can request that smaller triangles be used near certain features of the region. The program relies heavily on the features of the Delaunay triangulation, which chooses, among all possible triangulations of a set of points, that triangulation which best avoids small angles.
Interested users should refer to the copy of MESH2D that is made available through the MATLAB Central File Exchange. This copy is essentially my personal working copy, to which I may have added comments, small coding changes, and extra tests and examples.
The MESH2D routines include a call to a function called wbar(). The call to this function fails on my system, and since it seems to have no importance whatsoever, I commented it out. (I believe it is intended to generate a "wait bar", similar to the hourglass or beachball or wristwatch icons.
The MESH2D function "mytsearch()" was originally written to call MATLAB's "tsearch()" function. The tsearch() function has since been removed from MATLAB. Therefore, the call to tsearch() also causes MESH2D to fail!
One alternative is a file called tsearch_mex.c, which searches a triangulation to determine which triangle contains each point. It does not require that the triangulation be Delaunay. To use this function with MATLAB, you need to apply MATLAB's MEX compiler...if you have never used the MEX compiler before, you may have some difficulty, since you need to determine that you have the MEX compiler, that you have a C or C++ compiler on your system, that MEX knows where these compilers are, and that you know how to invoke MEX to compile the function. That should be something like
mex tsearch_mex.c(The second time you do something like this is, of course, a hundred times easier and only half as mysterious!)
A second alternative is to replace the call to tsearch() by a call to MATLAB's replacement function DelaunayTri; however, a simple substitution of one call for the other does not quite work. There is, apparently, some feature of tsearch() that is not available in DelaunayTri(). In particular, it may be that tsearch() did not require the triangulation to be Delaunay...
A third alternative is to replace the call to tsearch(x,y,t,px,py) by a call to tsearchn([x y], t, [px py] ), which seems to work.
[ p, t ] = mesh2d ( vertices, edge, hdata, options );where:
hdata, the element size information. This structure, if supplied, can include the following information:
h = fun ( x, y, args{} )where x and y are vectors of point coordinates, and args is an optional addition set of input set in hdata.args. The function returns the user-desired elementsize at the given points.
options allows the user to modify the default behavior of the solver. This structure, if supplied, can include the following information:
Copyright (c) 2009, Darren Engwirda All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mesh2d is available in a MATLAB version.
distmesh, a MATLAB code which carries out triangular or tetrahedral mesh generation, by Per-Olof Persson and Gilbert Strang.
hand_mesh2d, a MATLAB code which reads in points which outline a human hand, and calls mesh2d(), which creates a fine triangular mesh of the region outlined by the points.
mesh2d_write, a MATLAB code which demonstrates how node and element data from MESH2D can be written to files.
test_triangulation, a MATLAB code which defines some test regions for triangulation.
triangle, a C code which computes a triangulation of a geometric region, by Jonathan Shewchuk.
triangulation, a MATLAB code which performs various operations on order 3 ("linear") or order 6 ("quadratic") triangulations.
Darren Engwirda
Darren Engwirda,
Locally-optimal Delaunay-refinement and optimisation-based mesh generation,
Ph.D. Thesis,
School of Mathematics and Statistics,
The University of Sydney, September 2014.
mex tsearch_mex.c