Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
#300 remove Plots
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinsulzer committed Dec 10, 2020
1 parent fd61dd8 commit 964c593
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/MOL_1D_Linear_Diffusion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -307,13 +307,13 @@ end
t = sol.t

# Plot and save results
using Plots
plot()
for i in 1:4
plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i]))
scatter!(x, u_exact(x, t[i]))
end
savefig("MOL_1D_Linear_Diffusion_Test05.png")
# using Plots
# plot()
# for i in 1:4
# plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i]))
# scatter!(x, u_exact(x, t[i]))
# end
# savefig("MOL_1D_Linear_Diffusion_Test05.png")

# Test against exact solution
for i in 1:size(t,1)
Expand Down

0 comments on commit 964c593

Please sign in to comment.