Files
OCCT/src/math/math_NewtonFunctionRoot.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

163 lines
3.7 KiB
C++

// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <math_FunctionWithDerivative.hxx>
#include <math_NewtonFunctionRoot.hxx>
#include <StdFail_NotDone.hxx>
math_NewtonFunctionRoot::math_NewtonFunctionRoot (math_FunctionWithDerivative& F,
const Standard_Real Guess,
const Standard_Real EpsX ,
const Standard_Real EpsF ,
const Standard_Real A,
const Standard_Real B,
const Standard_Integer NbIterations ){
EpsilonX = EpsX;
EpsilonF = EpsF;
Binf = A;
Bsup = B;
Itermax = NbIterations;
Done = Standard_False;
X = RealLast();
DFx = 0;
Fx = RealLast();
It = 0;
Perform(F, Guess);
}
math_NewtonFunctionRoot::math_NewtonFunctionRoot (const Standard_Real A ,
const Standard_Real B,
const Standard_Real EpsX ,
const Standard_Real EpsF ,
const Standard_Integer NbIterations ){
Binf = A;
Bsup = B;
EpsilonX = EpsX;
EpsilonF = EpsF;
Itermax = NbIterations;
Done = Standard_False;
X = RealLast();
DFx = 0;
Fx = RealLast();
It = 0;
}
math_NewtonFunctionRoot::math_NewtonFunctionRoot (math_FunctionWithDerivative& F,
const Standard_Real Guess,
const Standard_Real EpsX ,
const Standard_Real EpsF ,
const Standard_Integer NbIterations ){
EpsilonX = EpsX;
EpsilonF = EpsF;
Itermax = NbIterations;
Binf = RealFirst();
Bsup = RealLast();
Done = Standard_False;
X = RealLast();
DFx = 0;
Fx = RealLast();
It = 0;
Perform(F, Guess);
}
void math_NewtonFunctionRoot::Perform(math_FunctionWithDerivative& F,
const Standard_Real Guess) {
Standard_Real Dx;
Standard_Boolean Ok;
Standard_Real AA, BB;
//--------------------------------------------------
//-- lbr le 12 Nov 97
//-- la meilleure estimation n est pas sauvee et on
//-- renvoie une solution plus fausse que Guess
Standard_Real BestX=X,BestFx=RealLast();
//--
if ( Binf < Bsup) {
AA = Binf;
BB = Bsup;
}
else {
AA = Bsup;
BB = Binf;
}
Dx = RealLast();
Fx = RealLast();
X = Guess;
It = 1;
while ( (It <= Itermax) && ( (Abs(Dx) > EpsilonX) ||
(Abs(Fx) > EpsilonF) ) ) {
Ok = F.Values(X,Fx,DFx);
Standard_Real AbsFx = Fx; if(AbsFx<0) AbsFx=-AbsFx;
if(AbsFx<BestFx) {
BestFx=AbsFx;
BestX =X;
}
if (Ok) {
if (DFx == 0.) {
Done = Standard_False;
It = Itermax + 1;
}
else {
Dx = Fx/DFx;
X -= Dx;
// Limitation des variations de X:
if (X <= AA) X = AA;
if (X >= BB) X = BB;
It++;
}
}
else {
Done = Standard_False;
It = Itermax + 1;
}
}
X = BestX;
if (It <= Itermax) {
Done = Standard_True;
}
else
{
Done = Standard_False;
}
}
void math_NewtonFunctionRoot::Dump(Standard_OStream& o) const {
o <<"math_NewtonFunctionRoot ";
if (Done) {
o << " Status = Done \n";
o << " Location found = " << X <<"\n";
o << " function value at this minimum = " << Fx <<"\n";
o << " Number of iterations = " << It <<"\n";
}
else {
o << "Status = not Done \n";
}
}