Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation of the MK⁻¹ unit of measure #2390

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions concepts/units-of-measurement.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ SI (base unit symbols):
| Speed | Knot | kn |
| Temperature | Kelvin | K |
| Temperature | Celsius | °C |
| Temperature[^](#mired-footnote) | Mired | mired |
| Temperature[^](#mired-footnote) | Mired | mired or MK⁻¹ |
| Time | Second | s |
| Time | Minute | min |
| Time | Hour | h |
Expand All @@ -221,9 +221,12 @@ SI (base unit symbols):
| VolumetricFlowRate | Cubic Metre per Hour | m³/h |
| VolumetricFlowRate | Cubic Metre per Day | m³/d |

<a name="mired-footnote">^</a>: Technically, mireds are the reciprocal of Temperature, but QuantityType and NumberItem will transparently convert between mireds and Kelvin.
<a name="mired-footnote">^</a>: This unit is used to indicate the color temperature of lights.
Technically, mireds are the reciprocal of Temperature, but QuantityType and NumberItem will transparently convert between mireds and Kelvin.
This technicality might be a problem if you are using mireds in rules.
Be sure to use the `toInvertibleUnit` method on QuantityType, rather than `toUnit`.
The name 'mired' is a colloquial name and unit symbol for 'micro reciprocal degree'.
The unit has subsequently been adopted by the SI committee as 'micro reciprocal Kelvin' with the colloquial name 'mirek' and the unit symbol 'MK⁻¹'.
andrewfg marked this conversation as resolved.
Show resolved Hide resolved

Metric Prefixes:

Expand Down