mirror of https://github.com/rm-dr/daisy
Added constants
parent
193a2db294
commit
9ee9e3f513
1
TODO.md
1
TODO.md
|
@ -61,6 +61,7 @@
|
||||||
|
|
||||||
## Units
|
## Units
|
||||||
- long prefixes (megatonne, etc)
|
- long prefixes (megatonne, etc)
|
||||||
|
- Unit order h\*kW vs kW\*h
|
||||||
- Print units with powers instead of /
|
- Print units with powers instead of /
|
||||||
- HMS for degrees
|
- HMS for degrees
|
||||||
- Exact radians, using pi constant?
|
- Exact radians, using pi constant?
|
||||||
|
|
|
@ -74,3 +74,33 @@ enum_name = "PPQ"
|
||||||
strings = "ppq"
|
strings = "ppq"
|
||||||
value = "1e-15"
|
value = "1e-15"
|
||||||
unit = true
|
unit = true
|
||||||
|
|
||||||
|
[[constant]]
|
||||||
|
enum_name = "KWH"
|
||||||
|
strings = "kWh"
|
||||||
|
value = "kW * hour"
|
||||||
|
unit = true
|
||||||
|
|
||||||
|
[[constant]]
|
||||||
|
enum_name = "MWH"
|
||||||
|
strings = "WMh"
|
||||||
|
value = "MW * hour"
|
||||||
|
unit = true
|
||||||
|
|
||||||
|
[[constant]]
|
||||||
|
enum_name = "GWH"
|
||||||
|
strings = "GWh"
|
||||||
|
value = "GW * hour"
|
||||||
|
unit = true
|
||||||
|
|
||||||
|
[[constant]]
|
||||||
|
enum_name = "TWH"
|
||||||
|
strings = "TWh"
|
||||||
|
value = "TW * hour"
|
||||||
|
unit = true
|
||||||
|
|
||||||
|
[[constant]]
|
||||||
|
enum_name = "PWH"
|
||||||
|
strings = "PWh"
|
||||||
|
value = "PW * hour"
|
||||||
|
unit = true
|
Loading…
Reference in New Issue