Hi
I am, PhD scholar of entomology. My thesis is about prey and predator. I would like to develop a vensim model.
I’ve calculated the longevity of adults. I’d like to know how I can use it in. I want to remove produced adults from model cycle gradually,
longevity of adults in prey predator system
-
- Junior Member
- Posts: 2
- Joined: Tue Dec 09, 2014 10:45 pm
- Vensim version: PLE
longevity of adults in prey predator system
- Attachments
-
- populatin.mdl
- population model
- (3.01 KiB) Downloaded 434 times
Re: longevity of adults in prey predator system
If longevity is known, why don't you formulate deaths as adults/longevity?
-
- Super Administrator
- Posts: 4841
- Joined: Wed Mar 05, 2003 3:10 am
Re: longevity of adults in prey predator system
The previous post is correct,
To make sure you keep the "adults" stock positive, use the following equation (it takes everything from the stock, or what it needs).
You should also add units to your model.
Code: Select all
deaths = adults / longivity
Code: Select all
deaths = min ( adults / time step , adults / longivity )
You should also add units to your model.
Advice to posters seeking help (it really helps us to help you)
http://www.ventanasystems.co.uk/forum/v ... f=2&t=4391
Units are important!
http://www.bbc.co.uk/news/magazine-27509559
http://www.ventanasystems.co.uk/forum/v ... f=2&t=4391
Units are important!
http://www.bbc.co.uk/news/magazine-27509559
Re: longevity of adults in prey predator system
HI
Here is joined a possible model. I have added units and use strictest unit testing (in the unit setting window). You should study and understand them. I have too added minimum, maximum and increment to the constants to be able to make them vary with the synthesim and added two graphs for the levels. You should use intensively the synthesim to build multiple scenarios and understand for each of them the behavior of each of the variables. One good idea is to override the behavior of any variable while in synthesim mode by right clicking on the variable if you have this feature implemented in your Vensim version. Using this model fully will take quite a time and will help you in building a more complete model.
Regards.
JJ
Here is joined a possible model. I have added units and use strictest unit testing (in the unit setting window). You should study and understand them. I have too added minimum, maximum and increment to the constants to be able to make them vary with the synthesim and added two graphs for the levels. You should use intensively the synthesim to build multiple scenarios and understand for each of them the behavior of each of the variables. One good idea is to override the behavior of any variable while in synthesim mode by right clicking on the variable if you have this feature implemented in your Vensim version. Using this model fully will take quite a time and will help you in building a more complete model.
Regards.
JJ
- Attachments
-
- predator.mdl
- (3.81 KiB) Downloaded 453 times
Re: longevity of adults in prey predator system
Since "adults" has first-order negative feedback control, I do not believe the MIN function to be required.Administrator wrote:The previous post is correct,
To make sure you keep the "adults" stock positive, use the following equation (it takes everything from the stock, or what it needs).Code: Select all
deaths = adults / longivity
Code: Select all
deaths = min ( adults / time step , adults / longivity )
You should also add units to your model.
Re: longevity of adults in prey predator system
Correct - assuming that longevity >= TIME STEP, which should definitely be the case.Since "adults" has first-order negative feedback control, I do not believe the MIN function to be required.
Some possible examples:
http://models.metasd.com/lotka-volterra/ the classic LV model
http://models.metasd.com/early-warnings-of-catastrophe/ a version with separate adult and juvenile cohorts
http://models.metasd.com/bifurcating-salmon/ a fisheries model with separate age cohorts and discrete time
The source literature for these might also provide some good references.
/*
Advice to posters (it really helps us to help you)
http://www.ventanasystems.co.uk/forum/v ... f=2&t=4391
Blog: http://blog.metasd.com
Model library: http://models.metasd.com
Bookmarks: http://delicious.com/tomfid/SystemDynamics
*/
Advice to posters (it really helps us to help you)
http://www.ventanasystems.co.uk/forum/v ... f=2&t=4391
Blog: http://blog.metasd.com
Model library: http://models.metasd.com
Bookmarks: http://delicious.com/tomfid/SystemDynamics
*/