# simple inhibition process
inh1 = rinter(npoints=200,thetas=0,deltas=0.05,thetat=0,deltat=0.001,
inhibition=TRUE)
plot(inh1$xyt,style="elegant")
# \donttest{
# inhibition process using hs and ht defined by the user
hs = function(d,theta,delta,mus=0.1)
{
res=NULL
a=(1-theta)/mus
b=theta-a*delta
for(i in 1:length(d))
{
if (d[i]<=delta) res=c(res,theta)
if (d[i]>(delta+mus)) res=c(res,1)
if (d[i]>delta & d[i]<=(delta+mus)) res=c(res,a*d[i]+b)
}
return(res)
}
ht = function(d,theta,delta,mut=0.3)
{
res=NULL
a=(1-theta)/mut
b=theta-a*delta
for(i in 1:length(d))
{
if (d[i]<=delta) res=c(res,theta)
if (d[i]>(delta+mut)) res=c(res,1)
if (d[i]>delta & d[i]<=(delta+mut)) res=c(res,a*d[i]+b)
}
return(res)
}
d=seq(0,1,length=100)
plot(d,hs(d,theta=0.2,delta=0.1,mus=0.1),xlab="",ylab="",type="l",
ylim=c(0,1),lwd=2,las=1)
lines(d,ht(d,theta=0.1,delta=0.05,mut=0.3),col=2,lwd=2)
legend("bottomright",col=1:2,lty=1,lwd=2,legend=c(expression(h[s]),
expression(h[t])),bty="n",cex=2)
inh2 = rinter(npoints=100, hs=hs, gs="min", thetas=0.2, deltas=0.1,
ht=ht, gt="min", thetat=0.1, deltat=0.05, inhibition=TRUE)
animation(inh2$xyt, runtime=15, cex=0.8)
# simple contagious process for given spatial and temporal regions
data(northcumbria)
cont1 = rinter(npoints=100, s.region=northcumbria, t.region=c(1,200),
thetas=0, deltas=10000, thetat=0, deltat=10, recent=1, inhibition=FALSE)
plot(cont1$xyt,pch=19,s.region=cont1$s.region,mark=TRUE,mark.col=4)
# }
Run the code above in your browser using DataLab