For RAMP3 function, if the positive rate limit is 10, the negative rate limit is -10, and X=-27. How does it calculate the output for t=DELT? If it will consider (-27-0)/DELT <-10, the output Y=-10*DELT+0. Or it won't do such a calculation for the first time step. I think it won't do it, but I need to confirm. By the way, how the function makes it. If the code is like:
IF (TIMEZERO) THEN
Y=X
ELSEIF ((X(t)-X(t-DELT))/DELT>10) THEN
X(t)=X(t-DELT)+10*DELT
ELSEIF ...
ENDIF
Thanks.


Reply With Quote
Bookmarks