Skip to content

Commit

Permalink
Feature #2180 develop kft (#2181)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jun 14, 2022
1 parent 66fb810 commit e5ccff5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions data/config/ConfigConstants
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ F_to_K(t) = C_to_K(F_to_C(t));
MM_to_IN(x) = x / 25.4;
IN_to_MM(x) = x * 25.4;

M_to_FT(x) = x * 3.28084;
FT_to_M(x) = x / 3.28084;
M_to_KFT(x) = M_to_FT(x) / 1000.0;
KFT_to_M(x) = FT_to_M(x * 1000.0);
KM_to_KFT(x) = M_to_KFT(1000.0 * x);
KFT_to_KM(x) = KFT_to_M(x) / 1000.0;

PA_to_HPA(p) = p / 100.0;
HPA_to_PA(p) = p * 100.0;
PA_to_MB(p) = PA_to_HPA(p);
Expand Down

0 comments on commit e5ccff5

Please sign in to comment.