-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdiffusion_2D_damp_perf.jl
80 lines (75 loc) · 3.7 KB
/
diffusion_2D_damp_perf.jl
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
# 2D nonlinear diffusion CPU implicit solver with acceleration
using LazyArrays, Plots, Printf, LinearAlgebra
using LazyArrays: Diff
# enable plotting by default
if !@isdefined do_visu; do_visu = false end
# finite-difference support functions
@views av_xi(A) = 0.5*(A[1:end-1,2:end-1].+A[2:end,2:end-1])
@views av_yi(A) = 0.5*(A[2:end-1,1:end-1].+A[2:end-1,2:end])
@views inn(A) = A[2:end-1,2:end-1]
# macros to avoid array allocation
macro qHx() esc(:( .-av_xi(H).^npow.*LazyArrays.Diff(H[:,2:end-1], dims=1)/dx )) end
macro qHy() esc(:( .-av_yi(H).^npow.*LazyArrays.Diff(H[2:end-1,:], dims=2)/dy )) end
macro dtau() esc(:( (1.0./(min(dx, dy)^2 ./inn(H).^npow./4.1) .+ 1.0/dt).^-1 )) end
@views function diffusion_2D_damp_perf(; do_visu=true, save_fig=false)
# Physics
lx, ly = 10.0, 10.0 # domain size
npow = 3 # power-law exponent
ttot = 1.0 # total simulation time
dt = 0.2 # physical time step
# Numerics
nx, ny = 512, 512 # number of grid points
nout = 100 # check error every nout
tol = 1e-6 # tolerance
itMax = 1e5 # max number of iterations
damp = 1-35/nx # damping (this is a tuning parameter, dependent on e.g. grid resolution)
# Derived numerics
dx, dy = lx/nx, ly/ny # grid size
xc, yc = LinRange(dx/2, lx-dx/2, nx), LinRange(dy/2, ly-dy/2, ny)
# Array allocation
ResH = zeros(nx-2, ny-2) # normal grid, without boundary points
dHdtau = zeros(nx-2, ny-2) # normal grid, without boundary points
# dtau = zeros(nx-2, ny-2) # normal grid, without boundary points
# Initial condition
H = exp.(.-(xc.-lx/2).^2 .-(yc.-ly/2)'.^2)
Hold = copy(H)
H2 = copy(H)
t = 0.0; it = 0; ittot = 0; t_tic = 0.0; niter = 0
# Physical time loop
while t<ttot
iter = 0; err = 2*tol
# Picard-type iteration
while err>tol && iter<itMax
if (it==1 && iter==0) t_tic = Base.time(); niter = 0 end
dHdtau .= .-(inn(H) .- inn(Hold))/dt .+
(.-Diff(@qHx(), dims=1)/dx .-Diff(@qHy(), dims=2)/dy) .+
damp*dHdtau # damped rate of change
H2[2:end-1,2:end-1] .= inn(H) .+ @dtau().*dHdtau # update rule, sets the BC as H[1]=H[end]=0
H, H2 = H2, H # pointer swap
if iter % nout == 0
ResH .= .-(inn(H) .- inn(Hold))/dt .+
(.-Diff(@qHx(), dims=1)/dx .-Diff(@qHy(), dims=2)/dy) # residual of the PDE
err = norm(ResH)/length(ResH)
end
iter += 1; niter += 1
end
ittot += iter; it += 1; t += dt
Hold .= H
end
t_toc = Base.time() - t_tic
A_eff = (2*2+1)/1e9*nx*ny*sizeof(Float64) # Effective main memory access per iteration [GB]
t_it = t_toc/niter # Execution time per iteration [s]
T_eff = A_eff/t_it # Effective memory throughput [GB/s]
@printf("Time = %1.3f sec, T_eff = %1.2f GB/s (niter = %d)\n", t_toc, round(T_eff, sigdigits=2), niter)
# Visualize
if do_visu
fontsize = 12
opts = (aspect_ratio=1, yaxis=font(fontsize, "Courier"), xaxis=font(fontsize, "Courier"),
ticks=nothing, framestyle=:box, titlefontsize=fontsize, titlefont="Courier", colorbar_title="",
xlabel="Lx", ylabel="Ly", xlims=(xc[1],xc[end]), ylims=(yc[1],yc[end]), clims=(0.,1.))
display(heatmap(xc, yc, H'; c=:davos, title="damped diffusion (nt=$it, iters=$ittot)", opts...))
if save_fig savefig("diff2D_damp.png") end
end
return
end
diffusion_2D_damp_perf(; do_visu=do_visu)