-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIRROR] Converts arbitrary energy units to the joule. Fixes conserva…
…tion of energy issues relating to charging cells. (#2595) * [MIRROR] Converts arbitrary energy units to the joule. Fixes conservation of energy issues relating to charging cells. (#1593) * Converts arbitrary energy units to the joule. Fixes conservation of energy issues relating to charging cells. * Fix CI issues * More CI fixes * restore edits * Edit * Yes? * active power (I think this is right?) --------- Co-authored-by: Pickle-Coding <[email protected]> Co-authored-by: SomeRandomOwl <[email protected]> * rev decon change --------- Co-authored-by: NovaBot <[email protected]> Co-authored-by: Pickle-Coding <[email protected]> Co-authored-by: SomeRandomOwl <[email protected]> Co-authored-by: Iajret <[email protected]>
- Loading branch information
1 parent
ce6dafa
commit 44c23a4
Showing
213 changed files
with
1,035 additions
and
797 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Prefix values. | ||
#define QUECTO * 1e-30 | ||
#define RONTO * 1e-27 | ||
#define YOCTO * 1e-24 | ||
#define ZEPTO * 1e-21 | ||
#define ATTO * 1e-18 | ||
#define FEMPTO * 1e-15 | ||
#define PICO * 1e-12 | ||
#define NANO * 1e-9 | ||
#define MICRO * 1e-6 | ||
#define MILLI * 1e-3 | ||
#define KILO * 1e3 | ||
#define MEGA * 1e6 | ||
#define GIGA * 1e9 | ||
#define TERA * 1e12 | ||
#define PETA * 1e15 | ||
#define EXA * 1e18 | ||
#define ZETTA * 1e21 | ||
#define YOTTA * 1e24 | ||
#define RONNA * 1e27 | ||
#define QUETTA * 1e30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.