~ubuntu-branches/ubuntu/warty/petsc/warty

« back to all changes in this revision

Viewing changes to docs/manualpages/Mat/MatILUInfo.html

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2004-06-07 13:41:43 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040607134143-92p586zrauvie0le
Tags: 2.2.0-2
* Upstream patch level 2.
* New PETSC_BOPT_EXTRA option for different BOPT and lib names, with _c++
  symlinks only for plain and single (closes: #249617).
* New DEBIAN_DIST=contrib option to link with hypre, parmetis (closes:
  #249619).
* Combined petsc-c and petsc-fortran substvars into petsc-compilers.
* Extra quote in -dev prerm eliminates "too many arguments" problem.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML3.2 EN">
2
 
<HTML>
3
 
<HEAD>
4
 
<META NAME="GENERATOR" CONTENT="DOCTEXT">
5
 
<TITLE>MatILUInfo</TITLE>
6
 
</HEAD>
7
 
<BODY BGCOLOR="FFFFFF">
8
 
<A NAME="MatILUInfo"><H1>MatILUInfo</H1></A>
9
 
Data based into the matrix ILU factorization routines 
10
 
<H3><FONT COLOR="#CC3333">Synopsis</FONT></H3>
11
 
<PRE>
12
 
typedef struct {
13
 
  PetscReal     levels;         /* ILU(levels) */ 
14
 
  PetscReal     fill;           /* expected fill; nonzeros in factored matrix/nonzeros in original matrix*/
15
 
  PetscReal     diagonal_fill;  /* force diagonal to fill in if initially not filled */
16
 
  PetscReal     dt;             /* drop tolerance */
17
 
  PetscReal     dtcol;          /* tolerance for pivoting */
18
 
  PetscReal     dtcount;        /* maximum nonzeros to be allowed per row */
19
 
  PetscReal     damping;        /* scaling of identity added to matrix to prevent zero pivots */
20
 
  PetscReal     damp;           /* if is 1.0 and factorization fails, damp until successful */
21
 
  PetscReal     zeropivot; /* pivot is called zero if less than this */
22
 
  PetscReal     pivotinblocks;  /* for BAIJ and SBAIJ matrices pivot in factorization on blocks, default 1.0 
23
 
                                   factorization may be faster if do not pivot */
24
 
} MatILUInfo;
25
 
</PRE>
26
 
In Fortran these are simply double precision arrays of <A HREF="../Sys/size.html#size">size</A> MAT_ILUINFO_SIZE
27
 
<P>
28
 
Notes: These are not usually directly used by users, instead use the <A HREF="../PC/PC.html#PC">PC</A> type of ILU
29
 
All entries are double precision.
30
 
<P>
31
 
 
32
 
<P>
33
 
<H3><FONT COLOR="#CC3333">See Also</FONT></H3>
34
 
 <A HREF="../Mat/MatILUFactorSymbolic.html#MatILUFactorSymbolic">MatILUFactorSymbolic</A>(), <A HREF="../Mat/MatILUFactor.html#MatILUFactor">MatILUFactor</A>(), <A HREF="../Mat/MatLUInfo.html#MatLUInfo">MatLUInfo</A>, <A HREF="../Mat/MatCholeskyInfo.html#MatCholeskyInfo">MatCholeskyInfo</A>
35
 
<BR>
36
 
<P>
37
 
<P><B><P><B><FONT COLOR="#CC3333">Level:</FONT></B>developer
38
 
<BR><FONT COLOR="#CC3333">Location:</FONT></B><A HREF="../../../src/mat/../../include/petscmat.h.html#MatILUInfo">src/mat/../../include/petscmat.h</A>
39
 
<BR><A HREF="./index.html">Index of all Mat routines</A>
40
 
<BR><A HREF="../../index.html">Table of Contents for all manual pages</A>
41
 
<BR><A HREF="../singleindex.html">Index of all manual pages</A>
42
 
</BODY></HTML>