ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
mnewtax.f90
Go to the documentation of this file.
1 subroutine mnewtax(ntrial, naxis, x, n, tolx, tolf, errx, errf)
2 !-------------------------------------------------------------------------
3 ! routine to solve two nonlinear equations using newtons method from
4 ! numerical recipes.
5 ! lu decomposition replaced by explicit solution of 2x2 matrix.
6 !-------------------------------------------------------------------------
7 
8  use mod_corners
9  use mod_mesh
10  use itm_types
12 
13  implicit none
14 
15  real(r8), intent(in) :: tolx, tolf
16  real(r8), intent(out) :: errx, errf
17  integer(itm_i4), intent(in) :: ntrial, naxis, n
18  real(r8), intent(inout) :: x(2)
19 
20  real(r8) :: fvec(2), p(2), fjac(2,2)
21  real(r8) :: r, s
22  real(r8) :: zpsi, zpsir, zpsis, zpsirs, zpsirr, zpsiss
23  real(r8) :: temp, dis
24  integer(itm_i4) :: i, k
25  integer(itm_i4) :: n1, n2, n3, n4
26 
27  do k = 1, ntrial
28 !----------------------------- usrfun iserted here -----------------------
29  do i = 1, n
30  if (abs(x(i)) > 2.0_r8) then
31  errx = 2._r8
32  errf = 2._r8
33  return
34  end if
35  end do
36 
37  r = x(1)
38  s = x(2)
39  n1 = nodeno(naxis, 1)
40  n2 = nodeno(naxis, 2)
41  n3 = nodeno(naxis, 3)
42  n4 = nodeno(naxis, 4)
43  call interpolation(2, psi(4 * (n1 - 1) + 1 : 4 * n1), psi(4 * (n2 - 1) &
44  + 1 : 4 * n2), psi(4 * (n3 - 1) + 1 : 4 * n3), psi(4 * (n4 - 1) + 1 &
45  : 4 * n4), r, s, zpsi, zpsir, zpsis, zpsirs, zpsirr, zpsiss)
46  fvec(1) = zpsir
47  fvec(2) = zpsis
48  fjac(1, 1) = zpsirr
49  fjac(1, 2) = zpsirs
50  fjac(2, 1) = zpsirs
51  fjac(2, 2) = zpsiss
52 !-------------------------------------------------------------------------
53  errf = 0._r8
54  do i = 1, n
55  errf = errf + abs(fvec(i))
56  end do
57  if (errf <= tolf) return
58  do i = 1, n
59  p(i) = -fvec(i)
60  end do
61  temp = p(1)
62  dis = fjac(2, 2) * fjac(1, 1) - fjac(1, 2) * fjac(2, 1)
63  p(1) = (fjac(2, 2) * p(1) - fjac(1, 2) * p(2)) / dis
64  p(2) = (fjac(1, 1) * p(2) - fjac(2, 1) * temp) / dis
65 
66  p = min(p, 0.5_r8)
67  p = max(p, -0.5_r8)
68 
69  errx = 0._r8
70  do i = 1, n
71  errx = errx + abs(p(i))
72  x(i) = x(i) + p(i)
73  end do
74  if (errx <= tolx) return
75  end do
76 
77  return
78 end subroutine mnewtax
79 
80 ! (c) copr. 1986-92 numerical recipes software *n*1v45_lt+v'.
subroutine interpolation(type_interp, xn1, xn2, xn3, xn4, r, s, x, xr, xs, xrs, xrr, xss, yn1, yn2, yn3, yn4, pn1, pn2, pn3, pn4, yr, ys, ps)
real(r8) function p(a, x, xr, xs, yr, ys, psi, psir, F_dia)
subroutine mnewtax(ntrial, naxis, x, n, tolx, tolf, errx, errf)
Definition: mnewtax.f90:1