Skip to main content

volume_droplet.py


#
# volume of a droplet
#
from math import pi
# units in SI from the start
d=0.16E-3 # diameter in m
V=4./3. * pi * (d/2)**3    # volume in m^3
print V,'m^3'