{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Lab 5: Daisyworld" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## List of Problems\n", "\n", "\n", "[Problem Constant](#prob_constant): Daisyworld with a constant growth rate\n", "\n", "[Problem Coupling](#prob_coupling): Daisyworld of neutral daisies coupled to\n", "the temperature\n", "\n", "[Problem Conduction](#prob_conduction): Daisyworld steady states and the effect\n", "of the conduction parameter R\n", "\n", "[Problem Initial](#prob_initial): Daisyworld steady states and initial\n", "conditions\n", "\n", "[Problem Temperature](#prob_temperature): Add temperature retrieval code\n", "\n", "[Problem Estimate](#prob_estimate): Compare the error estimate to the true\n", "error\n", "\n", "[Problem tolerances](#prob_tolerances) User specified error tolerances in\n", "stepsize control\n", "\n", "[Problem Adaptive](#prob_adaptive): Adaptive Timestep Code\n", "\n", "[Problem Predators](#prob_predator): Adding predators to Daisyworld\n" ] }, { "cell_type": "markdown", "metadata": { "lines_to_next_cell": 0 }, "source": [ "## Assignment\n", "\n", "Upload a jupyter notebook that solves the following problems -- if you\n", "want to import your own module code, include that with the notebook\n", "in a zipfile\n", "\n", "\n", "Undergrads: Upload a notebook (and, if you modify library files, include that)\n", "* A409: do Problems 1 (constant), 2 (coupling), 4 (initial), 5 (temperature), 6 (estimate)\n", "* E511: do Problems 1 (constant), 2 (coupling), 4 (initial), 5 (temperature), 6 (estimate), 8 (adaptive), 9 (predators)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "## Objectives\n", "\n", "In this lab, you will explore a simple environmental model,\n", "*Daisyworld*, with the help of a Runge-Kutta method with\n", "adaptive stepsize control.\n", "\n", "The goal is for you to gain some experience using a Runge-Kutta\n", "integrator and to see the advantages of applying error control to the\n", "algorithm. As well, you will discover the the possible insights one can\n", "garner from the study of numerical solutions of a physical model.\n", "\n", "In particular you will be able to:\n", "\n", "- explain how the daisies affect the climate in the daisy world model\n", "\n", "- define adaptive step-size model\n", "\n", "- explain for what reasons an adaptive step-size model maybe faster\n", " for given accuracy\n", "\n", "- explain why white daisies (alone) can survive at a higher solar\n", " constant than black daisies\n", "\n", "- define hysteresis" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "## Readings\n", "\n", "There is no required reading for this lab, beyond the contents of the\n", "lab itself. However, if you would like additional background on any of\n", "the following topics, then refer to the sections indicated below:\n", "\n", "- **Daisy World:**\n", "\n", " - The original article by [Watson and Lovelock, 1983](http://ezproxy.library.ubc.ca/login?url=http://onlinelibrary.wiley.com/enhanced/doi/10.1111/j.1600-0889.1983.tb00031.x) which derive the equations used here.\n", "\n", " - A 2008 Reviews of Geophysics article by [Wood et al.](http://ezproxy.library.ubc.ca/login?url=http://doi.wiley.com/10.1029/2006RG000217) with more recent developments (species competition, etc.)\n", "\n", "- **Runge-Kutta Methods with Adaptive Stepsize Control:**\n", "\n", " - Newman, Section 8.4\n", "\n", " - Press, et al. Section 16.2: these are equations we implemented in Python,\n", " [scanned pdf here](pdfs/adapt_ode.pdf)\n", "\n", " - Burden & Faires Section 5.5" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "## Introduction\n", "\n", "It is obvious that life on earth is highly sensitive to the planet’s\n", "atmospheric and climatic conditions. What is less obvious, but of great\n", "interest, is the role biology plays in the sensitivity of the climate.\n", "This is dramatically illustrated by the concern over the possible\n", "contribution to global warming by the loss of the rain forests in\n", "Brazil.\n", "\n", "The fact that each may affect the other implies that the climate and\n", "life on earth are interlocked in a complex series of feedbacks, i.e. the\n", "climate affects the biosphere which, when altered, then changes the\n", "climate and so on. A fascinating question arises as to whether or not\n", "this would eventually lead to a stable climate. This scenerio is\n", "exploited to its fullest in the *Gaia* hypothesis which\n", "postulates that the biosphere, atmosphere, ocean and land are all part\n", "of some totality, dubbed *Gaia*, which is essentially an\n", "elaborate feedback system which optimizes the conditions of life here on\n", "earth.\n", "\n", "It would be hopeless to attempt to mathematically model such a large,\n", "complex system. What can be done instead is to construct a ’toy model’\n", "of the system in which much of the complexity has been stripped away and\n", "only some of the relevant characteristics retained. The resulting system\n", "will then be tractable but, unfortunately, may bear little connection\n", "with the original physical system.\n", "\n", "Daisyworld is such a model. Life on Daisyworld has been reduced to just\n", "two species of daisies of different colors. The only environmental\n", "condition that affects the daisy growth rate is temperature. The\n", "temperature in turn is modified by the varying amounts of radiation\n", "absorbed by the daisies.\n", "\n", "Daisyworld is obviously a gross simplification of the real earth.\n", "However, it does retain the central feature of interest: a feedback loop\n", "between the climate and life on the planet. Since the equations\n", "governing the system will be correspondingly simplified, it will allow\n", "us to investigate under what conditions, if any, that equilibrium is\n", "reached. The hope is that this will then gain us some insight into how\n", "life on the real earth may lead to a stable climate." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "## The Daisyworld Model\n", "\n", "Daisyworld is populated by two types of daisies, one darker and the\n", "other lighter than the bare ground. As with life on earth, the daisies\n", "will not grow at extreme temperatures and will have optimum growth at\n", "moderate temperatures.\n", "\n", "The darker, ’black’ daisies absorb more radiation than the lighter,\n", "’white’ daisies. If the black daisy population grows and spreads over\n", "more area, an increased amount of solar energy will be absorbed, which\n", "will ultimately raise the temperature of the planet. Conversely, an\n", "increase in the white daisy population will result in more radiation\n", "being reflected away, lowering the planet’s temperature.\n", "\n", "The question to be answered is:\n", "\n", "**Under what conditions, if any, will the daisy population and\n", " temperature reach equilibrium?**" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "### The Daisy Population\n", "\n", "The daisy population will be modeled along the lines of standard\n", "population ecology models where the net growth depends upon the current\n", "population. For example, the simplest model assumes the rate of growth\n", "is proportional to the population, i.e.\n", "\n", "\n", "\n", "$$\n", "\\frac{dA_w}{dt} = k_w A_w\n", "$$\n", "\n", "$$\n", "\\frac{dA_b}{dt} = k_b A_b\n", "$$\n", "\n", "where $A_w$\n", "and $A_b$ are fractions of the total planetary area covered by the white\n", "and black daisies, respectively, and $k_i$, $i=w,b$, are the white and\n", "black daisy growth rates per unit time, respectively. If assume the the\n", "growth rates $k_i$ are (positive) constants we would have exponential\n", "growth like the bunny rabbits of lore.\n", "\n", "We can make the model more realistic by letting the daisy birthrate\n", "depend on the amount of available land, i.e. $$k_i = \\beta_i x$$ where\n", "$\\beta_i$ are the white and black daisy growth rates per unit time and\n", "area, respectively, and $x$ is the fractional area of free fertile\n", "ground not colonized by either species. We can also add a daisy death\n", "rate per unit time, $\\chi$, to get\n", "\n", "\n", "\\textbf{eq: constantgrowth}\n", "$$\n", "\\frac{dA_w}{dt} = A_w ( \\beta_w x - \\chi)\n", "$$\n", "\n", "\n", "$$\n", "\\frac{dA_b}{dt} = A_b ( \\beta_b x - \\chi)\n", "$$\n", "\n", "However, even these small modifications are non-trivial mathematically\n", "as the available fertile land is given by,\n", "$$\n", " x = 1 - A_w - A_b\n", "$$\n", "\n", "(assuming all the land mass is fertile) which\n", "makes the equations non-linear." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "