summaryrefslogtreecommitdiff
path: root/269/CH9/EX9.3/ex3.sce
blob: 1ead7471f7feeb6593466e9d4ef4692663540655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Syms t ,s
disp('given')
disp('V=e^-t(sint)              R1=1,R2=1,C=0.5,L=2')
disp('laplace transforming the ckt elements')
disp('Total impedance is')
z=((2*s^2+5*s+4)/(2*s^2+s+2))
disp(z)
disp('laplace transformed voltage is')
v=laplace('%e^(-t)*sin(2*t)',t,s)
disp(v)
disp('The current can be found as v/z')
i=v/z
disp(i,"The total current in s domain")