-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c75f18
commit 60ec309
Showing
1 changed file
with
173 additions
and
0 deletions.
There are no files selected for viewing
173 changes: 173 additions & 0 deletions
173
miniapps/benchmarks/thermal_diffusion/diffusion/diffusion2D_inner_BCs.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
using JustRelax, JustRelax.JustRelax2D | ||
const backend_JR = CPUBackend | ||
|
||
using ParallelStencil | ||
@init_parallel_stencil(Threads, Float64, 2) #or (CUDA, Float64, 2) or (AMDGPU, Float64, 2) | ||
|
||
using GeoParams | ||
using JustPIC, JustPIC._2D | ||
const backend = JustPIC.CPUBackend | ||
|
||
distance(p1, p2) = mapreduce(x->(x[1]-x[2])^2, +, zip(p1, p2)) |> sqrt | ||
|
||
@parallel_indices (i, j) function init_T!(T, z) | ||
if z[j] == maximum(z) | ||
T[i, j] = 300.0 | ||
elseif z[j] == minimum(z) | ||
T[i, j] = 3500.0 | ||
else | ||
T[i, j] = z[j] * (1900.0 - 1600.0) / minimum(z) + 1600.0 | ||
end | ||
return nothing | ||
end | ||
|
||
function elliptical_perturbation!(T, mask, Ω_T, xc, yc, r, xvi) | ||
|
||
@parallel_indices (i, j) function _elliptical_perturbation!(T, mask, Ω_T, xc, yc, r, x, y) | ||
@inbounds if (((x[i]-xc ))^2 + ((y[j] - yc))^2) ≤ r^2 | ||
T[i, j] += Ω_T | ||
mask[i, j] = 1 | ||
end | ||
return nothing | ||
end | ||
|
||
@parallel _elliptical_perturbation!(T, mask, Ω_T, xc, yc, r, xvi...) | ||
end | ||
|
||
function init_phases!(phases, particles, xc, yc, r) | ||
ni = size(phases) | ||
center = xc, yc | ||
|
||
@parallel_indices (i, j) function init_phases!(phases, px, py, index, center, r) | ||
@inbounds for ip in cellaxes(phases) | ||
# quick escape | ||
@index(index[ip, i, j]) == 0 && continue | ||
|
||
x = @index px[ip, i, j] | ||
y = @index py[ip, i, j] | ||
|
||
# plume - rectangular | ||
if (((x - center[1] ))^2 + ((y - center[2]))^2) ≤ r^2 | ||
@index phases[ip, i, j] = 2.0 | ||
|
||
else | ||
@index phases[ip, i, j] = 1.0 | ||
end | ||
end | ||
return nothing | ||
end | ||
|
||
@parallel (@idx ni) init_phases!(phases, particles.coords..., particles.index, center, r) | ||
end | ||
|
||
@parallel_indices (I...) function compute_temperature_source_terms!(H, rheology, phase_ratios, args) | ||
|
||
args_ij = ntuple_idx(args, I...) | ||
H[I...] = fn_ratio(compute_radioactive_heat, rheology, phase_ratios[I...], args_ij) | ||
|
||
return nothing | ||
end | ||
|
||
function diffusion_2D(; nx=32, ny=32, lx=100e3, ly=100e3, Cp0=1.2e3, K0=3.0) | ||
kyr = 1e3 * 3600 * 24 * 365.25 | ||
Myr = 1e3 * kyr | ||
ttot = 1 * Myr # total simulation time | ||
dt = 50 * kyr # physical time step | ||
|
||
init_mpi = JustRelax.MPI.Initialized() ? false : true | ||
igg = IGG(init_global_grid(nx, ny, 1; init_MPI = init_mpi)...) | ||
|
||
# Physical domain | ||
ni = (nx, ny) | ||
li = (lx, ly) # domain length in x- and y- | ||
di = @. li / ni # grid step in x- and -y | ||
grid = Geometry(ni, li; origin = (0, -ly)) | ||
(; xci, xvi) = grid # nodes at the center and vertices of the cells | ||
|
||
# Define the thermal parameters with GeoParams | ||
rheology = ( | ||
SetMaterialParams(; | ||
Phase = 1, | ||
Density = PT_Density(; ρ0=3e3, β=0.0, T0=0.0, α = 1.5e-5), | ||
HeatCapacity = ConstantHeatCapacity(; Cp=Cp0), | ||
Conductivity = ConstantConductivity(; k=K0), | ||
RadioactiveHeat = ConstantRadioactiveHeat(1e-6), | ||
), | ||
SetMaterialParams(; | ||
Phase = 2, | ||
Density = PT_Density(; ρ0=3.3e3, β=0.0, T0=0.0, α = 1.5e-5), | ||
HeatCapacity = ConstantHeatCapacity(; Cp=Cp0), | ||
Conductivity = ConstantConductivity(; k=K0), | ||
RadioactiveHeat = ConstantRadioactiveHeat(1e-7), | ||
), | ||
) | ||
|
||
# fields needed to compute density on the fly | ||
P = @zeros(ni...) | ||
args = (; P=P) | ||
|
||
## Allocate arrays needed for every Thermal Diffusion | ||
thermal = ThermalArrays(backend_JR, ni) | ||
@parallel (@idx size(thermal.T)) init_T!(thermal.T, xvi[2]) | ||
|
||
# Add thermal perturbation | ||
Ω_T = 1050e0 # inner BCs temperature | ||
r = 10e3 # thermal perturbation radius | ||
center_perturbation = lx/2, -ly/2 | ||
mask = zeros(size(thermal.T)...) | ||
elliptical_perturbation!(thermal.T, mask, Ω_T, center_perturbation..., r, xvi) | ||
temperature2center!(thermal) | ||
|
||
# Initialize particles ------------------------------- | ||
nxcell, max_xcell, min_xcell = 40, 40, 1 | ||
particles = init_particles( | ||
backend, nxcell, max_xcell, min_xcell, xvi... | ||
) | ||
pPhases, = init_cell_arrays(particles, Val(1)) | ||
phase_ratios = PhaseRatios(backend, length(rheology), ni) | ||
init_phases!(pPhases, particles, center_perturbation..., r) | ||
update_phase_ratios!(phase_ratios, particles, xci, xvi, pPhases) | ||
# ---------------------------------------------------- | ||
|
||
@parallel (@idx ni) compute_temperature_source_terms!(thermal.H, rheology, phase_ratios.center, args) | ||
|
||
# PT coefficients for thermal diffusion | ||
args = (; P=P, T=thermal.Tc) | ||
pt_thermal = PTThermalCoeffs( | ||
backend_JR, rheology, phase_ratios, args, dt, ni, di, li; ϵ=1e-5, CFL=0.97 / √2 | ||
) | ||
|
||
thermal_bc = TemperatureBoundaryConditions(; | ||
no_flux = (left = true, right = true, top = false, bot = false), | ||
dirichlet = (constant = Ω_T, mask=mask) | ||
) | ||
|
||
# Time loop | ||
t = 0.0 | ||
it = 0 | ||
nt = Int(ceil(ttot / dt)) | ||
while it < nt | ||
heatdiffusion_PT!( | ||
thermal, | ||
pt_thermal, | ||
thermal_bc, | ||
rheology, | ||
args, | ||
dt, | ||
di; | ||
kwargs = (; | ||
phase = phase_ratios, | ||
iterMax = 1e3, | ||
nout = 10, | ||
) | ||
) | ||
|
||
it += 1 | ||
t += dt | ||
end | ||
|
||
return (ni=ni, xci=xci, xvi=xvi, li=li, di=di), thermal | ||
end | ||
|
||
thermal = diffusion_2D() | ||
|