Main Page   Class Hierarchy   Compound List   File List   Compound Members   File Members  

SOLVER_2 Class Reference

Solver class. More...

#include <solver2.h>

Inheritance diagram for SOLVER_2:

VODE_SOLVER ODE_SOLVER List of all members.

Public Methods

 SOLVER_2 ( const PtrODENumeric ODE, const PtrDataRepr Data, int order = 17 )
 Constructor. More...


Detailed Description

Solver class.

This class implements a validated ODE solver with the HOE method for validating existence and uniqueness of the solution, the IHO method for computing a tight enclosure of the solution, variable stepsize control, and constant order.

Author(s):
Ned Nedialkov
Date:
8 June 2001


Constructor & Destructor Documentation

SOLVER_2::SOLVER_2 ( const PtrODENumeric ODE,
const PtrDataRepr Data,
int order = 17 ) [inline]
 

Constructor.

The default value for the order is 17. The IHO method is created with

 p = (order-1)/2 
and
 q = order/2, 
while the HOE method is created with order order.

Here, / gives the integer part of the quotients (order-1)/2 and order/2.

Parameters:
ODE   pointer to a problem
Data   pointer to a data representation object
order   order of the method; the default value is 17

Precondition:
NotNull(ODE) && pre NotNull(Data) && order>0 && order <= order <= TAYLOR_CTRL::MaxOrder


The documentation for this class was generated from the following file:
Generated at Sun Oct 14 12:45:41 2001 for VNODE by doxygen1.2.0 written by Dimitri van Heesch, © 1997-2000