Soal B UTS
Revision as of 21:04, 29 October 2019 by Khairun.naziri (talk | contribs) (Created page with "from math import * from sympy import * ro = 1.2 g = 9.8 cd = eval(input("drag coefficient: ")) area = eval(input("luas area(m^2): ")) m = eval(input("massa mobil(kg): "...")
from math import *
from sympy import *
ro = 1.2
g = 9.8
cd = eval(input("drag coefficient: "))
area = eval(input("luas area(m^2): "))
m = eval(input("massa mobil(kg): "))
vt = eval(input("kecepatan akhir(m/s): "))
a = eval(input("percepatan(m/s^2): "))
koefg = eval(input("koef gesek: "))
fgesek = g*koefg
fmobil = a
for vo in range (0,vt):
fdrag = (cd*area*ro*vo**2)/2*m
atotal = (fmobil - (fdrag+fgesek))
t = - vt/atotal
print("waktu untuk mencapaii topspeed(s): ", t)
print("percepatan total(m/s^2): ", atotal)