Notebook
# Define the albedos of flowers and the albedo of soil (unitless) albedo_flower = 0.75 albedo_soil = 0.4 # The fraction covered by soil is the rest of the planet, or 1.0 - the fraction covered by flowers frac_soil = 1.0 - frac_flower # The albedo is the sum of the two albedos after each has been multiplied by its fractional coverage. albedo = frac_soil * albedo_soil + frac_flower * albedo_flower # Define the solar flux on Daisyworld, in W/m2 S = 3700.0 # Define the Stefan-Boltzmann constant, in W/m2/K4 sigma = 5.67e-8 # Define the temperature as a function of the albedo Te = ((S*(1-albedo))/(4*sigma))**0.25 # Test condition for temperature and calculate growth rate if Te <= 281: growth_rate=0 elif Te < 310: growth_rate=1-0.005*(295.5-Te)**2 else: growth_rate=0

This website does not host notebooks, it only renders notebooks available on other websites.

Delivered by Fastly, Rendered by OVHcloud

nbviewer GitHub repository.

nbviewer version: 8b013f7

nbconvert version: 7.2.3

Rendered (Sat, 04 May 2024 02:59:37 UTC)