blob: c6fccdbb3319d6effc6793543591f98436f03237 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
definition module Kogelbaan
:: T :== Real // T staat voor tijd (s).
:: V :== Real // R staat voor snelheid (m/s).
:: A :== Real // A staat voor hoek (radialen).
:: G :== Real // G staat voor valversnelling (m/s^2).
:: D :== Real // M staat voor afstand (m).
// De valversnelling g is een 'echte' constante:
g :: G
v_x :: // geef type van v_x
v_y :: // geef type van v_y
x_at :: // geef type van x_at
y_at :: // geef type van y_at
h :: // geef type van h
beste_hoek :: V -> ...
|