NAG Library Routine Document

d06daf  (dim2_transform_affine)

 Contents

    1  Purpose
    7  Accuracy
    10  Example

1
Purpose

d06daf is a utility which performs an affine transformation of a given mesh.

2
Specification

Fortran Interface
Subroutine d06daf ( nv, nedge, nelt, ntrans, itype, trans, coori, edgei, conni, cooro, edgeo, conno, itrace, rwork, lrwork, ifail)
Integer, Intent (In):: nv, nedge, nelt, ntrans, itype(ntrans), itrace, lrwork
Integer, Intent (Inout):: edgei(3,nedge), conni(3,nelt), ifail
Integer, Intent (Out):: edgeo(3,nedge), conno(3,nelt)
Real (Kind=nag_wp), Intent (In):: trans(6,ntrans)
Real (Kind=nag_wp), Intent (Inout):: coori(2,nv)
Real (Kind=nag_wp), Intent (Out):: cooro(2,nv), rwork(lrwork)
C Header Interface
#include nagmk26.h
void  d06daf_ ( const Integer *nv, const Integer *nedge, const Integer *nelt, const Integer *ntrans, const Integer itype[], const double trans[], double coori[], Integer edgei[], Integer conni[], double cooro[], Integer edgeo[], Integer conno[], const Integer *itrace, double rwork[], const Integer *lrwork, Integer *ifail)

3
Description

d06daf generates a mesh (coordinates, triangle/vertex connectivities and edge/vertex connectivities) resulting from an affine transformation of a given mesh. This transformation is of the form Y=A×X+B, where
Such a transformation includes a translation, a rotation, a scale reduction or increase, a symmetric transformation with respect to a user-supplied line, a user-supplied analytic transformation, or a composition of several transformations.
This routine is partly derived from material in the MODULEF package from INRIA (Institut National de Recherche en Informatique et Automatique).

4
References

None.

5
Arguments

1:     nv – IntegerInput
On entry: the total number of vertices in the input mesh.
Constraint: nv3.
2:     nedge – IntegerInput
On entry: the number of the boundary or interface edges in the input mesh.
Constraint: nedge1.
3:     nelt – IntegerInput
On entry: the number of triangles in the input mesh.
Constraint: nelt2×nv-1.
4:     ntrans – IntegerInput
On entry: the number of transformations of the input mesh.
Constraint: ntrans1.
5:     itypentrans – Integer arrayInput
On entry: itypei, for i=1,2,,ntrans, indicates the type of each transformation as follows:
itypei=0
Identity transformation.
itypei=1
Translation.
itypei=2
Symmetric transformation with respect to a user-supplied line.
itypei=3
Rotation.
itypei=4
Scaling.
itypei=10
User-supplied analytic transformation.
Note that the transformations are applied in the order described in itype.
Constraint: itypei=0, 1, 2, 3, 4 or 10, for i=1,2,,ntrans.
6:     trans6ntrans – Real (Kind=nag_wp) arrayInput
On entry: the arguments for each transformation. For i=1,2,,ntrans, trans1i to trans6i contain the arguments of the ith transformation.
If itypei=0, elements trans1i to trans6i are not referenced.
If itypei=1, the translation vector is u= a b , where a=trans1i and b=trans2i, while elements trans3i to trans6i are not referenced.
If itypei=2, the user-supplied line is the curve {x,y2; such that ax+by+c=0}, where a=trans1i, b=trans2i and c=trans3i, while elements trans4i to trans6i are not referenced.
If itypei=3, the centre of the rotation is x0,y0 where x0=trans1i and y0=trans2i, θ=trans3i is its angle in degrees, while elements trans4i to trans6i are not referenced.
If itypei=4, a=trans1i is the scaling coefficient in the x-direction, b=trans2i is the scaling coefficient in the y-direction, and x0,y0 are the scaling centre coordinates, with x0=trans3i and y0=trans4i; while elements trans5i to trans6i are not referenced.
If itypei=10, the user-supplied analytic affine transformation Y=A×X+B is such that A=akl1k,l2 and B=bk1k2 whereakl=trans2×k-1+li, and bk=trans4+ki with k,l=1,2.
7:     coori2nv – Real (Kind=nag_wp) arrayInput/Output
On entry: coori1i contains the x coordinate of the ith vertex of the input mesh, for i=1,2,,nv; while coori2i contains the corresponding y coordinate.
On exit: see Section 9.
8:     edgei3nedge – Integer arrayInput/Output
On entry: the specification of the boundary or interface edges. edgei1j and edgei2j contain the vertex numbers of the two end points of the jth boundary edge. edgei3j is a user-supplied tag for the jth boundary edge.
Constraint: 1edgeiijnv and edgei1jedgei2j, for i=1,2 and j=1,2,,nedge.
On exit: see Section 9.
9:     conni3nelt – Integer arrayInput/Output
On entry: the connectivity of the input mesh between triangles and vertices. For each triangle j, conniij gives the indices of its three vertices (in anticlockwise order), for i=1,2,3 and j=1,2,,nelt.
Constraints:
  • 1conniijnv;
  • conni1jconni2j;
  • conni1jconni3j and conni2jconni3j, for i=1,2,3 and j=1,2,,nelt.
