Skip to content

Commit f87ab99

Browse files
committed
updated acceleration
1 parent f3d2a82 commit f87ab99

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

quantities/units/acceleration.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1+
# -*- coding: utf-8 -*-
12
"""
23
"""
34

45
from quantities.units.unitquantity import UnitQuantity
56
from quantities.units.time import s
67
from quantities.units.length import m
78

8-
g = gravity = force = free_fall = standard_free_fall = gp = dynamic = \
9-
geopotential = \
10-
UnitQuantity('g', 9.806650*m/s**2) # TODO: check
9+
g = gravity = standard_gravity = gee = force = free_fall = \
10+
standard_free_fall = gp = dynamic = geopotential = UnitQuantity(
11+
'standard_gravity',
12+
9.806650*m/s**2,
13+
symbol='g₀'
14+
) # exact
1115

1216
del m, s, UnitQuantity

0 commit comments

Comments
 (0)