11 lines
272 B
Python
11 lines
272 B
Python
from SI import second
|
|
|
|
#
|
|
# Definitions of common time units
|
|
# Data taken from Appendix F of Halliday, Resnick, Walker, "Fundamentals of Physics",
|
|
# fourth edition, John Willey and Sons, 1993
|
|
|
|
minute = 60 * second
|
|
hour = 60 * minute
|
|
day = 24 * hour
|
|
year = 365.25 * day
|