Next: Package FL.MULTIGRID, Previous: Package FL.NAVIER-STOKES-FE, Up: Reference manual [Contents][Index]
The FL.ITERATION
package includes the
definition for the abstract classes <solver>
,
<iterative-solver>
, as well as the generic functions
iterate
and solve
which constitutes the interface for
linear and non-linear solving. Both functions work on a blackboard which
is passed together with the iteration used as argument.
Several instances of iterative solvers are implemented, e.g. Gauss-Seidel,
SOR, ILU (in linit.lisp) and CG (in krylow.lisp). A larger
block of code is contained in a separate package FL.MULTIGRID
and
contains the multigrid iteration. From this class, an algebraic multigrid
iteration is derived in amg.lisp and a geometric multigrid iteration
in a separate file geomg.lisp and package FL.GEOMG
.
Observe CPU time during an iteration. This should be used as element in the observe list of an iteration.
Standard observe quantities for iterative solvers.
Depth of nested iteration.
Maximum iteration depth for which status output is done.
Observe step number during an iteration. This should be used as element in the observe list of an iteration.
Preconditioned Bi-CGStab iteration
Superclasses: <PRECONDITIONED-KRYLOW>
Subspace correction scheme generated by collecting overlapping blocks of unknowns.
Superclasses: <LINEAR-ITERATION>
Direct slots:
Preconditioned conjugate gradient iteration
Superclasses: <PRECONDITIONED-KRYLOW>
PSC with custom BLOCK-SETUP function slot.
Superclasses: <SETUP-BLOCKS-MIXIN> <PSC>
SSC with custom BLOCK-SETUP function slot.
Superclasses: <SETUP-BLOCKS-MIXIN> <SSC>
The <function> class is an abstract class for a general function. This function will usually accept vector arguments, the dimensions of domain and image are fixed when defining the function. If the function is differentiable, the gradient matrix can be obtained by evaluating the gradient slot.
Direct slots:
The Gauss-Seidel iteration is SOR with omega=1.
Superclasses: <SOR>
Gradient-method. Better use CG.
Superclasses: <LINEAR-ITERATION>
Incomplete LU iteration. omega is the modification parameter, eta is the diagonal enhancement.
Superclasses: <LINEAR-ITERATION>
Direct slots:
The iteration base class.
Superclasses: PROPERTY-MIXIN
Direct slots:
Base class of all iterative solvers and solution strategies.
Superclasses: <ITERATION> <SOLVER>
An <iterator> object contains functions doing iteration work or flags indicating which work has or has not to be done for calling that iterator. It is generated by the generic function make-iterator.
Superclasses: PROPERTY-MIXIN
Direct slots:
The <linear-iteration> class. Linear iterations are e.g. <gauss-seidel> or <multigrid>.
Direct slots:
Class for linear iterative solvers.
Superclasses: <DISCRETE-ITERATIVE-SOLVER>
Direct slots:
A linear iteration interface for the LU exact solver.
Superclasses: <LINEAR-ITERATION>
Direct slots:
One step of this iteration performs nr-steps of the base iteration.
Superclasses: <LINEAR-ITERATION>
Direct slots:
Class for the Newton iteration.
Superclasses: <NONLINEAR-SOLVER>
Direct slots:
A parallel version of SOR.
Superclasses: <SOR>
Parallel subspace correction scheme.
Superclasses: <BLOCK-ITERATION>
If failure occurs, object of this class try an alternative iteration. Usually this will be a direct decomposition.
Superclasses: <LINEAR-SOLVER>
Direct slots:
The base class of linear, nonlinear and whatever iterative solvers.
Direct slots:
If you happen to have a problem-adapted solver given as a function, you may use this base class.
Superclasses: <ITERATIVE-SOLVER>
Direct slots:
Successive subspace correction scheme.
Superclasses: <BLOCK-ITERATION>
Direct slots:
Returns a dictionary mapping keys to entries for vec.
Compute the residual r=b-Ax.
Generic evaluation of functions on an argument. Numbers and arrays are treated as constants. Special evaluation is defined for multivariate polynomials on vectors and for <function> objects.
Generic evaluation of gradients of differentiable functions.
Performs final operations.
Performs initial operations.
Is called after initialization and after each step.
Finds zeros of functions in 1d by the interval method.
Iteration output should be made using this function which respects *iteration-depth* and *output-depth*.
Iterates on the data in the blackboard according to the iteration iter.
Old and deprecated interface for solving linear problems.
LU decomposition without pivoting.
Constructs an iterator object given a linear iteration and a matrix.
Does a step of the iteration.
Returns an iterator which does several steps of the given iterator.
Setup routine for determining the blocking of unknowns. Returns a list of blocks where each block is a vector of keys. May return a second value which is a list of pair. Each pair is of the form start-index/end-index and can be used to filter out different fe components.
Solve a problem specified on the blackboard. Returns a modified blackboard. The returned blackboard is guaranteed to contain at least the fields :solution and :status. :status is one of the values :success or :failure.
SOLVE can also be called as (SOLVE blackboard) and will then try to figure out a suitable solver itself.
Tests terminating conditions. Returns either NIL or :success or :failure.
Next: Package FL.MULTIGRID, Previous: Package FL.NAVIER-STOKES-FE, Up: Reference manual [Contents][Index]