FE-Project
Loading...
Searching...
No Matches
Data Types | Functions/Subroutines
scale_gmres Module Reference

module common / GMRES More...

Data Types

type  gmres
 

Functions/Subroutines

subroutine gmres_init (this, n, m, eps, eps0)
 

Detailed Description

module common / GMRES

Description
A module to provide a iterative solver for system of linear equations using generalized minimal residual method (GMRES)
Reference
  • Y. Saad and M.H. Schultz, 1986: GMRES: A generalized minimal residual algorithm for solving nonsymmetric linear systems. SIAM J. Sci. Stat. Comput., 7:856–869
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ gmres_init()

subroutine scale_gmres::gmres_init ( class(gmres), intent(inout) this,
integer, intent(in) n,
integer, intent(in) m,
real(rp), intent(in) eps,
real(rp), intent(in) eps0 )

Definition at line 78 of file scale_gmres.F90.

79
80 implicit none
81 class(GMRES), intent(inout) :: this
82 integer, intent(in) :: N
83 integer, intent(in) :: m
84 real(RP), intent(in) :: eps
85 real(RP), intent(in) :: eps0
86
87 !--------------------------------------
88
89 this%N = n
90 this%m = m
91 this%EPS = eps
92 this%EPS0 = eps0
93
94 allocate( this%v(n,m+1) )
95 allocate( this%hj(m+1) )
96 allocate( this%g(m+1) )
97 allocate( this%r(m+1,m) )
98 allocate( this%co(m), this%si(m) )
99 allocate( this%y(m) )
100
101 return