=for timestamp Mi Nov 17 12:00:37 CET 2004 =head3 14. Hausaufgabe =head4 Buch Seite 39, Aufgabe 1 Ein Körper fällt im freien Fall ohne Anfangsgeschwindigkeit. Welche Höhe durchfällt er in M<1\mathrm{s}>, M<2\mathrm{s}>, M<3\mathrm{s}>, M<4\mathrm{s}>, M<5\mathrm{s}>? Zeichnen Sie das Zeit-Ort-Diagramm und das Zeit-Geschwindigkeit-Diagramm. =helper MyBook::Helper::Gnuplot # File automatically generated by Plot.pm # Global settings set samples 10000 unset border set xtics axis set ytics axis set xzeroaxis lt -1 set yzeroaxis lt -1 # Coordinate system settings set title "" set xlabel "\nt/s\n" set ylabel "-y/m\n\n" set y2label "-v/(m/s^2)" set xrange [ -0.00001 : 5.000000 ] set yrange [ -0.00001 : 130.000000 ] set grid set xtics 1.000000 set ytics 10.00000 # Function definitions func0(x) = 0.5 * 9.81 * x**2 func1(x) = 9.81 * x # Plotting plot func0(x) t "y(t)" w l lt 1, func1(x) t "v(t)" w l lt 2 =hend