QMG logo

Overview and Examples of QMG

Consider the following problem: you have some kind of mechanical part. One facet of the part is held at 100 degrees C, an opposite facet is 0 degrees C. The object has a crack in the middle that acts like an insulator. All other facets are thermally insulated. What is the equilibrium temperature distribution on the interior of the part? Where are the largest temperature gradients? This problem is called a boundary value problem. One popular way to solve boundary value problems is the finite-element method.

From the point of view of software development, the three most difficult aspects of finite-element analysis are the geometric modeling tools, the mesh generator, and the finite-element system solver. The QMG package is intended to address mesh generation in two and three dimensions. It also has a few tools to assist in geometric modeling and an elementary finite-element solver that solves the sparse matrix equation with Matlab's backslash operator.

The QMG package consists of approximately 40 separate functions. The user of QMG invokes the functions through a console interface. QMG does not have its own console interface; instead it relies on the scripting capabilities of other software packages. Currently QMG runs inside two different scripting environments: Matlab and Tcl/Tk. In addition, the user can invoke QMG directly from the shell in either Windows or Unix.

Also provided are a suite of examples demonstrating the use of many of these functions, as well as a help utility (help in Matlab; gmhelp in Tcl/Tk) to obtain on-line documentation on the functions. In addition, there is a browser-based reference manual.

Although the interface to QMG is by typing function invocations, it would be easy to extend QMG with a GUI control since both Matlab and Tcl/Tk have GUI-building commands.

All the QMG functions, except for the examples shipped with the software, begin with the prefix gm, which is short for “geometry.” Functions that begin with gm_ are lower-level internal functions.

The input to the mesh generator is called a brep. (Terms used by other mesh generation systems for the input to the mesh generator are model or geometry.) Its output is a mesh. In Matlab, breps and meshes are represented as structured objects (nested cell arrays) that can be directly manipulated by the user. In Tcl/Tk, breps and meshes have an internal representation that can be converted either to a long text-string or to a list for manipulation by the user. In either Matlab or Tcl/Tk, the underlying data carried in breps and meshes is the same. A separate page describes the data representations.

A brep in QMG is a 2D or 3D object with curved boundaries. In particular, the boundaries are described by Bezier curves (in 2D) or patches (in 3D). Two kinds of patches are allowed: triangular Bezier patches and tensor-product quadrilateral patches.

Here are some distinguishing features of the QMG mesh generator compared to other mesh generators. On the positive side,

On the negative side,

For three-dimensional geometric modeling, graphics are very helpful. The Tcl/Tk version of QMG uses VRML1.0 for 3D graphics, so you need to have a web-browser (presumably either Netscape or Internet Explorer) that can view VRML files. For more information about VRML, see the VRML repository. This site includes a list of free and commercial VRML viewers. The Matlab version of QMG can use either VRML 1.0 or Matlab's built-in graphics capabilities.

Finite-element analysis is available only in the Matlab version of QMG. For the finite-element analysis, the user must call the mesh generator, set up the desired boundary conditions, and call the solver program. The boundary conditions can be arbitrary Matlab functions. They are associated with faces of the domain as property-value pairs of the faces.


A 2-dimensional example

Here is an example of solving a two-dimensional boundary value problem using QMG. This is test file test7.m in the Matlab example directory. The Tcl/Tk example test7.tcl is similar, except it does not invoke the finite-element solver. The domain is a circle with two elliptic holes and one slit (an internal boundary). The boundary conditions are u=1 on one hole, u=2 on the other hole, and du/dn=0 (insulated) on the exterior and on the slit. First, here is script file for this test.


%% QMG 2.0 test 7: a circle with two elliptic holes and a slit.

echo on

global interactive
%% Make an approximation to a circle using 6 Bezier cubic arcs.

numseg = 6;
[verts, scrap] = gm_circ_approx(0, 2*pi, numseg);

[numvert,scrap] = size(verts);
verts = verts(1:3*numseg,:);
codes = kron(ones(numseg,1),[2;3;3]);
codes(1) = 0;

c0 = gm_cpoly(verts,codes);

%% Make two elliptic holes.

hole1 = gmapply([.2, 0, 0; 0,.1,-.5], c0);
c = gmcavity(c0,hole1);
hole2 = gmapply([.2, 0, 0; 0, .1, .5], c0);
c = gmcavity(c,hole2);

%% Make a slit by modifying the brep directly.


%% Insert two new control points at (-.6,-.1) and (.6,.1).
[scrap,numcp] = size(c{4});

c{4}(:,numcp:numcp+1) = [.6,-.6;.1,-.1];

%% Insert two new vertices at these points.

[scrap,numv] = size(c{5});

