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 a98116f commit bd0dfecCopy full SHA for bd0dfec
CHANGELOG.md
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+- Fixed `Unit.Joule` conversion factor in `Energy` class returning incorrect foot-pounds to Joules values.
12
+
13
## [2.2.8] - 2026-01-26
14
[:simple-github: GitHub release][2.2.8]
15
py_ballisticcalc/unit.py
@@ -1145,7 +1145,7 @@ class Energy(GenericDimension):
1145
1146
_conversion_factors = {
1147
Unit.FootPound: 1.0,
1148
- Unit.Joule: 1.3558179483314,
+ Unit.Joule: 1 / 1.3558179483314,
1149
}
1150
1151
# Energy.* unit aliases
0 commit comments