summaryrefslogtreecommitdiff
path: root/269/CH9/EX9.1/ex1.sce
blob: 41d00bbf098d23059091775238e9f2d4ab255ddb (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")