On exit: see Section 9.
10:   cooro2nv – Real (Kind=nag_wp) arrayOutput
On exit: cooro1i will contain the x coordinate of the ith vertex of the transformed mesh, for i=1,2,,nv; while cooro2i will contain the corresponding y coordinate.
11:   edgeo3nedge – Integer arrayOutput
On exit: the specification of the boundary or interface edges of the transformed mesh. If the number of symmetric transformations is even or zero thenedgeoij=edgeiij, for i=1,2,3 and j=1,2,,nedge; otherwise edgeo1j=edgei2j,edgeo2j=edgei1j and edgeo3j=edgei3j, for j=1,2,,nedge.
12:   conno3nelt – Integer arrayOutput
On exit: the connectivity of the transformed mesh between triangles and vertices. If the number of symmetric transformations is even or zero thenconnoij=conniij, for i=1,2,3 and j=1,2,,nelt; otherwise conno1j=conni1j, conno2j=conni3j and conno3j=conni2j, for j=1,2,,nelt.
13:   itrace – IntegerInput
On entry: the level of trace information required from d06daf.
itrace0
No output is generated.
itrace1
Details of each transformation, the matrix A and the vector B of the final transformation, which is the composition of all the ntrans transformations, are printed on the current advisory message unit (see x04abf).
14:   rworklrwork – Real (Kind=nag_wp) arrayWorkspace
15:   lrwork – IntegerInput
On entry: the dimension of the array rwork as declared in the (sub)program from which d06daf is called.
Constraint: lrwork12×ntrans.
16:   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
On entry,nv<3;
ornelt>2×nv-1;
ornedge<1;
oredgeiij<1 or edgeiij>nv for some i=1,2 and j=1,2,,nedge;
oredgei1j=edgei2j for some j=1,2,,nedge;
orconniij<1 or conniij>nv for some i=1,2,3 and j=1,2,,nelt;
orconni1j=conni2j or conni1j=conni3j or
conni2j=conni3j for some j=1,2,,nelt;
orntrans<1;
oritypei0, 1, 2, 3, 4 or 10 for some i=1,2,,ntrans;
orlrwork<12×ntrans.
ifail=2
A serious error has occurred in an internal call to an auxiliary routine. Check the input mesh especially the triangles/vertices and the edges/vertices connectivities as well as the details of each transformations.
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

Not applicable.

8
Parallelism and Performance

d06daf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

You may not wish to save the input mesh (coori, edgei and conni) and could call d06daf using the same arguments for the input and the output (transformed) mesh.

10
Example

For an example of the use of this utility routine, see Section 10 in d06dbf.
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017