ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
sgtsl.f90
Go to the documentation of this file.
1 !** from netlib, tue aug 28 08:28:34 edt 1990 ***
2 !
3 subroutine sgtsl(n, c, d, e, b, info)
4 
5  use itm_types
6 
7  implicit none
8 
9  integer(itm_i4), intent(in) :: n
10  real(r8), dimension(n + 2), intent(inout) :: c, d, e, b
11  integer(itm_i4), intent(out) :: info
12 
13 !-----------------------------------------------------------------------------
14 ! sgtsl given a general tridiagonal matrix and a right hand
15 ! side will find the solution.
16 !
17 ! on entry
18 !
19 ! n integer
20 ! is the order of the tridiagonal matrix.
21 !
22 ! c real(n)
23 ! is the subdiagonal of the tridiagonal matrix.
24 ! c(2) through c(n) should contain the subdiagonal.
25 ! on output c is destroyed.
26 !
27 ! d real(n)
28 ! is the diagonal of the tridiagonal matrix.
29 ! on output d is destroyed.
30 !
31 ! e real(n)
32 ! is the superdiagonal of the tridiagonal matrix.
33 ! e(1) through e(n-1) should contain the superdiagonal.
34 ! on output e is destroyed.
35 !
36 ! b real(n)
37 ! is the right hand side vector.
38 !
39 ! on return
40 !
41 ! b is the solution vector.
42 !
43 ! info integer
44 ! = 0 normal value.
45 ! = k if the k-th element of the diagonal becomes
46 ! exactly zero. the subroutine returns when
47 ! this is detected.
48 !
49 ! linpack. this version dated 08/14/78.
50 ! jack dongarra, argonne national laboratory.
51 !
52 ! no externals
53 ! fortran abs
54 !
55 ! internal variables
56 !----------------------------------------------------------------------------
57 
58  integer(itm_i4) :: k, kb, kp1, nm1, nm2
59  real(r8) :: t
60 
61 !-- begin block permitting ...exits to 100
62  info = 0
63  c(1) = d(1)
64  nm1 = n - 1
65 
66  if (nm1 >= 1) then
67  d(1) = e(1)
68  e(1) = 0.0_r8
69  e(n) = 0.0_r8
70  do k = 1, nm1
71  kp1 = k + 1
72 !-- find the largest of the two rows
73  if (abs(c(kp1)) >= abs(c(k))) then
74 !-- interchange row
75  t = c(kp1)
76  c(kp1) = c(k)
77  c(k) = t
78  t = d(kp1)
79  d(kp1) = d(k)
80  d(k) = t
81  t = e(kp1)
82  e(kp1) = e(k)
83  e(k) = t
84  t = b(kp1)
85  b(kp1) = b(k)
86  b(k) = t
87  end if
88 !-- zero elements
89  if (c(k) == 0.0_r8) then
90  info = k
91 !-- exit
92  return
93  end if
94  t = -c(kp1) / c(k)
95  c(kp1) = d(kp1) + t * d(k)
96  d(kp1) = e(kp1) + t * e(k)
97  e(kp1) = 0.0_r8
98  b(kp1) = b(kp1) + t * b(k)
99  end do
100 
101  end if
102 
103  if (c(n) == 0._r8) then
104  info = n
105  return
106  end if
107 
108 !-- back solve
109 
110  nm2 = n - 2
111  b(n) = b(n) / c(n)
112  if (n == 1) return
113  b(nm1) = (b(nm1) - d(nm1) * b(n)) / c(nm1)
114  if (nm2 < 1) return
115  do kb = 1, nm2
116  k = nm2 - kb + 1
117  b(k) = (b(k) - d(k) * b(k + 1) - e(k) * b(k + 2)) / c(k)
118  end do
119 
120  return
121 end subroutine sgtsl
subroutine sgtsl(n, c, d, e, b, info)
Definition: sgtsl.f90:3