Johan

16 Reputation

4 Badges

19 years, 252 days

MaplePrimes Activity


These are questions asked by Johan

Hi. I have a transfer function like this one: y:=(2.5)/((8*s^2+6*s+1)*s); and I can make inverse Laplace transformation in time and plot it by: y1:=invlaplace(y,s,t); plot(y1,t=0..25); I try it also with time delay in transfer function but it doesn`t work. y:=(2.5*exp(-1.5*s))/((8*s^2+6*s+1)*s); > y1:=invlaplace(y,s,t); > plot(y1,t=0..25); So i find a solution in differential equation and make an algorithm to convert transfer function to differential equation. ode := 8*(diff(x(t), t, t))+6*(diff(x(t), t))+x(t) = 2.5*Heaviside(t-1.5); ics := x(0) = 0, (D(x))(0) = 0;
Page 1 of 1