-
Notifications
You must be signed in to change notification settings - Fork 46
grid_Cons_Grow
Fabian Kindermann edited this page Apr 2, 2021
·
11 revisions
subroutine grid_Cons_Grow(a, left, right, growth)
Creates nodes or gridpoints with growing distance on the interval according to the formula
-
real*8 :: left
The left interval endpoint, corresponds to . -
real*8 :: right
The right interval endpoint, corresponds to . -
real*8 :: growth
The growth rate of gridpoints, corresponds to .
-
real*8 :: a(:)
A one-dimensional array of arbitrary length. The subroutine fills up this array with the respective gridpoints.
- For further reading refer to:
- Süli, E. & Mayers, D. F. (2003). An Introduction to Numerical Analysis. Cambridge: Cambridge University Press.
- Powell, M.J.D. (1996). Approximation Theory and Methods. Cambridge: Cambridge University Press.
- This routine is used in the following programs:
prog09_08.f90
prog09_09.f90
prog09_10.f90
prog10_01.f90
prog10_02.f90
prog10_03.f90
prog10_04.f90
prog10_05.f90
prog10_06.f90
prog11_01.f90
prog11_02.f90
prog11_03.f90