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