Difference between revisions of "UTS"

From ccitonlinewiki
Jump to: navigation, search
Line 1: Line 1:
 
Algoritma  
 
Algoritma  
  
Soal A
+
*[[Soal A]]
  
Untuk soal B
+
*[[Soal B]]
  
 
from math import *
 
from math import *

Revision as of 21:02, 29 October 2019

Algoritma

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)

N2UTS.png