-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolver.f90
More file actions
86 lines (66 loc) · 2.88 KB
/
solver.f90
File metadata and controls
86 lines (66 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
! Ode solver
!
! Adapted from Numerical Recipes 77
module solver
implicit none
private
public rk_exp4, rk_exp38, rk_cash_karp, rk_dop853, rk_get_error, realft, yfr
public f_p, solver_p
abstract interface
function f_p(t,x) result(dxdt)
real(8), intent(in) :: t
real(8), intent(in), contiguous :: x(:,:)
real(8) :: dxdt(size(x,1),size(x,2))
end function f_p
function solver_p(h,t,x,fp) result(xout)
import
real(8), intent(in) :: h, t
real(8), intent(in), contiguous :: x(:,:)
procedure(f_p), pointer :: fp
real(8) :: xout(size(x,1),size(x,2))
end function solver_p
end interface
interface
module function rk_dop853(h,t,x,fp) result(xout)
real(8), intent(in) :: h, t
real(8), intent(in), contiguous :: x(:,:)
procedure(f_p), pointer :: fp
real(8) :: xout(size(x,1),size(x,2))
end function rk_dop853
module function rk_cash_karp(h,t,x,fp) result(xout)
real(8), intent(in) :: h, t
real(8), intent(in), contiguous :: x(:,:)
procedure(f_p), pointer :: fp
real(8) :: xout(size(x,1),size(x,2))
end function rk_cash_karp
module function rk_get_error() result(r)
real(8), dimension(:,:), pointer :: r
end function rk_get_error
module function rk_exp4(h,t,x,fp) result(xout)
real(8), intent(in) :: h, t
real(8), intent(in), contiguous :: x(:,:)
procedure(f_p), pointer :: fp
real(8) :: xout(size(x,1),size(x,2))
end function rk_exp4
module function rk_exp38(h,t,x,fp) result(xout)
real(8), intent(in) :: h, t
real(8), intent(in), contiguous :: x(:,:)
procedure(f_p), pointer :: fp
real(8) :: xout(size(x,1),size(x,2))
end function rk_exp38
module function yfr(h,t,x,fp) result(xout)
real(8), intent(in) :: h, t
real(8), intent(in), contiguous :: x(:,:)
procedure(f_p), pointer :: fp
real(8) :: xout(size(x,1),size(x,2))
end function yfr
module subroutine four1(data,nn,isign)
integer, intent(in) :: isign, nn
real(8) :: data(2*nn)
end subroutine four1
module subroutine realft(data, isign)
integer, intent(in) :: isign
real(8), intent(inout) :: data(:)
end subroutine realft
end interface
end module solver