cantera/interfaces/python/MixMaster/Units/time.py
2012-06-05 19:56:10 +00:00

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