From e5293c361bf07366db340838d673ec235e3279e4 Mon Sep 17 00:00:00 2001 From: Christian Merdon Date: Mon, 18 Dec 2023 21:14:52 +0100 Subject: [PATCH] JPG->PNG --- examples/Example210_LowLevelNavierStokes.jl | 4 ++-- examples/Example281_DiscontinuousPlot.jl | 4 ++-- examples/Example290_InterpolationBetweenMeshes.jl | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/Example210_LowLevelNavierStokes.jl b/examples/Example210_LowLevelNavierStokes.jl index 0d67c0f..5358d2e 100644 --- a/examples/Example210_LowLevelNavierStokes.jl +++ b/examples/Example210_LowLevelNavierStokes.jl @@ -26,7 +26,7 @@ Newton's method with automatic differentation is used to handle the nonlinear co The computed solution for the default parameters looks like this: -![](example210.jpg) +![](example210.png) =# module Example210_LowLevelNavierStokes @@ -400,6 +400,6 @@ end function generateplots(dir = pwd(); Plotter = nothing, kwargs...) ~, plt = main(; Plotter = Plotter, kwargs...) scene = GridVisualize.reveal(plt) - GridVisualize.save(joinpath(dir, "example210.jpg"), scene; Plotter = Plotter) + GridVisualize.save(joinpath(dir, "example210.png"), scene; Plotter = Plotter) end end #module diff --git a/examples/Example281_DiscontinuousPlot.jl b/examples/Example281_DiscontinuousPlot.jl index f92d155..1ca109f 100644 --- a/examples/Example281_DiscontinuousPlot.jl +++ b/examples/Example281_DiscontinuousPlot.jl @@ -8,7 +8,7 @@ on a grid with two regions by region-wise nodal values and plotting. The computed solution for the default parameters looks like this: -![](example281.jpg) +![](example281.png) =# module Example281_DiscontinuousPlot @@ -71,6 +71,6 @@ end function generateplots(dir = pwd(); Plotter = nothing, kwargs...) plt = main(; Plotter = Plotter, kwargs...) scene = GridVisualize.reveal(plt) - GridVisualize.save(joinpath(dir, "example281.jpg"), scene; Plotter = Plotter) + GridVisualize.save(joinpath(dir, "example281.png"), scene; Plotter = Plotter) end end diff --git a/examples/Example290_InterpolationBetweenMeshes.jl b/examples/Example290_InterpolationBetweenMeshes.jl index f180128..44ce750 100644 --- a/examples/Example290_InterpolationBetweenMeshes.jl +++ b/examples/Example290_InterpolationBetweenMeshes.jl @@ -8,7 +8,7 @@ this P2 function on two uniform refinements into some P1 function. Then, both fi The computed solution for the default parameters looks like this: -![](example290.jpg) +![](example290.png) =# module Example290_InterpolationBetweenMeshes @@ -62,7 +62,7 @@ end function generateplots(dir = pwd(); Plotter = nothing, kwargs...) plt = main(; Plotter = Plotter, kwargs...) scene = GridVisualize.reveal(plt) - GridVisualize.save(joinpath(dir, "example290.jpg"), scene; Plotter = Plotter) + GridVisualize.save(joinpath(dir, "example290.png"), scene; Plotter = Plotter) end end