Skip to content

Commit

Permalink
fix figure titles
Browse files Browse the repository at this point in the history
  • Loading branch information
aelligp committed Jan 10, 2024
1 parent b8d6be6 commit 8a32d27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a32d27

Please sign in to comment.