initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / ODE / ODESolvers / ODESolver / ODESolver.C
blobae0c356032e43a7d02157093233ec25517ad5b9c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "ODESolver.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 defineTypeNameAndDebug(Foam::ODESolver, 0);
32 namespace Foam
34     defineRunTimeSelectionTable(ODESolver, ODE);
38 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
40 Foam::ODESolver::ODESolver(const ODE& ode)
42     n_(ode.nEqns()),
43     yScale_(n_),
44     dydx_(n_)
48 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
50 void Foam::ODESolver::solve
52     const ODE& ode,
53     const scalar xStart,
54     const scalar xEnd,
55     scalarField& y,
56     const scalar eps,
57     scalar& hEst
58 ) const
60     const label MAXSTP = 10000;
62     scalar x = xStart;
63     scalar h = hEst;
65     for (label nStep=0; nStep<MAXSTP; nStep++)
66     {
67         ode.derivatives(x, y, dydx_);
69         for (label i=0; i<n_; i++)
70         {
71             yScale_[i] = mag(y[i]) + mag(dydx_[i]*h) + SMALL;
72         }
74         if ((x + h - xEnd)*(x + h - xStart) > 0.0)
75         {
76             h = xEnd - x;
77         }
79         scalar hNext, hDid;
80         solve(ode, x, y, dydx_, eps, yScale_, h, hDid, hNext);
82         if ((x - xEnd)*(xEnd - xStart) >= 0.0)
83         {
84             hEst = hNext;
85             return;
86         }
88         h = hNext;
89     }
91     FatalErrorIn
92     (
93         "ODESolver::solve"
94         "(const ODE& ode, const scalar xStart, const scalar xEnd,"
95         "scalarField& yStart, const scalar eps, scalar& hEst) const"
96     )   << "Too many integration steps"
97         << exit(FatalError);
100 // ************************************************************************* //