-
Notifications
You must be signed in to change notification settings - Fork 3
/
module_libmassv.F
91 lines (65 loc) · 2.97 KB
/
module_libmassv.F
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
87
88
89
90
91
!=================================================================================================================
module module_libmassv
implicit none
interface vrec
module procedure vrec_d
module procedure vrec_s
end interface
interface vsqrt
module procedure vsqrt_d
module procedure vsqrt_s
end interface
integer, parameter, private :: R4KIND = selected_real_kind(6)
integer, parameter, private :: R8KIND = selected_real_kind(12)
contains
!=================================================================================================================
subroutine vrec_d(y,x,n)
!=================================================================================================================
integer,intent(in):: n
real(kind=R8KIND),dimension(*),intent(in):: x
real(kind=R8KIND),dimension(*),intent(out):: y
integer:: j
!-----------------------------------------------------------------------------------------------------------------
do j=1,n
y(j)=real(1.0,kind=R8KIND)/x(j)
enddo
end subroutine vrec_d
!=================================================================================================================
subroutine vrec_s(y,x,n)
!=================================================================================================================
integer,intent(in):: n
real(kind=R4KIND),dimension(*),intent(in):: x
real(kind=R4KIND),dimension(*),intent(out):: y
integer:: j
!-----------------------------------------------------------------------------------------------------------------
do j=1,n
y(j)=real(1.0,kind=R4KIND)/x(j)
enddo
end subroutine vrec_s
!=================================================================================================================
subroutine vsqrt_d(y,x,n)
!=================================================================================================================
integer,intent(in):: n
real(kind=R8KIND),dimension(*),intent(in):: x
real(kind=R8KIND),dimension(*),intent(out):: y
integer:: j
!-----------------------------------------------------------------------------------------------------------------
do j=1,n
y(j)=sqrt(x(j))
enddo
end subroutine vsqrt_d
!=================================================================================================================
subroutine vsqrt_s(y,x,n)
!=================================================================================================================
integer,intent(in):: n
real(kind=R4KIND),dimension(*),intent(in):: x
real(kind=R4KIND),dimension(*),intent(out):: y
integer:: j
!-----------------------------------------------------------------------------------------------------------------
do j=1,n
y(j)=sqrt(x(j))
enddo
end subroutine vsqrt_s
!=================================================================================================================
end module module_libmassv
!=================================================================================================================