NAG Library Routine Document

d03maf (dim2_triangulate)

1
Purpose

d03maf places a triangular mesh over a given two-dimensional region. The region may have any shape, including one with holes.

2
Specification

Fortran Interface
Subroutine d03maf ( h, m, n, nb, npts, places, indx, sdindx, isin, dist, sddist, ifail)
Integer, External:: isin
Integer, Intent (In):: m, n, nb, sdindx, sddist
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: npts, indx(4,sdindx)
Real (Kind=nag_wp), Intent (In):: h
Real (Kind=nag_wp), Intent (Out):: places(2,sdindx), dist(4,sddist)
C Header Interface
#include <nagmk26.h>
void  d03maf_ (const double *h, const Integer *m, const Integer *n, const Integer *nb, Integer *npts, double places[], Integer indx[], const Integer *sdindx,
Integer (NAG_CALL *isin)(const double *x, const double *y),
double dist[], const Integer *sddist, Integer *ifail)

3
Description

d03maf begins with a uniform triangular grid as shown in Figure 1 and assumes that the region to be triangulated lies within the rectangle given by the inequalities
0<x<3m-1h,  0<y<n-1h.  
This rectangle is drawn in bold in Figure 1. The region is specified by the isin which must determine whether any given point x,y lies in the region. The uniform grid is processed column-wise, with x1,y1 preceding x2,y2 if x1<x2 or x1=x2, y1<y2. Points near the boundary are moved onto it and points well outside the boundary are omitted. The direction of movement is chosen to avoid pathologically thin triangles. The points accepted are numbered in exactly the same order as the corresponding points of the uniform grid were scanned. The output consists of the x,y coordinates of all grid points and integers indicating whether they are internal and to which other points they are joined by triangle sides.
The mesh size h must be chosen small enough for the essential features of the region to be apparent from testing all points of the original uniform grid for being inside the region. For instance if any hole is within 2h of another hole or the outer boundary then a triangle may be found with all vertices within 12h of a boundary. Such a triangle is taken to be external to the region so the effect will be to join the hole to another hole or to the external region.
Further details of the algorithm are given in the references.
Figure 1
Figure 1

4
References

Reid J K (1970) Fortran subroutines for the solutions of Laplace's equation over a general routine in two dimensions Harwell Report TP422
Reid J K (1972) On the construction and convergence of a finite-element solution of Laplace's equation J. Instr. Math. Appl. 9 1–13

5
Arguments

1:     h – Real (Kind=nag_wp)Input
On entry: h, the required length for the sides of the triangles of the uniform mesh.
2:     m – IntegerInput
3:     n – IntegerInput
On entry: values m and n such that all points x,y inside the region satisfy the inequalities
0x3m-1h, 0yn-1h.  
Constraint: m=n>2.
4:     nb – IntegerInput
On entry: the number of times a triangle side is bisected to find a point on the boundary. A value of 10 is adequate for most purposes (see Section 7).
Constraint: nb1.
5:     npts – IntegerOutput
On exit: the number of points in the triangulation.
6:     places2sdindx – Real (Kind=nag_wp) arrayOutput
On exit: the x and y coordinates respectively of the ith point of the triangulation.
7:     indx4sdindx – Integer arrayOutput
On exit: indx1i contains i if point i is inside the region and -i if it is on the boundary. For each triangle side between points i and j with j>i, indxki, k>1, contains j or -j according to whether point j is internal or on the boundary. There can never be more than three such points. If there are less, some values indxki, k>1, are zero.
8:     sdindx – IntegerInput
On entry: the second dimension of the arrays places and indx as declared in the (sub)program from which d03maf is called.
Constraint: sdindxnpts.
9:     isin – Integer Function, supplied by the user.External Procedure
isin must return the value 1 if the given point x,y lies inside the region, and 0 if it lies outside.
The specification of isin is:
Fortran Interface
Function isin ( x, y)
Integer:: isin
Real (Kind=nag_wp), Intent (In):: x, y
C Header Interface
#include <nagmk26.h>
Integer  isin (const double *x, const double *y)
1:     x – Real (Kind=nag_wp)Input
2:     y – Real (Kind=nag_wp)Input
On entry: the coordinates of the given point.
isin must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which d03maf is called. Arguments denoted as Input must not be changed by this procedure.
10:   dist4sddist – Real (Kind=nag_wp) arrayWorkspace
11:   sddist – IntegerInput
On entry: the second dimension of the array dist as declared in the (sub)program from which d03maf is called.
Constraint: sddist4n.
12:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1 or 1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
sdindx is too small: sdindx=value.
ifail=2
A point inside the region violates one of the constraints.
ifail=3
On entry, sddist=value and n=value.
Constraint: sddist4×n.
ifail=4
On entry, m=value.
Constraint: m>2.
ifail=5
On entry, n=value.
Constraint: n>2.
ifail=6
On entry, nb=value.
Constraint: nb>0.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

Points are moved onto the boundary by bisecting a triangle side nb times. The accuracy is therefore h×2-nb.

8
Parallelism and Performance

d03maf is not threaded in any implementation.

9
Further Comments

The time taken is approximately proportional to m×n.

10
Example

The following program triangulates the circle with centre 7.0,7.0 and radius 6.0 using a basic grid size h=4.0.

10.1
Program Text

Program Text (d03mafe.f90)

10.2
Program Data

Program Data (d03mafe.d)

10.3
Program Results

Program Results (d03mafe.r)

GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 2 4 6 8 10 12 14 0 2 4 6 8 10 12 14 y x Example Program Triangulation of a Circle with centre (7,7) and radius 6 using grid size=4 gnuplot_plot_1