From 4cf876b477313d8bbe1959ff6e14b9bd09af3293 Mon Sep 17 00:00:00 2001 From: stockth Date: Wed, 24 Jul 2019 10:31:43 +0200 Subject: [PATCH] Bug fix --- Formeln.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formeln.py b/Formeln.py index fc3dbb2..396fb64 100644 --- a/Formeln.py +++ b/Formeln.py @@ -6,7 +6,7 @@ Formeln = [k.Formel('Kraftformel', "F=m*a", i=k.Groesse('F', 'N', False), a=k.Gr b=k.Groesse('a', 'm/s', False), c=konstante_eins, z=konstante_eins, y=konstante_eins, x=konstante_eins), k.Formel('Gleichm. beschl. Bew.',"s=0.5*a*t^2", i=k.Groesse('s', 'm', False), a=k.Groesse(None, None, True, 0.5), - b=('a', 'm/s^2', False), c=k.Groesse('t', 's', False), z=konstante_eins, x=konstante_eins, + b=k.Groesse('a', 'm/s^2', False), c=k.Groesse('t', 's', False), z=konstante_eins, x=konstante_eins, y=k.Groesse(None, None, True, 2)), k.Formel('Gewichtskraft',"Fg=9,81*h", i=k.Groesse('Fg', 'N',False), a=k.Groesse(None,None,True,9.81),b=('h','m',False), c=konstante_eins, z=konstante_eins,y=konstante_eins,x=konstante_eins),