Displaying 2 results from an estimated 2 matches for "lagvalue".
2018 Apr 18
2
Event-triggered change in value with a time-delay
...es/deSolve.pdf> p.
24-25), the time at which the event happens is either pre-set or occurs at
a root of the ODE. Also- would this strategy require multiple events? One
event in which the variable crossing the threshold triggers a timer,
another for the timer triggering the parameter change?
3. Lagvalue. This might take care of the time lag component, but I am still
struggling to understand (1) how lagvalue works and (2) how to integrate
both the threshold and timer components.
if ( D < D_T )
m<- ifelse(lagvalue(t-delay)<=0, 6.8, 10)
end
4. Sigmoidal function. Someone suggest...
2018 Apr 18
0
Event-triggered change in value with a time-delay
...25), the time at which the event happens is either pre-set or occurs at
> a root of the ODE. Also- would this strategy require multiple events? One
> event in which the variable crossing the threshold triggers a timer,
> another for the timer triggering the parameter change?
>
> 3. Lagvalue. This might take care of the time lag component, but I am still
> struggling to understand (1) how lagvalue works and (2) how to integrate
> both the threshold and timer components.
>
> if ( D < D_T )
> m<- ifelse(lagvalue(t-delay)<=0, 6.8, 10)
> end
>
> 4...