Skip to content

Commit

Permalink
JPG->PNG
Browse files Browse the repository at this point in the history
  • Loading branch information
chmerdon committed Dec 18, 2023
1 parent eaa3559 commit e5293c3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/Example210_LowLevelNavierStokes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions examples/Example281_DiscontinuousPlot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions examples/Example290_InterpolationBetweenMeshes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit e5293c3

Please sign in to comment.