From 8a32d27c643943ed313f85a6c4aebb787f745459 Mon Sep 17 00:00:00 2001 From: Pascal Aellig Date: Wed, 10 Jan 2024 16:04:13 +0100 Subject: [PATCH] fix figure titles --- miniapps/benchmarks/stokes2D/shear_heating/Shearheating2D.jl | 2 +- miniapps/benchmarks/stokes3D/shear_heating/Shearheating3D.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miniapps/benchmarks/stokes2D/shear_heating/Shearheating2D.jl b/miniapps/benchmarks/stokes2D/shear_heating/Shearheating2D.jl index 64193a62..d7af79a3 100644 --- a/miniapps/benchmarks/stokes2D/shear_heating/Shearheating2D.jl +++ b/miniapps/benchmarks/stokes2D/shear_heating/Shearheating2D.jl @@ -342,7 +342,7 @@ function main2D(igg; ar=8, ny=16, nx=ny*8, figdir="figs2D", save_vtk =false) # Make Makie figure fig = Figure(size = (900, 900), title = "t = $t") ax1 = Axis(fig[1,1], aspect = ar, title = "T [C] (t=$(t/(1e6 * 3600 * 24 *365.25)) Myrs)") - ax2 = Axis(fig[2,1], aspect = ar, title = "Vy [m/s]") + ax2 = Axis(fig[2,1], aspect = ar, title = "Shear heating [W/m3]") ax3 = Axis(fig[1,3], aspect = ar, title = "log10(εII)") ax4 = Axis(fig[2,3], aspect = ar, title = "log10(η)") # Plot temperature diff --git a/miniapps/benchmarks/stokes3D/shear_heating/Shearheating3D.jl b/miniapps/benchmarks/stokes3D/shear_heating/Shearheating3D.jl index f7075ee4..3a7727e0 100644 --- a/miniapps/benchmarks/stokes3D/shear_heating/Shearheating3D.jl +++ b/miniapps/benchmarks/stokes3D/shear_heating/Shearheating3D.jl @@ -321,7 +321,7 @@ function main3D(igg; ar=8, ny=16, nx=ny*8, figdir="figs3D", save_vtk =false) slice_j = ny >>> 1 fig = Figure(size = (1200, 1200), title = "t = $t") ax1 = Axis(fig[1,1], aspect = ar, title = "T [C] (t=$(t/(1e6 * 3600 * 24 *365.25)) Myrs)") - ax2 = Axis(fig[2,1], aspect = ar, title = "Vy [m/s]") + ax2 = Axis(fig[2,1], aspect = ar, title = "Shear heating [W/m3]") ax3 = Axis(fig[1,3], aspect = ar, title = "log10(εII)") ax4 = Axis(fig[2,3], aspect = ar, title = "log10(η)") # Plot temperature