source: trunk/anuga_work/development/sudi/sw_1d/periodic_waves/johns/bisect.py @ 7926

Last change on this file since 7926 was 7926, checked in by mungkasi, 14 years ago
File size: 918 bytes
Line 
1## module bisect
2''' root = bisect(f,x1,x2,switch=0,tol=1.0e-9).
3    Finds a root of f(x) = 0 by bisection.
4    The root must be bracketed in (x1,x2).
5    Setting switch = 1 returns root = None if
6    f(x) increases as a result of a bisection.
7'''   
8from math import log,ceil
9import error
10
11def bisect(f,x1,x2,switch=0,epsilon=1.0e-15):#9):
12    f1 = f(x1)
13    if f1 == 0.0: return x1
14    f2 = f(x2)
15    if f2 == 0.0: return x2
16    if f1*f2 > 0.0: error.err('Root is not bracketed')
17    n = ceil(log(abs(x2 - x1)/epsilon)/log(2.0))
18    n = int(n)
19    for i in range(n):
20        x3 = 0.5*(x1 + x2); f3 = f(x3)
21        if (switch == 1) and (abs(f3) >abs(f1)) \
22                         and (abs(f3) > abs(f2)):
23            return None   
24        if f3 == 0.0: return x3
25        if f2*f3 < 0.0:
26            x1 = x3; f1 = f3
27        else:
28            x2 = x3; f2 = f3
29    return (x1 + x2)/2.0
Note: See TracBrowser for help on using the repository browser.