c{5}(:,numv:numv+1) = {
'newv1','newv2'
 {}, {}
 {}, {}
 {}, {}
{'vertex';[];numcp},{'vertex';[];numcp+1}
};

%% Insert a new edge connecting those vertices.

[scrap,nume] = size(c{6});

c{6}(:,nume) = {
'newe1'
{}
{'newv1','newv2'}
{}
{'bezier_curve';1;[numcp,numcp+1]}
};

%% Insert the new edge as a repeated boundary of the region.

oldbsize = length(c{7}{2,0}); 
c{7}{2,0}{oldbsize} = 'newe1';
c{7}{2,0}{oldbsize+1} = 'newe1';


c_color = gmrndcolor(c);

if length(interactive) > 0
  gmviz(c_color), gmshowcolor(c_color)
end

%% generate a mesh.  Elements of size about .2.

show = 0;
if length(interactive) > 0
  show = 1;
end

m = gmmeshgen(c_color,'size','(const .2)', 'show', show);


%% Display the mesh
if length(interactive) > 0
  gmviz(m)
end

[c_color2, m2] = gmdouble(c_color, {'*'}, m);

%% Check the mesh.

gmchecktri(c_color2,m2);


%% Default neumann BC du/dn=0 on all faces except the two
%% holes that get Dirichlet conditions.

for j = 0 : nume
  if length(findstr('cav1',double(c_color2{6}{0,j})))
    [npv,scrap] = size(c_color2{6}(1,j));
    c_color2{6}{1,j}(:,npv) = {'bc'; '(d (const 1))'};
  end
  if length(findstr('cav2',double(c_color2{6}{0,j})))
    [npv,scrap] = size(c_color2{6}(1,j));
    c_color2{6}{1,j}(:,npv) = {'bc'; '(d (const 2))'};
  end
end

u = gmfem(c_color2, m2);

if length(interactive) > 0
  gmplot(m2, u)
end

global aspprod
global meshsizesum

if length(aspprod) > 0
  aspprod = aspprod * asp;
  [scrap,numvtx] = size(m2{4});
  meshsizesum = meshsizesum + numvtx;
end

The mesh generator on this example required less than a second on a Pentium Pro. The function gmchecktri in the above script produced the following output:

Maximum aspect ratio =        19.1017 achieved in
simplex #668 of topological entity mregion (2:0) which has vertices 52 372 388 
Maximum global side length =  0.206452
Minimum global altitude =     0.00212975
Number of nodes = 409 number of elements = 706

The brep produced by this mfile is illustrated in the following figure. The edges have been colored so that green corresponds to the insulated faces, red to the u=2 boundary condition, and blue to the u=1 boundary condition.

example 2D brep

The mesh produced by the mesh generator is depicted in the following figure.

example 2D mesh

As seen from the above trace, the worst aspect ratio occurring in this mesh is about 19. It is obvious from looking at this mesh that the mesh generator could do better in the sense that there are nodes that could be locally displaced to improve the overall quality of the mesh. We have not yet implemented any heuristic improvement techniques.

Finally, the color plot of the finite-element solution with mixed boundary conditions looks like this.

example 2D finite-element solution


A 3-dimensional example

This example shows a 3-dimensional brep with an internal boundary. No BVP is solved in this test case. This example is scripted in in Tcl/Tk. The object is shaped like a hex nut with a small interior crack. The object is constructing using Tcl/Tk script piece by piece, i.e., each surface and edge is constructed step by step.

The mesh generator required 121 seconds on this example (Pentium Pro 166MHz). The properties of the resulting mesh are:


Maximum aspect ratio =        72.4505 achieved in
simplex #1190 of topological entity hexnutcrack (3:0) which has vertices 3 351 489 493 
Maximum global side length =  0.780871
Minimum global altitude =     0.00121479
Number of nodes = 807 number of elements = 3403

The brep used for this test was rendered in VRML by a call to gmviz function. You can see the object now if you have a VRML viewer installed in your browser. Two renderings are available: in the first rendering, the outer faces are shown, but they hide the internal boundary. In the second rendering, one of the outer surfaces has been made transparent using the statement:


gmset hexobj2 [gm_addpropval $hexobj {s_top} {color} {{(1 0 0 0)}}]

In this second rendering, the internal crack is visible as a small magenta triangle.
  1. VRML rendering with all outer boundaries visible.
  2. VRML rendering with one outer boundary invisible and internal boundary visible.

This documentation is written by Stephen A. Vavasis and is copyright ©1999 by Cornell University. Permission to reproduce this documentation is granted provided this notice remains attached. There is no warranty of any kind on this software or its documentation. See the accompanying file 'copyright' for a full statement of the copyright.

Stephen A. Vavasis, Computer Science Department, Cornell University, Ithaca, NY 14853, vavasis@cs.cornell.edu