moonnightingale
Full Member level 6
For many days i am stuck with 2 queries. One is for DC gain and other for Z transform.
1. A question says to find DC gain of both G(s) and G(z) . G(s) is transfer function in continuous domain and G(z) in discrete domain.
G(s)= 10(s+1)/(s^2+s+10)
I have calculated G(z) by Matlab and by hand
clc
s=tf('s');
G=10*(s+1)/(s^2+s+10)
T=0.01;
G_d=c2d(G,T,'zoh')
grid on
pzmap(G_d);
What he mean by DC gain. How to calculate that in Matlab
2. Second question is regarding Z transform. T. How to calculate z transform of term which is having exp
for example Z transform of [exp^(st/2) ] / s^2 or [exp^(-1.5Ts)] / [(s+1)(s+3)] how to solve such questions. Kindly refer some book b/c ogata book does not explain it. ( s is laplace domain)
Thanks a lot for ur help
1. A question says to find DC gain of both G(s) and G(z) . G(s) is transfer function in continuous domain and G(z) in discrete domain.
G(s)= 10(s+1)/(s^2+s+10)
I have calculated G(z) by Matlab and by hand
clc
s=tf('s');
G=10*(s+1)/(s^2+s+10)
T=0.01;
G_d=c2d(G,T,'zoh')
grid on
pzmap(G_d);
What he mean by DC gain. How to calculate that in Matlab
2. Second question is regarding Z transform. T. How to calculate z transform of term which is having exp
for example Z transform of [exp^(st/2) ] / s^2 or [exp^(-1.5Ts)] / [(s+1)(s+3)] how to solve such questions. Kindly refer some book b/c ogata book does not explain it. ( s is laplace domain)
Thanks a lot for ur help