Notebook
def Daisyworld(Total_Time, albedo_flower = 0.75):
return time,frac_flower,Te
# Set up a time array that starts at 0 and ends at Total_Time, specified as a function argument. time = numpy.arange(0,Total_Time,1) # Define arrays full of zeros to store the output variables # fractional coverage of daisies frac_flower = numpy.zeros(len(time)) # surface temperature Te = numpy.zeros(len(time)) # Set the initial condition for flowers frac_flower[0] = #??? # Set the initial condition for temperature Te[0] = #???