A Force
value represents a force in newtons, pounds force etc. It is
stored as a number of newtons.
Since Newtons
is defined as Product<Kilograms,
MetersPerSecondSquared>
, you can compute force directly as a
product of mass and acceleration:
let mass =
Mass.kilograms 10
let acceleration =
Acceleration.metersPerSecondSquared 2
mass |> Quantity.times acceleration
--> Force.newtons 20
Function or value | Description |
|
|
|
|
|
![]() ![]() ![]() ![]() ![]() ![]() Construct a force value from a number of kips (kilopounds force).
|
|
![]() ![]() ![]() ![]() ![]() ![]() Construct a force value from a number of pounds force. One pound force is the force required to accelerate one pound mass at a rate of one gee.
|