Subtopics:AbstractIntroduction A Simple Model Algorithm Results Conclusions References Further Illustrations Source Code Related Links:Article by Paul Hoffman and Daniel Schrag in Scientific AmericaA great illustration.
|
![]() Abstract:Recently, geological evidence has been found to suggest that early in Earth's history there was a period in which the Earth was completely covered in ice. This period was first termed "Snowball Earth" in 1992 by Joseph L. Kirschvink, a geobiologist at the California Institute of Technology. Kirschvink pointed out that during a period of global glaciation, the liquid water required for the erosion of rocks and consumption of atmospheric carbon dioxide would be trapped in ice, however the production of carbon dioxide would continue as would tectonic plate motion and the formation of volcanoes. This production without consumption would cause a surplus of carbon dioxide, a greenhouse gas, and Kirschvink hypothesized, grow thick enough to substantially heat the planet and thereby bring an end to the global glaciation. To date, there has been no mathematical model to support this qualitative theory of our early Earth. In this paper, I outline an initial attempt to simulate the "Snowball Earth Effect" based on a very simple climate model. Although this is a crude model, it does demonstrate the basic phenomenon behind the theory of Snowball Earth, and I believe will serve as a stepping stone for more accurate (and hopefully more complex) simulations.Introduction:In August of 1998, the theory of a "Snowball Earth" was first introduced in the journal Science by a group of researchers including Paul Hoffman, Alan Kaufman, and Daniel Schrag. The idea has had cautious support in the scientific community, and has recently been a topic of increasing interest. As the theory goes, between 750 million and 580 million years ago, Earth froze over like a cosmic snowball for some 10 million years. The ice covered planet lacked the water necessary for erosion and was thereby unable to remove atmospheric carbon dioxide. The levels of carbon dioxide in the atmosphere continued to build during this time as tectonic plate motion formed CO2 producing volcanoes. Over time, this heat trapping greenhouse gas caused the surface temperature on Earth to rise until the ice began to melt. Once underway, the Earth thaws very rapidly on a geological time scale - only a few hundred years. The Earth's climate however has now shifted from one extreme to another, from completely covered in ice to an inferno of a greenhouse effect! This severe climate reversal is believed to have happened as many as four times before stabilizing into less dramatic climate fluctuations. This theory has been extensively developed over the past eight years as geological evidence was uncovered in thick layers of ancient rock. Among other clues, this rock suggested that the Neoproterozoic oceans and atmosphere contained little or no oxygen, and that there was a prolonged drop in biological activity, both indicating a prolonged period of global glaciation.To date, this theory has only been developed qualitatively with researchers focusing on piecing together the geological evidence into a reasonable story for our Earth's history. However, a mathematical or numerical model is needed to solidify these ideas into a more persuasive form, and essential before the theory will have wide spread acceptance. A Simple Model:The goal of this project has been to devise the simplest climate model possible, while complex enough to still produce the "Snowball Earth Effect." As a result, there are many obvious factors that would undoubtedly contribute to the onslaught of a snowball Earth that have been intentionally left out, including oceanic currents, regional and seasonal surface temperature variations, and currently solar intensity (however I intend to add that later on). The model I have adopted includes only surface temperature, albedo, and optical depth. It is summarized in the following dependency diagram.![]() Algorithm:The following is the preliminary algorithm I have devised based on the above to simulate the snowball Earth effect. This is a schematic representation for explanation purposes. If you are interested in viewing the actual source code, it is available upon request only. Please click here for more information.begin main code // main loop for all dependent functions set initial conditions for CO2 , H2O, To, and T (represented as Tg / To) for past to present // for loop beginning 800 million years ago and iterating forward in increments of 10,000 years Albedo
( function of T )
loop end main code Quite simply, the main code is a loop representing the forward progression of time. It contains functions for calculating the individual contributions of albedo and optical depth (and their dependencies) to the overall surface temperature. All of the above functions are assuming averages over the entire planet. In other words, albedo should be understood as the average albedo over the Earth, surface temperature being the average temperature of the planet, and so on. A more accurate model would perhaps calculate the above values for localized patches of the Earth and then integrate over the entire surface. Below the functions in the main code are outlined in greater detail. begin function code // code for the functions outlined above begin Albedo
begin CO2
begin H2O
begin Optical depth
begin Surface Temperature
end function code These functions together form what I believe to be the simplest possible
mathematical model for the "Snowball Earth Effect." A more complex
model would undoubtedly include solar intensity (varying with time as it
has increased approximately six percent from 800 million years ago), oceanic
currents (redistributing heat over the plant), and seasonal variations.
Unforntunately, the higher the order of complexity in climate modeling
the more chaotic it becomes, to the point of making the project a study
of Chaos Theory rather than one of an evolving Earth.
Results:The following graphs show the results of simulations run under four sets of conditions; 1) a control run with conditions set at those of the present day Earth to demonstrate that our environment is a stable solution, 2) a cold situation beginning at 252 K with initial carbon dioxide concentrations equal to today's levels, 3) a hot situation beginning at 308 K again with initial carbon dioxide concentrations the same as today, and finally 4) a frozen situation beginning at 240 K with initial carbon dioxide concentrations equal to twice that of today's levels.1) Control
2) Cold Situation
3) Hot Situation
4) Frozen Situation
Conclusions:In conclusion, although this is a relatively simplistic numerical model, it indeed supports the present day theory of "Snowball Earth," and in so doing serves to enhance the possibility that at one time the Earth was in fact a cosmic snowball for millions of years. I would hope that from this initial simulation, others might build a more thorough model to help better explain this very interesting phenomenon in our Earth's history.
1. Hoffman, P., Schrag D., "Snowball Earth," Scientific
American, January (2000).
|