8 lines
147 B
Plaintext
8 lines
147 B
Plaintext
|
#!/bin/python
|
||
|
|
||
|
rpm = int(input("RPM? "))
|
||
|
headseek = int(input("AVG head seek? (ms) ")) # ms
|
||
|
rotlat = 60/rpm/2 * 1000 # ms
|
||
|
print(headseek+rotlat)
|
||
|
|