We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d2a82 commit f87ab99Copy full SHA for f87ab99
quantities/units/acceleration.py
@@ -1,12 +1,16 @@
1
+# -*- coding: utf-8 -*-
2
"""
3
4
5
from quantities.units.unitquantity import UnitQuantity
6
from quantities.units.time import s
7
from quantities.units.length import m
8
-g = gravity = force = free_fall = standard_free_fall = gp = dynamic = \
9
- geopotential = \
10
- UnitQuantity('g', 9.806650*m/s**2) # TODO: check
+g = gravity = standard_gravity = gee = force = free_fall = \
+ standard_free_fall = gp = dynamic = geopotential = UnitQuantity(
11
+ 'standard_gravity',
12
+ 9.806650*m/s**2,
13
+ symbol='g₀'
14
+) # exact
15
16
del m, s, UnitQuantity
0 commit comments