You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.9 KiB
HTML
91 lines
2.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
|
|
|
<!--Converted with LaTeX2HTML 2008 (1.71)
|
|
original version by: Nikos Drakos, CBLU, University of Leeds
|
|
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
|
|
* with significant contributions from:
|
|
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Preconditioner data structure</TITLE>
|
|
<META NAME="description" CONTENT="Preconditioner data structure">
|
|
<META NAME="keywords" CONTENT="userhtml">
|
|
<META NAME="resource-type" CONTENT="document">
|
|
<META NAME="distribution" CONTENT="global">
|
|
|
|
<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
|
|
<LINK REL="STYLESHEET" HREF="userhtml.css">
|
|
|
|
<LINK REL="previous" HREF="node37.html">
|
|
<LINK REL="up" HREF="node9.html">
|
|
<LINK REL="next" HREF="node39.html">
|
|
</HEAD>
|
|
|
|
<BODY >
|
|
<!--Navigation Panel-->
|
|
<A NAME="tex2html670"
|
|
HREF="node39.html">
|
|
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
|
|
<A NAME="tex2html666"
|
|
HREF="node9.html">
|
|
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
|
|
<A NAME="tex2html662"
|
|
HREF="node37.html">
|
|
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
|
|
<A NAME="tex2html668"
|
|
HREF="node1.html">
|
|
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
|
|
<BR>
|
|
<B> Next:</B> <A NAME="tex2html671"
|
|
HREF="node39.html">Computational routines</A>
|
|
<B> Up:</B> <A NAME="tex2html667"
|
|
HREF="node9.html">Data Structures and Classes</A>
|
|
<B> Previous:</B> <A NAME="tex2html663"
|
|
HREF="node37.html">clone Clone current object</A>
|
|
<B> <A NAME="tex2html669"
|
|
HREF="node1.html">Contents</A></B>
|
|
<BR>
|
|
<BR>
|
|
<!--End of Navigation Panel-->
|
|
|
|
<H2><A NAME="SECTION00048000000000000000"></A>
|
|
<A NAME="sec:prec"></A>
|
|
<BR>
|
|
Preconditioner data structure
|
|
</H2>
|
|
Our base library offers support for simple well known preconditioners
|
|
like Diagonal Scaling or Block Jacobi with incomplete
|
|
factorization ILU(0).
|
|
|
|
<P>
|
|
A preconditioner is held in the precdata<TT> psb_prec_type</TT> data structure reported in
|
|
figure <A HREF="#fig:prectype">6</A>. The <code>psb_prec_type</code>
|
|
data type may contain a simple preconditioning matrix with the
|
|
associated communication descriptor.The internal preconditioner is allocated appropriately with the
|
|
dynamic type corresponding to the desired preconditioner.
|
|
|
|
<DIV ALIGN="CENTER"><A NAME="fig:prectype"></A><A NAME="759"></A>
|
|
<TABLE>
|
|
<CAPTION ALIGN="BOTTOM"><STRONG>Figure 6:</STRONG>
|
|
The PSBLAS defined data type that contains a preconditioner.</CAPTION>
|
|
<TR><TD><FONT SIZE="-1"> </FONT>
|
|
<DIV ALIGN="CENTER"></DIV><TABLE WIDTH="90%">
|
|
<TR><TD>
|
|
<PRE>
|
|
type psb_Tprec_type
|
|
class(psb_T_base_prec_type), allocatable :: prec
|
|
end type psb_Tprec_type
|
|
</PRE></TD></TR>
|
|
</TABLE>
|
|
<DIV ALIGN="CENTER"></DIV></TD></TR>
|
|
</TABLE>
|
|
</DIV>
|
|
|
|
<P>
|
|
<BR><HR>
|
|
|
|
</BODY>
|
|
</HTML>
|