Giter VIP home page Giter VIP logo

tolerantspecies's Introduction

Tolerant Species Model

Inspired by the dead leaves model, this piece of code simulates geometric aspects of plant community assembly through the use of a random placement model and a minimal set of rules.

How it works

The simulation starts by building a pool of n.species, where each species is shape and a shadow tolerance from a uniform distribution.

Then for each iteration, an individual leaf (ellipse) is created from a random species in the pool, assigned a size from a power distribution and randomly placed on the matrix, underneath all existing leaves (from top to bottom). The individual is then either kept or removed from the matrix depending on the amount of light it receives (overlap with other leaves) and it's shadow tolerance. Albedos are assigned randomly and do not influence the simulation.

This process is repeated until either max.iterations or max.cover is reached.

Example code

source("lib.R")
source("TolerantSpecies.R")
community = Tolerant.Species(matrix.size=200, max.cover=.75,n.species=3)
pal = colorRampPalette(colors=c("black","green","white"))
image(community$matrix, col=pal(community$nb.leaves),useRaster=TRUE)

Also see Example.Simulation.R for a more complete simulation example.

Default parameters

matrix.size = 250 # matrix side length
sigma = 3 # power distribution parameter
rmin = 0.01 # minimum relative size of the ellipse major-axis compared to the matrix
rmax = 1, # minimum relative size of the ellipse major-axis compared to the matrix
max.cover = .75
n.species = 10
max.iterations = 100000

tolerantspecies's People

Contributors

cmartin avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.