diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3802/CH3/EX3.18 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3802/CH3/EX3.18')
-rw-r--r-- | 3802/CH3/EX3.18/Ex3_18.jpg | bin | 0 -> 17323 bytes | |||
-rw-r--r-- | 3802/CH3/EX3.18/Ex3_18.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3802/CH3/EX3.18/Ex3_18.jpg b/3802/CH3/EX3.18/Ex3_18.jpg Binary files differnew file mode 100644 index 000000000..f17782a71 --- /dev/null +++ b/3802/CH3/EX3.18/Ex3_18.jpg diff --git a/3802/CH3/EX3.18/Ex3_18.sce b/3802/CH3/EX3.18/Ex3_18.sce new file mode 100644 index 000000000..ad1c91f12 --- /dev/null +++ b/3802/CH3/EX3.18/Ex3_18.sce @@ -0,0 +1,24 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex3_18.sce
+
+clc;
+clear;
+//Below values are taken from the given circuit (fig.3.27)
+Z1=complex(6,0);
+Z2=complex(10,15);
+Z3=complex(6,-3);
+
+Zs=(Z1*Z2)/(Z1+Z2)+Z3;
+V=12;
+Va=V-(V/(Z1+Z2))*real(Z3);
+Is=complex(5*cosd(-30),5*sind(-30));
+Vb=Is*Z3;
+Voc=Va-Vb;
+I=Voc/(Zs+3);
+I_mag=sqrt(real(I)^2+imag(I)^2);
+I_ang=atand(imag(I)/real(I))+180;
+printf("\n The required current= %1.4f angle:%3.2f degree \n",I_mag,I_ang)
|