hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_sparseig_real_init (f12aa)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_sparseig_real_init (f12aa) is a setup function in a suite of functions consisting of nag_sparseig_real_init (f12aa), nag_sparseig_real_iter (f12ab), nag_sparseig_real_proc (f12ac), nag_sparseig_real_option (f12ad) and nag_sparseig_real_monit (f12ae). It is used to find some of the eigenvalues (and optionally the corresponding eigenvectors) of a standard or generalized eigenvalue problem defined by real nonsymmetric matrices.
The suite of functions is suitable for the solution of large sparse, standard or generalized, nonsymmetric eigenproblems where only a few eigenvalues from a selected range of the spectrum are required.

Syntax

[icomm, comm, ifail] = f12aa(n, nev, ncv)
[icomm, comm, ifail] = nag_sparseig_real_init(n, nev, ncv)

Description

The suite of functions is designed to calculate some of the eigenvalues, λ , (and optionally the corresponding eigenvectors, x ) of a standard eigenvalue problem Ax = λx , or of a generalized eigenvalue problem Ax = λBx  of order n , where n  is large and the coefficient matrices A  and B  are sparse, real and nonsymmetric. The suite can also be used to find selected eigenvalues/eigenvectors of smaller scale dense, real and nonsymmetric problems.
nag_sparseig_real_init (f12aa) is a setup function which must be called before nag_sparseig_real_iter (f12ab), the reverse communication iterative solver, and before nag_sparseig_real_option (f12ad), the options setting function. nag_sparseig_real_proc (f12ac) is a post-processing function that must be called following a successful final exit from nag_sparseig_real_iter (f12ab), while nag_sparseig_real_monit (f12ae) can be used to return additional monitoring information during the computation.
This setup function initializes the communication arrays, sets (to their default values) all options that can be set by you via the option setting function nag_sparseig_real_option (f12ad), and checks that the lengths of the communication arrays as passed by you are of sufficient length. For details of the options available and how to set them see Description of the s in nag_sparseig_real_option (f12ad).

References

Lehoucq R B (2001) Implicitly restarted Arnoldi methods and subspace iteration SIAM Journal on Matrix Analysis and Applications 23 551–562
Lehoucq R B and Scott J A (1996) An evaluation of software for computing eigenvalues of sparse nonsymmetric matrices Preprint MCS-P547-1195 Argonne National Laboratory
Lehoucq R B and Sorensen D C (1996) Deflation techniques for an implicitly restarted Arnoldi iteration SIAM Journal on Matrix Analysis and Applications 17 789–821
Lehoucq R B, Sorensen D C and Yang C (1998) ARPACK Users' Guide: Solution of Large-scale Eigenvalue Problems with Implicitly Restarted Arnoldi Methods SIAM, Philidelphia

Parameters

Compulsory Input Parameters

1:     n int64int32nag_int scalar
The order of the matrix A (and the order of the matrix B for the generalized problem) that defines the eigenvalue problem.
Constraint: n>0.
2:     nev int64int32nag_int scalar
The number of eigenvalues to be computed.
Constraint: 0<nev<n-1.
3:     ncv int64int32nag_int scalar
The number of Arnoldi basis vectors to use during the computation.
At present there is no a priori analysis to guide the selection of ncv relative to nev. However, it is recommended that ncv2×nev+1. If many problems of the same type are to be solved, you should experiment with increasing ncv while keeping nev fixed for a given test problem. This will usually decrease the required number of matrix-vector operations but it also increases the work and storage required to maintain the orthogonal basis vectors. The optimal ‘cross-over’ with respect to CPU time is problem dependent and must be determined empirically.
Constraint: nev+1<ncvn.

Optional Input Parameters

None.

Output Parameters

1:     icommmax1,licomm int64int32nag_int array
Contains data to be communicated to the other functions in the suite.
2:     commmax1,lcomm – double array
Contains data to be communicated to the other functions in the suite.
3:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry, n0.
   ifail=2
On entry, nev0.
   ifail=3
On entry, ncv<nev+2 or ncv>n.
   ifail=4
On entry, licomm<140 and licomm-1.
   ifail=5
On entry, lcomm<3×n+3×ncv×ncv+6×ncv+60 and lcomm-1.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

Not applicable.

Further Comments

None.

Example

This example solves Ax = λx  in regular mode, where A  is obtained from the standard central difference discretization of the convection-diffusion operator 2u x2 + 2u y2 + ρ u x  on the unit square, with zero Dirichlet boundary conditions, where ρ=100.
function f12aa_example


fprintf('f12aa example results\n\n');

% Discretization is on 12x12 grid, so spacing is h = 1/11;
% Dirichlet conditions reduce this to a system of order 10x10.
nx   = int64(10);
n    = nx^2;
nev  = int64(10);
ncv  = int64(30);

h    = 1/(double(nx)+1);
rho  = 100;

irevcm = int64(0);
resid = zeros(n,1);
v = zeros(n, ncv);
x = zeros(n, 1);
mx = zeros(n, 1);

dd = 4/h^2;
dl = -1/h^2 - rho/(2*h);
du = -1/h^2 + rho/(2*h);
y = zeros(n,1);

[icomm, comm, ifail] = f12aa( ...
                              n, nev, ncv);
[icomm, comm, ifail] = f12ad( ...
                              'Smallest Mag', icomm, comm);

while (irevcm ~= 5)
  [irevcm, resid, v, x, mx, nshift, comm, icomm, ifail] = ...
    f12ab( ...
           irevcm, resid, v, x, mx, comm, icomm);
  if (irevcm == -1 || irevcm == 1)
    % -u_xx-rho*u_x 
    y(1:nx:n) = dd*x(1:nx:n) + du*x(2:nx:n);
    for j = 2:nx-1
      y(j:nx:n) = dl*x(j-1:nx:n) + dd*x(j:nx:n) + du*x(j+1:nx:n);
    end
    y(nx:nx:n) = dl*x(nx-1:nx:n) + dd*x(nx:nx:n);
    % -u_yy
    y(1:nx) = y(1:nx) - (1/h^2)*x(nx+1:2*nx);
    for j = 2:nx-1
      lo = (j-1)*nx;
      y(lo+1:lo+nx) =  y(lo+1:lo+nx) - (1/h^2)*x(lo+nx+1:lo+2*nx) ...
                       - (1/h^2)*x(lo-nx+1:lo);
    end
    lo = (nx-1)*nx;
    y(lo+1:lo+nx) =  y(lo+1:lo+nx) - (1/h^2)*x(lo-nx+1:lo);
    x = y;
  end
end

[nconv, dr, di, z, v, comm, icomm, ifail] = ...
  f12ac( ...
         0, 0, resid, v, comm, icomm);

fprintf('The %4d Ritz values of smallest magnitude are:\n\n',nconv);
fprintf('%9.3f %+9.3fi\n', [dr di]');


f12aa example results

The   10 Ritz values of smallest magnitude are:

  251.803  +152.711i
  251.803  -152.711i
  280.417  +152.711i
  280.417  -152.711i
  325.524  +152.711i
  325.524  -152.711i
  383.470  +152.711i
  383.470  -152.711i
  449.560  +152.711i
  449.560  -152.711i

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015