Physics

Functions

Polymath.Physics.densityFunction
density(mass, volume)

Calculate density (ρ or D) given the mass (m) and volume (V).

Example

julia> density(55, 40)
1.375
source
Polymath.Physics.massFunction
mass(density, volume)

Calculate mass (m) given the density (ρ or D) and volume (V).

Example

julia> mass(1.375, 40)
55.0
source
Polymath.Physics.volumeFunction
volume(density, mass)

Calculate volume (V) given the density (ρ or D) and mass (m).

Example

julia> volume(1.375, 55)
40.0
source
Polymath.Physics.timeFunction
time(distance, speed)

Calculate time given the distance and speed.

Example

julia> time(60, 30)
2.0
source
Polymath.Physics.velocityFunction
velocity(displacement, time)

Calculate velocity given the displacement and time.

Example

julia> velocity(5760.72, 7)
822.96
source