This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc_dt_kernel.f90
171 lines (137 loc) · 6.18 KB
/
calc_dt_kernel.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
!Crown Copyright 2012 AWE.
!
! This file is part of CloverLeaf.
!
! CloverLeaf is free software: you can redistribute it and/or modify it under
! the terms of the GNU General Public License as published by the
! Free Software Foundation, either version 3 of the License, or (at your option)
! any later version.
!
! CloverLeaf is distributed in the hope that it will be useful, but
! WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
! FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
! details.
!
! You should have received a copy of the GNU General Public License along with
! CloverLeaf. If not, see http://www.gnu.org/licenses/.
!> @brief Fortran timestep kernel
!> @author Wayne Gaudin
!> @details Calculates the minimum timestep on the mesh chunk based on the CFL
!> condition, the velocity gradient and the velocity divergence. A safety
!> factor is used to ensure numerical stability.
MODULE calc_dt_kernel_module
CONTAINS
SUBROUTINE calc_dt_kernel(x_min,x_max,y_min,y_max, &
g_small,g_big,dtmin, &
dtc_safe, &
dtu_safe, &
dtv_safe, &
dtdiv_safe, &
xarea, &
yarea, &
cellx, &
celly, &
celldx, &
celldy, &
volume, &
density0, &
energy0, &
pressure, &
viscosity, &
soundspeed, &
xvel0,yvel0, &
dt_min, &
dt_min_val, &
dtl_control, &
xl_pos, &
yl_pos, &
jldt, &
kldt, &
small)
IMPLICIT NONE
INTEGER :: x_min,x_max,y_min,y_max
REAL(KIND=8) :: g_small,g_big,dtmin,dt_min_val
REAL(KIND=8) :: dtc_safe,dtu_safe,dtv_safe,dtdiv_safe
REAL(KIND=8), DIMENSION(x_min-2:x_max+3,y_min-2:y_max+2) :: xarea
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+3) :: yarea
REAL(KIND=8), DIMENSION(x_min-2:x_max+2) :: cellx
REAL(KIND=8), DIMENSION(y_min-2:y_max+2) :: celly
REAL(KIND=8), DIMENSION(x_min-2:x_max+2) :: celldx
REAL(KIND=8), DIMENSION(y_min-2:y_max+2) :: celldy
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: volume
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: density0
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: energy0
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: pressure
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: viscosity
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: soundspeed
REAL(KIND=8), DIMENSION(x_min-2:x_max+3,y_min-2:y_max+3) :: xvel0,yvel0
REAL(KIND=8), DIMENSION(x_min-2:x_max+3,y_min-2:y_max+3) :: dt_min
INTEGER :: dtl_control
REAL(KIND=8) :: xl_pos,yl_pos
INTEGER :: jldt,kldt
INTEGER :: small
INTEGER :: j,k
REAL(KIND=8) :: div,dsx,dsy,dtut,dtvt,dtct,dtdivt,cc,dv1,dv2,jk_control
small=0
dt_min_val = g_big
jk_control=1.1
!$OMP PARALLEL
!$OMP DO PRIVATE(dsx,dsy,cc,dv1,dv2,div,dtct,dtut,dtvt,dtdivt)
DO k=y_min,y_max
DO j=x_min,x_max
dsx=celldx(j)
dsy=celldy(k)
cc=soundspeed(j,k)*soundspeed(j,k)
cc=cc+2.0_8*viscosity(j,k)/density0(j,k)
cc=MAX(SQRT(cc),g_small)
dtct=dtc_safe*MIN(dsx,dsy)/cc
div=0.0
dv1=(xvel0(j ,k)+xvel0(j ,k+1))*xarea(j ,k)
dv2=(xvel0(j+1,k)+xvel0(j+1,k+1))*xarea(j+1,k)
div=div+dv2-dv1
dtut=dtu_safe*2.0_8*volume(j,k)/MAX(ABS(dv1),ABS(dv2),g_small*volume(j,k))
dv1=(yvel0(j,k )+yvel0(j+1,k ))*yarea(j,k )
dv2=(yvel0(j,k+1)+yvel0(j+1,k+1))*yarea(j,k+1)
div=div+dv2-dv1
dtvt=dtv_safe*2.0_8*volume(j,k)/MAX(ABS(dv1),ABS(dv2),g_small*volume(j,k))
div=div/(2.0_8*volume(j,k))
IF(div.LT.-g_small)THEN
dtdivt=dtdiv_safe*(-1.0_8/div)
ELSE
dtdivt=g_big
ENDIF
dt_min(j,k)=MIN(dtct,dtut,dtvt,dtdivt)
ENDDO
ENDDO
!$OMP END DO
!$OMP DO REDUCTION(MIN : dt_min_val)
DO k=y_min,y_max
DO j=x_min,x_max
IF(dt_min(j,k).LT.dt_min_val) dt_min_val=dt_min(j,k)
ENDDO
ENDDO
!$OMP END DO
!$OMP END PARALLEL
! Extract the mimimum timestep information
dtl_control=10.01*(jk_control-INT(jk_control))
jk_control=jk_control-(jk_control-INT(jk_control))
jldt=MOD(INT(jk_control),x_max)
kldt=1+(jk_control/x_max)
xl_pos=cellx(jldt)
yl_pos=celly(kldt)
IF(dt_min_val.LT.dtmin) small=1
IF(small.NE.0)THEN
WRITE(0,*) 'Timestep information:'
WRITE(0,*) 'j, k : ',jldt,kldt
WRITE(0,*) 'x, y : ',cellx(jldt),celly(kldt)
WRITE(0,*) 'timestep : ',dt_min_val
WRITE(0,*) 'Cell velocities;'
WRITE(0,*) xvel0(jldt ,kldt ),yvel0(jldt ,kldt )
WRITE(0,*) xvel0(jldt+1,kldt ),yvel0(jldt+1,kldt )
WRITE(0,*) xvel0(jldt+1,kldt+1),yvel0(jldt+1,kldt+1)
WRITE(0,*) xvel0(jldt ,kldt+1),yvel0(jldt ,kldt+1)
WRITE(0,*) 'density, energy, pressure, soundspeed '
WRITE(0,*) density0(jldt,kldt),energy0(jldt,kldt),pressure(jldt,kldt),soundspeed(jldt,kldt)
ENDIF
END SUBROUTINE calc_dt_kernel
END MODULE calc_dt_kernel_module