1 subroutine zero(x1, y1, x2, y2, func, err, x, y, izero, ll)
19 real(r8),
intent(inout) :: x1, y1, x2, y2
20 real(r8),
external :: func
21 real(r8),
intent(in) :: err
22 real(r8),
intent(out) :: x, y
23 integer(itm_i4),
intent(out) :: izero
24 integer(itm_i4),
intent(in) :: ll
26 real(r8) :: x1s, y1s, x2s, y2s, sig, x0, y0, a, b, c, xn, yn
27 integer(itm_i4) :: l, iout
28 integer(itm_i4) ,
parameter :: nizero = 50
33 if (iout == 0) iout = 6
35 if ((y1 < 0._r8 .and. y2 < 0._r8) .or. (y1 > 0._r8 &
36 .and. y2 > 0._r8))
then
40 if (l /= 0)
write(iout, 6)
62 x0 = x1 - (x2 - x1) * y1 / (y2 - y1)
65 if (l /= 0)
write(iout, 11) izero, x1, y1, x2, y2, x0, y0
67 if (abs(y0) <= err)
then
73 if (abs(y0) >= 0.2_r8 * min(-y1, y2))
then
74 a = ((y2 - y0) / (x2 - x0) - (y0 - y1) / (x0 - x1)) / (x2 - x1)
75 b = (y2 - y1) / (x2 - x1) - a * (x2 + x1)
76 c = y0 - a * x0 * x0 - b * x0
77 xn = (-b + sqrt(b * b - 4._r8 * a * c)) / (2._r8 * a)
80 if (l /= 0)
write(iout, 12) izero, x1, y1, x2, y2, xn, yn
82 if (abs(yn) <= err)
then
103 else if (y0 > err)
then
110 if (izero >= nizero)
then
111 write(iout, 13) nizero
126 5
format(/1x,
'***subroutine zero: y1 and y2 violate requirements')
127 6
format(/30x,
'==== subroutine zero ====')
128 11
format(1x,
'izero=', i3, 3x,
'x1=', 1pe12.4, 3x,
'y1=', 1pe12.4, &
129 3x,
'x2=', 1pe12.4, 3x,
'y2=', 1pe12.4, 3x,
'x0=', 1pe12.4, &
131 12
format(1x,
'izero=', i3, 3x,
'x1=', 1pe12.4, 3x,
'y1=', 1pe12.4, &
132 3x,
'x2=', 1pe12.4, 3x,
'y2=', 1pe12.4, 3x,
'xn=', 1pe12.4, &
134 13
format(/1x,
'***subroutine zero: no convergence for x in ', i3, &
subroutine zero(x1, y1, x2, y2, func, err, x, y, izero, ll)