Skip to content
Snippets Groups Projects
Commit 22bb1f6f authored by thierrychambert's avatar thierrychambert
Browse files

set rMAX_species to 3x the theoretical value (instead of Inf)

parent ca28ae27
No related branches found
No related tags found
No related merge requests found
......@@ -1503,8 +1503,9 @@ server <- function(input, output, session){
},{
# Define a limit for rMAX (theoretical formula from Niel & Lebreton 2005) or No limit (Inf)
# rMAX_species <- rMAX_spp(surv = tail(param$survivals,1), afr = min(which(param$fecundities != 0)))
rMAX_species <- Inf
rMAX_species <- rMAX_spp(surv = tail(param$survivals,1), afr = min(which(param$fecundities != 0)))
rMAX_species <- rMAX_species*3 # avoid too much constraint
#rMAX_species <- Inf
param$rMAX_species <- rMAX_species
# Apply rmax limit on population growth rate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment