longevity of adults in prey predator system

Use this forum to post Vensim related questions.
Post Reply
royafarhadi
Junior Member
Posts: 2
Joined: Tue Dec 09, 2014 10:45 pm
Vensim version: PLE

longevity of adults in prey predator system

Post by royafarhadi »

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,
Attachments
populatin.mdl
population model
(3.01 KiB) Downloaded 434 times
bppro
Junior Member
Posts: 14
Joined: Wed Nov 06, 2013 2:06 pm
Vensim version: DSS

Re: longevity of adults in prey predator system

Post by bppro »

If longevity is known, why don't you formulate deaths as adults/longevity?
Administrator
Super Administrator
Posts: 4841
Joined: Wed Mar 05, 2003 3:10 am

Re: longevity of adults in prey predator system

Post by Administrator »

The previous post is correct,

Code: Select all

deaths = adults / longivity
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 = 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
LAUJJL
Senior Member
Posts: 1477
Joined: Fri May 23, 2003 10:09 am
Vensim version: DSS

Re: longevity of adults in prey predator system

Post by LAUJJL »

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
Attachments
predator.mdl
(3.81 KiB) Downloaded 453 times
bppro
Junior Member
Posts: 14
Joined: Wed Nov 06, 2013 2:06 pm
Vensim version: DSS

Re: longevity of adults in prey predator system

Post by bppro »

Administrator wrote:The previous post is correct,

Code: Select all

deaths = adults / longivity
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 = min ( adults / time step , adults / longivity )

You should also add units to your model.
Since "adults" has first-order negative feedback control, I do not believe the MIN function to be required.
tomfid
Administrator
Posts: 3995
Joined: Wed May 24, 2006 4:54 am

Re: longevity of adults in prey predator system

Post by tomfid »

Since "adults" has first-order negative feedback control, I do not believe the MIN function to be required.
Correct - assuming that longevity >= TIME STEP, which should definitely be the case.

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.
Post Reply