Difference between revisions of "UTS"

From ccitonlinewiki
Jump to: navigation, search
(Replaced content with "Algoritma *Soal A UTS *Soal B Muhasabah *Video")
Line 5: Line 5:
 
*[[Soal B]]
 
*[[Soal B]]
  
from math import *
+
Muhasabah
  
from sympy import *
+
*[[Video]]
 
 
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]]
 

Revision as of 21:04, 29 October 2019

Algoritma

Muhasabah