-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathm_ppohBEM_user_func.f90
115 lines (97 loc) · 5.29 KB
/
m_ppohBEM_user_func.f90
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
!=====================================================================*
! *
! Software Name : ppohBEM *
! Version : 0.1 *
! *
! License *
! This file is part of ppohBEM. *
! ppohBEM is a free software, you can use it under the terms *
! of The MIT License (MIT). See LICENSE file and User's guide *
! for more details. *
! *
! ppOpen-HPC project: *
! Open Source Infrastructure for Development and Execution of *
! Large-Scale Scientific Applications on Post-Peta-Scale *
! Supercomputers with Automatic Tuning (AT). *
! *
! Organizations: *
! The University of Tokyo *
! - Information Technology Center *
! - Atmosphere and Ocean Research Institute (AORI) *
! - Interfaculty Initiative in Information Studies *
! /Earthquake Research Institute (ERI) *
! - Graduate School of Frontier Science *
! Kyoto University *
! - Academic Center for Computing and Media Studies *
! Hokkaido University *
! - Information Initiative Center *
! Japan Agency for Marine-Earth Science and Technology (JAMSTEC) *
! *
! Sponsorship: *
! Japan Science and Technology Agency (JST), Basic Research *
! Programs: CREST, Development of System Software Technologies *
! for post-Peta Scale High Performance Computing. *
! *
! Copyright (c) 2012 <Takeshi Iwashita, Takeshi Mifune, Yuki Noseda,*
! Yasuhito Takahashi, Masatoshi Kawai, Akihiro Ida>*
! *
!=====================================================================*
!
module m_ppohBEM_user_func
integer, parameter :: KIND_REAL = kind(1d0)
real(kind = KIND_REAL), parameter :: PI = 3.141592653589793
real(kind = KIND_REAL), parameter :: EPSILON_0 = 8.854187818 * 1d-12
public face_integral
contains
real(kind = KIND_REAL) function face_integral(xs, ys, zs, x, y, z)
!$acc routine seq
real(kind = KIND_REAL), intent(in) :: xs(3), ys(3), zs(3)
real(kind = KIND_REAL), intent(in) :: x, y, z
real(kind = KIND_REAL) :: r(3)
real(kind = KIND_REAL) :: xi, xj, yi, dx, dy, t, l, m, d, ti, tj
real(kind = KIND_REAL) :: theta, omega, q, g, zp, zpabs
integer :: i, j
real(kind = KIND_REAL) :: u(3), v(3), w(3)
real(kind = KIND_REAL) :: ox, oy, oz
r(:) = sqrt( (xs(:) - x)**2 + (ys(:) - y)**2 + (zs(:) - z)**2 )
u(1) = xs(2) - xs(1); v(1) = xs(3) - xs(2)
u(2) = ys(2) - ys(1); v(2) = ys(3) - ys(2)
u(3) = zs(2) - zs(1); v(3) = zs(3) - zs(2)
call cross_product(u, v, w)
w(:) = w(:) / sqrt( dot_product(w, w) )
u(1) = x - xs(1); u(2) = y - ys(1); u(3) = z - zs(1)
zp = dot_product(u, w)
ox = x - zp * w(1); oy = y - zp * w(2); oz = z - zp * w(3)
zpabs = abs(zp)
face_integral = 0d0
do i = 1, 3
j = mod(i, 3) + 1
u(1) = xs(j) - ox; u(2) = ys(j) - oy; u(3) = zs(j) - oz;
xj = sqrt( dot_product(u, u) )
u(:) = u(:) / xj
call cross_product(w, u, v)
xi = (xs(i) - ox) * u(1) + (ys(i) - oy) * u(2) + (zs(i) - oz) * u(3)
yi = (xs(i) - ox) * v(1) + (ys(i) - oy) * v(2) + (zs(i) - oz) * v(3)
dx = xj - xi; dy = - yi ! (yj = 0)
t = sqrt( dx**2 + dy**2 )
l = dx/t; m = dy/t
d = l * yi - m * xi
ti = l * xi + m * yi; tj = l * xj ! (yj = 0)
! theta = sign(1d0, yi) * acos( xi / sqrt( xi**2 + yi**2 ) ) ! (xj > 0, yj = 0)
theta = atan2(yi, xi)
omega = theta - atan2( r(i) * d, zpabs * ti ) + atan2( r(j) * d, zpabs * tj )
q = log( (r(j) + tj) / ( r(i) + ti ) )
g = d * q - zpabs * omega
face_integral = face_integral + g
enddo
face_integral = abs(face_integral) / (4d0 * PI * EPSILON_0)
end function
!***********************************************************************
subroutine cross_product(u, v, w)
!$acc routine seq
real(kind = KIND_REAL) :: u(3), v(3), w(3)
w(1) = u(2) * v(3) - u(3) * v(2)
w(2) = u(3) * v(1) - u(1) * v(3)
w(3) = u(1) * v(2) - u(2) * v(1)
end subroutine cross_product
end module m_ppohBEM_user_func