14.6. A battle between two bottles#

Author: Freek Pols
Time: 10 minutes
Age group: 14 - 18
Concepts: Bernoulli, fluid pressure
../../_images/demo41_figure2.jpg

Introduction#

This demonstration was inspired by a question from the Dutch National Science Quiz: Which bottle empties faster, one with a long nozzle or one with a short nozzle? The demonstration is excellent for encouraging students to articulate their thoughts (why do you think so) or to explain Bernoulli’s law.

Equipment#

  • Two sturdy PET bottles without bottoms;

  • One bottle has a short nozzle/tube attached to the cap, the other a long nozzle;

  • A stand with two clamps;

  • A bucket or drip tray;

  • Water

Preparation#

  • Remove the bottoms of the PET bottles. Secure the tubes in the caps using a glue gun.

  • Place the PET bottles in the stand as shown in the photo with the spouts facing downward.

  • Ask a student to keep the tubes closed with their fingers to prevent the water from flowing out (see Figure 14.13 (left)). Fill both bottles to the same height with water.

  • Position the bucket or drip tray beneath the bottles to keep the classroom dry!

Procedure#

Let students predict and explain which bottle they think will empty faster. Encourage them to explain their predictions thoroughly. Once enough ideas have been collected and no further ideas or explanations are forthcoming, have the student simultaneously release the tubes and let the bottles empty (see Figure 14.13 (middle)).

The bottle with the longer tube empties first (see Figure 14.13 (right)).

../../_images/demo41_figure1.png

Fig. 14.13 The various stages of the demonstration.
left The setup just before conducting the experiment.
middle: Immediately after removing the fingers, the bottles start to empty.
right: As less water remains in the bottle, the differences become clearer.
#

Physics background#

The greater the height difference between the water surface and the outlet, the greater the water pressure at the outlet. Greater pressure results in a higher flow rate. For upper grades, you can use the Bernoulli equation, comparing the top of the water column and the point where the water exits the bottle (both are part of the same streamline). It is expressed as: \(\rho g\Delta h = 1/2 \rho v^2\).

The pressure above and below the water column is equal (open to the air).

The effect of friction is less significant than the effect of the water height.

For a public event or lower grades, the following reasoning can also be used: The more fluid above you, the greater the pressure. This can be felt, for example, when diving in a pool, which may cause your ears to pop. Greater pressure also means a greater outflow speed.

Follow-up#

It is possible to simulate the process of emptying the bottles. Below we have made this python simulation. Not that the flow rate \(Q = Av = A_{tube}\sqrt{2gh}\) and the difference in height is \(\Delta V = Q\Delta t = A_{top}\Delta h\). Note that the emptying of the tube at the end is not included in the simulation.

import numpy as np
import matplotlib.pyplot as plt

g = 9.8 #m/s2
A_top = 50 #cm2
H_0 = 20 #cm

A_tube = 1 #cm2
L_tube_1 = 5 #cm
L_tube_2 = 10 #cm

h1 = []
h1.append(H_0)
h2 = []
h2.append(H_0)
t = []
t.append(0)
dt = 1 #s
v1 = []
v2 = []
i = 0

while min(h1[i],h2[i])>0:
    v1.append(np.sqrt(2*g*(h1[i]+L_tube_1)))
    v2.append(np.sqrt(2*g*(h2[i]+L_tube_2)))
               
    Q1 = A_tube * v1[i] * dt
    Q2 = A_tube * v2[i] * dt

    h1.append(h1[i] - Q1 / A_top * dt)
    h2.append(h2[i] - Q2 / A_top * dt)
              
    t.append(t[i] + dt)
    i += 1

# Plotting the simulation
plt.figure( )
plt.plot(t, h1, 'k.', label='short tube')
plt.plot(t, h2, 'r.', label='long tube')

plt.xlabel('Time (s)')
plt.ylabel('Height (cm)')
plt.legend()
plt.show()
../../_images/6ddb9d97401870e648edfda3976bc635918a9e4b7018e7a329e4aaa06de6ddaa.png