Great Pacific Garbage Patch

Why does trash in the Great Pacific Garbage Patch just keep swirling around and around instead of landing on a beach somewhere?
Background information
Ever since there were humans, there was garbage left behind by humans. Some of that garbage would get into rivers which would take it out to the oceans.
What is different in our age is (1) there are a lot of humans – over eight billion, and (2) a lot of the garbage that we produce is in the form of plastic. This latter fact is important because any material that has a lower density than water will float.
Key science fact:
Any material with a lower density than water will float
Density
The density of a material is a measure of how much mass there is compared to how much volume there is of that material. For example, styrofoam is a low density material because you can have a lot of Styrofoam and it is not very heavy. So its mass is small compared to its volume. Whereas lead or gold are high density materials because one brick of lead or gold would be very heavy. So its mass is large compared to its volume.
In general, density (\(\rho\)) is the ratio of the mass of an object to the volume of that object.
\[ \rho = \frac{m}{V} \]
We use the symbol \(\rho\) to represent the density. It looks like the letter p but it is actually a greek symbol that is pronounced “rho” or “row”. Objects of a particular material will generally have the same density of other objects made from that material. Density can be reported in terms of grams per cubic centimeter (g/cm3), grams per milliLiter (g/mL), or kilograms per meter cubed (kg/m3). Grams per cubic centimeter and grams per cubic milliLiter are the same because a cubic centimeter is the same volume as a milliLiter.
Fresh water has a density of 1 gram per cubic centimeter (1 gram per milliLiter) while sea water has a density of 1.02 grams per cubic centimeter (1.02 grams per milliLiter).
Key science fact:
The density of fresh water is 1 gram per cubic centimter
Many plastics have a density less than this. According to this pdf, which was fact checked by the Monterey Bay Aquarium foundation, many plastics have a density in the range of 0.9 grams per cubic centimeter to 0.96 grams per cubic centimeter. These plastics will therefore float in water unless it is attached to a denser material like a metal. Most metals have significantly larger densities than water. For example, aluminum is one of the least dense metals and it is still almost three times denser than water. Consequently, metals tend to sink.
The Great Pacific Garbage Patch
It turns out that ocean currents often have a circulating pattern which is called a “gyre”. Ocean currents circulate and form gyres because water gets heated by the sun near the equator and that warm water travels away from the equator where it will cool down.
In the 1990s scientists and boaters began to notice that floating plastic trash was strewn throughout a large area of the Pacific Ocean called the North Pacific gyre. Don’t imagine floating islands of trash. Instead imagine a piece of trash here and a piece of trash there over a very large area. Groups like The Ocean Cleanup are working to remove the trash (as you can see in the image at the top of this page) but it remains a problem and there are also “microplastics” that are too small to remove with nets.
What is interesting and not particularly obvious is that floating garbage would collect in the North Pacific gyre and stay there for decades or more. Think about an individual piece of floating trash in the Great Pacific Garbage Patch. Why doesn’t this trash end up on a beach somewhere after a year or two, or three? This is something that a p5.js computer simulation can help us understand! (Note: sometimes trash from the Great Pacific Garbage patch does end up on a beach but it is rare and most of the trash just floats there year after year.)
The simulation above contains a mathematical model for an ocean gyre that comes from Section 6 of this research paper. The little white dots are supposed to be pieces of garbage. The black arrows show the direction of ocean currents. It’s not important that you understand the model or the paper. What is important is that the simulation above includes this code:
x[i] += vx(x[i],y[i],t)*dt; y[i] += vy(x[i],y[i],t)*dt;
which is a very fancy version of the code below which you might recognize from Move the blob or many of the other p5.js Physics of Video games activities
x += vx*dt; y += vy*dt;
In the simulation above, (x,y) is the position of a piece of garbage. That position changes according to the velocity of the ocean currents in the x direction (vx) and in the y direction (vy) multiplied by the time during each step (dt)
THE IMPORTANT THING IS THAT THE LITTLE WHITE PIECES OF TRASH KEEP CIRCULATING!!! There is actually some code in the simulation that checks if a piece of trash leaves the rectangle and if it does leave it is prevented from coming back. Remarkably, if you run the simulation for a long time, maybe one piece of trash out of 100 will leave the rectangle and not come back. This is true even though the ocean currents are changing with time as you can see from the changing arrows!
Interestingly, it only takes some simple code to update the x and y position of the trash to come to this conclusion. Sometimes a little bit of code can answer questions that would otherwise be very difficult to answer!
Optional hands on activity
Take as many different kinds of plastic as you can find and check to see which types of plastic (for example #1, #2, #3, #4, #5 or #6 plastic) will float and which will sink. Bear in mind that sea water is slightly more dense that fresh water. To be more precise you can dissolve table salt in the water and do the test again.
Questions to consider
What do you think about the approach of The Ocean Cleanup to remove trash from the oceans? What have been the difficulties they have run into? What is their approach now? What ideas do you have to remove or otherwise prevent trash from accumulating in the oceans?
Understanding ocean currents saves lives! Listen to this podcast about Art Allen who developed a computer program for the US Coast Guard that is used in emergencies when people fall off of a boat or a ship so that rescuers can anticipate the location of a person who is floating in the water. Thanks to his work, many people have been saved who would otherwise have been lost at sea. As a society, are we doing enough to celebrate people like Art? What is a life or death issue in our society that would benefit from the kind of careful technical work that Art did? What is another example of how basic scientific understanding (like research on ocean currents) ultimately benefits our lives even if that was not the original goal?
Advanced Questions
Look at the code that is running the simulation. How much of it can you make sense of? Which parts are you unable to make sense of? Can you simplify the code or make its syntax easier for another student to understand?
Look at Section 6 of the research paper where the model for the gyre is presented. Do the plots in that section look familiar? How much of the model (Equations 71 - 76) contains math that you have seen before? If we didn’t have a computer, Equation 77 would be all we have to explain why trash just keeps circulating. What does the research paper say about Equation 77 and what does Equation 77 conclude?