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.26/4_26.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 671/CH4/EX4.26/4_26.sce (limited to '671/CH4/EX4.26') diff --git a/671/CH4/EX4.26/4_26.sce b/671/CH4/EX4.26/4_26.sce new file mode 100755 index 000000000..7c1766861 --- /dev/null +++ b/671/CH4/EX4.26/4_26.sce @@ -0,0 +1,21 @@ +function Zeq=parallel(Z1,Z2) + Zeq=Z1*Z2/(Z1+Z2) +endfunction + +//converting curr source to v source +I=0.4 +R1=15 +V=I*R1 +w=400 + +R2=5 +R3=80 +L=25E-3 +Xl=w*L*%i + +Zeq=R1+R2+parallel(R3,Xl) +I=V/Zeq +Il=I*R3/(R3+Xl) +Ix=I*Xl/(R3+Xl) + +disp(Il,Ix) \ No newline at end of file -- cgit