Difference between revisions of "UTS"

From ccitonlinewiki
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
*[[Soal A UTS ]]
 
*[[Soal A UTS ]]
  
*[[Soal B]]
+
*[[Soal B UTS]]
  
from math import *
+
Muhasabah
  
from sympy import *
+
*[[Video Muhasabah UTS]]
 
 
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)
 
 
 
[[File:N2UTS.png]]
 
 
 
[[File:bandicam 2019-10-29 20-39-11-028.mp4]]
 

Latest revision as of 21:05, 29 October 2019