From: Daniel Arndt Date: Fri, 29 Jun 2018 14:27:08 +0000 (+0200) Subject: Create a svg instead X-Git-Tag: v9.1.0-rc1~944^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5e3494ce194d66f326021e78e5e0412ab144694;p=dealii.git Create a svg instead --- diff --git a/examples/step-39/doc/results.dox b/examples/step-39/doc/results.dox index 250ca43f67..c9263a17c7 100644 --- a/examples/step-39/doc/results.dox +++ b/examples/step-39/doc/results.dox @@ -84,7 +84,7 @@ iteration steps is constant at approximately 15.

Postprocessing of the logfile

- + Using the perl script postprocess.pl, we extract relevant data into output.dat, which can be used to plot graphs with gnuplot. The graph above for instance was produced using the gnuplot diff --git a/examples/step-39/plot_errors.gpl b/examples/step-39/plot_errors.gpl index 6305e3b701..a38f67164d 100644 --- a/examples/step-39/plot_errors.gpl +++ b/examples/step-39/plot_errors.gpl @@ -4,8 +4,8 @@ set xrange [200:6000] set xtics (200,400,800,1600,3200) set xlabel "#dofs" set yrange [.004:2] -set terminal png -set output "step-39-convergence.png" +set terminal svg +set output "step-39-convergence.svg" plot "output.dat" using 2:3 title "error", \ "" using 2:4 title "estimate", \ "" using 2:(5000*$2**-1.5) title "3rd order"