Skip to content

Commit 241e234

Browse files
committed
2nd iteration to improve constants for the force unit PoundForce as suggested by Jim ([email protected]), with a constant of even higher precision.
1 parent 743ccc0 commit 241e234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/UnitsNet/Force.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public double KiloPonds
6363

6464
public double PoundForce
6565
{
66-
get { return 0.224808943 * Newtons; }
66+
get { return 0.22480894309971 * Newtons; }
6767
}
6868

6969
public double Poundal
@@ -90,7 +90,7 @@ public static Force FromPoundal(double pdl)
9090

9191
public static Force FromPoundForce(double lbf)
9292
{
93-
return new Force(4.4482216172334389740002469563677*lbf);
93+
return new Force(4.4482216152605095551842641431421*lbf);
9494
}
9595

9696
public static Force FromKilogramForce(double kgf)

0 commit comments

Comments
 (0)