Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)

applications/linearDG1d.doxy
Go to the documentation of this file.
00001 
00200 string  author  "(empty)"
00201 string  comment "(empty)"
00202 string  title   "(empty)"
00203 int     gauss_p 1
00204 int     level   3
00205 end
00206 // output starts here
00207 array double h {
00208         1       0.5
00209         2       0.25
00210 }
00211 array double maxNodalFehler {
00212         1       0.060049
00213         2       0.0222183
00214 } @endcode
00215 
00216     Error diagram. The following diagram shows the convergence rates of
00217     the method symmetric (t = -1) and the unsymmetric (t = 1) method.
00218     <img src="linearDG1d-error.png" width="640" height="480" alt="error diagram">
00219     The diagram above was created using the following commands: @code
00220 set logscale x
00221 set logscale y
00222 set grid
00223 set grid mxtics
00224 set grid mytics
00225 set key top left
00226 set xlabel 'h'
00227 set ylabel 'error'
00228 set data style linespoints
00229 plot 'linearDG1d_t1.gnuplot' using 2:3 title 'maximal nodal error, t=1', \
00230   'linearDG1d_t-1.gnuplot' using 2:3 title 'maximal nodal error, t=-1' @endcode
00231 
00232     @section complete Complete Source Code
00233     @author Philipp Frauenfelder, 2004
00234 */

Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)