diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1760/CH2/EX2.40 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1760/CH2/EX2.40')
-rwxr-xr-x | 1760/CH2/EX2.40/EX2_40.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1760/CH2/EX2.40/EX2_40.sce b/1760/CH2/EX2.40/EX2_40.sce new file mode 100755 index 000000000..b57c6815b --- /dev/null +++ b/1760/CH2/EX2.40/EX2_40.sce @@ -0,0 +1,15 @@ + //EXAMPLE 2-40 PG NO-89-90
+V1=52.33-%i*34.15878;
+Z1=7.5-%i*9.999; //IMPEDANCE
+Z2=3.488+%i*12; //IMPEDANCE
+Z3=11.99+%i*5;
+V2=[Z2/Z1]*V1;
+disp('i) voltage (V2) is in polar form = '+string (V2) +' V ');
+V3=[Z3/Z1]*V1; //voltage
+disp('ii) voltage (V3) is in polar form = '+string (V3) +' V ');
+V=V1+V2+V3; //total voltage
+disp('i) voltage (V) is in polar form = '+string (V) +' V ');
+Z=Z1+Z2+Z3; //Total Impedance
+disp('i) IMPEDANCE (Z) is in polar form = '+string (Z) +' V ');
+Y=1/Z; //Admittance
+disp('i) Y (Y) is in polar form = '+string (Y) +' ohm ');
|