Class documentation of Concepts

Loading...
Searching...
No Matches
linearDG1d.doxy
1
200string author "(empty)"
201string comment "(empty)"
202string title "(empty)"
203int gauss_p 1
204int level 3
205end
206// output starts here
207array double h {
208 1 0.5
209 2 0.25
210}
211array double maxNodalFehler {
212 1 0.060049
213 2 0.0222183
214} @endcode
215
216 Error diagram. The following diagram shows the convergence rates of
217 the method symmetric (t = -1) and the unsymmetric (t = 1) method.
218 <img src="linearDG1d-error.png" width="640" height="480" alt="error diagram">
219 The diagram above was created using the following commands: @code
220set logscale x
221set logscale y
222set grid
223set grid mxtics
224set grid mytics
225set key top left
226set xlabel 'h'
227set ylabel 'error'
228set data style linespoints
229plot 'linearDG1d_t1.gnuplot' using 2:3 title 'maximal nodal error, t=1', \
230 'linearDG1d_t-1.gnuplot' using 2:3 title 'maximal nodal error, t=-1' @endcode
231
232 @section complete Complete Source Code
233 @author Philipp Frauenfelder, 2004
234*/