NAG Library Routine Document

d06cbf  (dim2_sparsity)

 Contents

    1  Purpose
    7  Accuracy
    10  Example

1
Purpose

d06cbf generates the sparsity pattern of a finite element matrix associated with a given mesh.

2
Specification

Fortran Interface
Subroutine d06cbf ( nv, nelt, nnzmax, conn, nnz, irow, icol, ifail)
Integer, Intent (In):: nv, nelt, nnzmax, conn(3,nelt)
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: nnz, irow(nnzmax), icol(nnzmax)
C Header Interface
#include nagmk26.h
void  d06cbf_ ( const Integer *nv, const Integer *nelt, const Integer *nnzmax, const Integer conn[], Integer *nnz, Integer irow[], Integer icol[], Integer *ifail)

3
Description

d06cbf generates the sparsity pattern of a finite element matrix associated with a given mesh. The sparsity pattern is returned in a coordinate storage format consistent with the sparse linear algebra routines in Chapter F11. More precisely d06cbf returns the number of nonzero elements in the associated sparse matrix, and their row and column indices. This is designed to assist you in applying finite element discretization to meshes from the D06 Chapter Introduction and in solving the resulting sparse linear system using routines from Chapter F11.
The output sparsity pattern is based on the fact that finite element matrix A has elements aij satisfying:
aij0 i​ and ​j ​ are vertices belonging to the same triangle.  

4
References

None.

5
Arguments

1:     nv – IntegerInput
On entry: the total number of vertices in the input mesh.
Constraint: nv3.
2:     nelt – IntegerInput
On entry: the number of triangles in the input mesh.
Constraint: nelt2×nv-1.
3:     nnzmax – IntegerInput
On entry: the maximum number of nonzero entries in the matrix based on the input mesh. It is the dimension of the arrays irow and icol as declared in the subroutine from which d06cbf is called.
Constraint: 4×nelt+nvnnzmaxnv2.
4:     conn3nelt – Integer arrayInput
On entry: the connectivity of the mesh between triangles and vertices. For each triangle j, connij gives the indices of its three vertices (in anticlockwise order), for i=1,2,3 and j=1,2,,nelt.
Constraint: 1connijnv and conn1jconn2j and conn1jconn3j and conn2jconn3j, for i=1,2,3 and j=1,2,,nelt.
5:     nnz – IntegerOutput
On exit: the number of nonzero entries in the matrix associated with the input mesh.
6:     irownnzmax – Integer arrayOutput
7:     icolnnzmax – Integer arrayOutput
On exit: the first nnz elements contain the row and column indices of the nonzero elements supplied in the finite element matrix A.
8:     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,
ornnzmax<4×nelt+nv or nnzmax>nv2
orconnij<1 or connij>nv for some i=1,3 and j, 1jnelt,
orconn1j=conn2j or conn1j=conn3j or
conn2j=conn3j for some j=1,2,,nelt.
ifail=2
A serious error has occurred in an internal call to an auxiliary routine. Check the input mesh, especially the connectivity between triangles and vertices (the argument conn). Array dimensions should be checked as well. If the problem persists, contact NAG.
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

d06cbf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
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

None.

10
Example

See Section 10 in d06ccf.
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017