We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e259291 commit 82af824Copy full SHA for 82af824
docs/src/symbolic_units.md
@@ -0,0 +1,21 @@
1
+# Symbolic Dimensions
2
+
3
+Whereas `u"..."` will automatically convert all units to the same
4
+base SI units, `us"..."` will not. This uses the `SymbolicDimensions`
5
+type, which is a subtype of `AbstractDimensions` that stores the
6
+dimensions symbolically. This is useful for keeping track of the
7
+original units and constants in a user-entered expression.
8
9
+The two main functions for working with symbolic
10
+units are `sym_uparse` and `us_str`:
11
12
+```@docs
13
+@us_str
14
+sym_uparse
15
+```
16
17
+To convert a quantity to its regular base SI units, use `expand_units`:
18
19
20
+expand_units
21
0 commit comments