From 0924769bba06f121864cf96a1e451ce4ecd6f048 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 7 May 2010 00:43:28 +0000 Subject: [PATCH] Fix up formatting to make doxygen happy. git-svn-id: https://svn.dealii.org/trunk@21085 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-39/doc/results.dox | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/deal.II/examples/step-39/doc/results.dox b/deal.II/examples/step-39/doc/results.dox index 236939ef23..91c515a668 100644 --- a/deal.II/examples/step-39/doc/results.dox +++ b/deal.II/examples/step-39/doc/results.dox @@ -2,7 +2,8 @@

Logfile output

First, the program produces the usual logfile here stored in deallog. It reads (with ommission of intermediate steps) -
+
+@code
 DEAL::Element: FE_DGQ<2>(3)
 DEAL::Step 0
 DEAL::Triangulation 4 cells, 1 levels
@@ -70,21 +71,22 @@ DEAL:cg::Convergence step 12 value 9.49720e-14
 DEAL::Error    0.00716966
 DEAL::Estimate 0.0681646
 DEAL::Writing solution to ...
-
+@endcode This log for instance shows that the number of conjugate gradient iteration steps is constant at approximately 12.

Postprocessing of the logfile

-Convergence graphs +@image html "step-39-convergence.png" Using the perl script postprocess.pl, we extract relevant data into output.dat, which can be used to plot graphs with gnuplot. The graph on the right for instance was produced with -
+
+@code
 set style data linespoints
 set logscale
 set xrange [50:3000]
 plot "output.dat" using 2:3 title "error", "" using 2:4 title "estimate", \
      "" using 2:(3000*$2**-1.5) title "3rd order"
-
+@endcode -- 2.39.5