Physics
Functions
Polymath.Physics.density — Functiondensity(mass, volume)Calculate density (ρ or D) given the mass (m) and volume (V).
Example
julia> density(55, 40)
1.375Polymath.Physics.mass — Functionmass(density, volume)Calculate mass (m) given the density (ρ or D) and volume (V).
Example
julia> mass(1.375, 40)
55.0Polymath.Physics.volume — Functionvolume(density, mass)Calculate volume (V) given the density (ρ or D) and mass (m).
Example
julia> volume(1.375, 55)
40.0Polymath.Physics.distance — Functiondistance(speed, time)Calculate distance given the speed and time.
Example
julia> distance(30, 2)
60Polymath.Physics.speed — Functionspeed(distance, time)Calculate speed given the distance and time.
Example
julia> speed(60, 2)
30.0Polymath.Physics.time — Functiontime(distance, speed)Calculate time given the distance and speed.
Example
julia> time(60, 30)
2.0Polymath.Physics.velocity — Functionvelocity(displacement, time)Calculate velocity given the displacement and time.
Example
julia> velocity(5760.72, 7)
822.96