This commit is contained in:
stockth
2019-07-24 07:34:05 +02:00
parent 7e472764d8
commit 124957e43a
3 changed files with 7 additions and 0 deletions
+7
View File
@@ -31,3 +31,10 @@ Formeln = [k.Formel('Kraftformel', i=k.Groesse('F', 'N', False), a=k.Groesse('m'
b=k.Groesse('v', 'm/s', False), c=konstante_eins, z=konstante_eins, y=konstante_eins,
x=konstante_eins)
]
def looper(geg, ges):
for formel in Formeln:
temp_is_solvable = formel.is_solvable(geg, ges)
if temp_is_solvable[0]:
formel.solve(temp_is_solvable[1])
View File
View File