Logistic process: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 44: | Line 44: | ||
//var y = alpha.X()*t.pos[1]*(A-t.pos[1]); // Autocatalytic process | //var y = alpha.X()*t.pos[1]*(A-t.pos[1]); // Autocatalytic process | ||
var y = (alpha.X()*t.pos[1]-tau*t.pos[1]*t.pos[1]); // Logistic process | var y = (alpha.X()*t.pos[1]-tau*t.pos[1]*t.pos[1]); // Logistic process | ||
t. | t.lookTo([1.0+t.pos[0],y+t.pos[1]]); | ||
t.fd(delta*Math.sqrt(1+y*y)); | |||
x += delta; | x += delta; | ||
if (x<10.0) { | if (x<10.0) { | ||
Line 83: | Line 84: | ||
function loop() { | function loop() { | ||
var y = (alpha.X()*t.pos[1]-tau*t.pos[1]*t.pos[1]); // Logistic process | var y = (alpha.X()*t.pos[1]-tau*t.pos[1]*t.pos[1]); // Logistic process | ||
t. | t.lookTo([1.0+t.pos[0],y+t.pos[1]]); | ||
t.fd(delta*Math.sqrt(1+y*y)); | |||
x += delta; | x += delta; | ||
if (x<10.0) { | if (x<10.0) { |
Revision as of 12:56, 23 April 2009
Logistic population growth model
In time [math]\displaystyle{ \Delta t }[/math] the population grows by [math]\displaystyle{ \alpha\cdot y -\tau\cdot y^2) }[/math] elements: [math]\displaystyle{ \Delta y = (\alpha\cdot y- \tau\cdot y^2)\cdot \Delta t }[/math], that is [math]\displaystyle{ \frac{\Delta y}{\Delta t} = \alpha\cdot y -\tau\cdot y^2 }[/math].
With [math]\displaystyle{ \Delta \to 0 }[/math] we get [math]\displaystyle{ \frac{d y}{d t} = \alpha\cdot y -\tau\cdot y^2 }[/math], i.e. [math]\displaystyle{ y' = \alpha\cdot y -\tau\cdot y^2 }[/math].
The initial population is [math]\displaystyle{ y(0)= s }[/math], [math]\displaystyle{ \tau:=0.3 }[/math].
The blue line is the simulation with [math]\displaystyle{ \Delta t = 0.1 }[/math].
The JavaScript code
<jsxgraph height="500" width="600" board="board" box="box1">
brd = JXG.JSXGraph.initBoard('box1', {originX: 10, originY: 250, unitX: 40, unitY: 20, axis:true});
var t = brd.createElement('turtle',[4,3,70]);
var s = brd.createElement('slider', [[0,-5], [10,-5],[-5,0.5,5]], {name:'s'});
var alpha = brd.createElement('slider', [[0,-6], [10,-6],[-1,0.2,2]], {name:'α'});
var e = brd.createElement('functiongraph', [function(x){return s.X()*Math.exp(alpha.X()*x);}],{strokeColor:'red'});
t.hideTurtle();
A = 5;
function clearturtle() {
t.cs();
t.ht();
}
function run() {
t.setPos(0,s.X());
t.setPenSize(4);
delta = 0.1; // global
x = 0.0; // global
loop();
}
function loop() {
var y = (alpha.X()*t.pos[1]-tau*t.pos[1]*t.pos[1]); // Logistic process
t.lookTo([1.0+t.pos[0],y+t.pos[1]]);
t.fd(delta*Math.sqrt(1+y*y));
x += delta;
if (x<10.0) {
setTimeout(loop,50);
}
}
</jsxgraph>