2 * report.h - header file of the report subsystem
4 * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
11 static char report_start[]="\
13 \\documentclass[a4paper,11pt]{report}\n\
14 \\usepackage[activate]{pdfcprot}\n\
15 \\usepackage{verbatim}\n\
17 \\usepackage{a4wide}\n\
18 \\usepackage[english,german]{babel}\n\
19 \\usepackage[latin1]{inputenc}\n\
20 \\usepackage[T1]{fontenc}\n\
21 \\usepackage{amsmath}\n\
23 \\usepackage{aecompl}\n\
24 \\usepackage[dvips]{graphicx}\n\
25 \\graphicspath{{./}}\n\
26 \\usepackage{color}\n\
27 \\usepackage{pstricks}\n\
28 \\usepackage{pst-node}\n\
29 \\usepackage{rotating}\n\
30 \\selectlanguage{english}\n\
37 static char report_energy[]="\
38 \\begin{figure}[!h]\n\
40 \\includegraphics[width=16cm]{energy.eps}\n\
41 \\caption{Kinetic, potential and total energy over time}\n\
46 static char report_pressure[]="\
47 \\begin{figure}[!h]\n\
49 \\includegraphics[width=16cm]{pressure.eps}\n\
50 \\caption{Pressure over time}\n\
55 static char report_temperature[]="\
56 \\begin{figure}[!h]\n\
58 \\includegraphics[width=16cm]{temperature.eps}\n\
59 \\caption{Temperature over time}\n\
64 static char report_end[]="\
68 static char e_plot_script[]="\
74 set title 'Energy per atom vs. time' \n\
75 set xlabel 'Time [fs]' \n\
76 set ylabel 'Energy per atom [eV]' \n\
77 set terminal postscript eps enhanced color solid lw 1 'Helvetica' 14 \n\
78 set output 'energy.eps' \n\
79 plot \"energy\" using 1:2 title 'Kinetic energy' with lines , \"energy\" using 1:3 title 'Potential energy' with lines , \"energy\" using 1:4 title 'Total energy' with lines \
82 static char pressure_plot_script[]="\
88 set title 'Pressure vs. time' \n\
89 set xlabel 'Time [fs]' \n\
90 set ylabel 'Pressure [bar]' \n\
91 set terminal postscript eps enhanced color solid lw 1 'Helvetica' 14 \n\
92 set output 'pressure.eps' \n\
93 plot \"pressure\" using 1:2 title 'P' with lines , \"pressure\" using 1:3 title '<P>' with lines , \"pressure\" using 1:4 title 'P (global virial)' with lines , \"pressure\" using 1:5 title '<P (global virial)>' with lines \
96 static char temperature_plot_script[]="\
102 set title 'Temperature vs. time' \n\
103 set xlabel 'Time [fs]' \n\
104 set ylabel 'Temperature [K]' \n\
105 set terminal postscript eps enhanced color solid lw 1 'Helvetica' 14 \n\
106 set output 'temperature.eps' \n\
107 plot \"temperature\" using 1:2 title 'T' with lines , \"temperature\" using 1:3 title '<T>' with lines \