comparc-metrics/hddaccess

8 lines
147 B
Plaintext
Raw Permalink Normal View History

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