From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 671/CH4/EX4.34/4_34.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 671/CH4/EX4.34/4_34.sce (limited to '671/CH4/EX4.34/4_34.sce') diff --git a/671/CH4/EX4.34/4_34.sce b/671/CH4/EX4.34/4_34.sce new file mode 100755 index 000000000..9c81b7546 --- /dev/null +++ b/671/CH4/EX4.34/4_34.sce @@ -0,0 +1,26 @@ +function [x,y]=polar_to_cart(r,theta) + theta=theta/180*%pi + x=r*cos(theta) + y=r*sin(theta) +endfunction + +[Ir,Ic]=polar_to_cart(2,10) +I1=complex(Ir,Ic) +[Ir,Ic]=polar_to_cart(3,90+30) +I2=complex(Ir,Ic) + +w=4 +R=2 +L=0.5 +C=1/4 +Xl=w*L*%i +Xc=1/(w*C*%i) + +//deactivate voltage source +i1=I1*(R+Xl)/(R+Xl+Xc) + +//deactivate curr source +i2=I2/(R+Xl+Xc) + +i=i1+i2 +disp(i) \ No newline at end of file -- cgit