summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.67/Example1_67.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1892/CH1/EX1.67/Example1_67.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1892/CH1/EX1.67/Example1_67.sce')
-rwxr-xr-x1892/CH1/EX1.67/Example1_67.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1892/CH1/EX1.67/Example1_67.sce b/1892/CH1/EX1.67/Example1_67.sce
new file mode 100755
index 000000000..f1cb8a44a
--- /dev/null
+++ b/1892/CH1/EX1.67/Example1_67.sce
@@ -0,0 +1,24 @@
+// Example 1.67
+
+clc;clear;close;
+
+// Given data
+format('v',6);
+E=60;//in volt
+Zrotor=0.8+%i*6;//rotor impedence in ohm/phase
+Zstator=4+%i*3;//stator impedence in ohm/phase
+S=5;//in %
+
+//calculations
+E2=E/sqrt(3);//emf induced/phase in volt
+Ztotal=Zstator+Zrotor;//in ohm/phase
+//Part (a)
+I2=E2/Ztotal;//in Ampere
+disp("Part(a) Magnitude is "+string(abs(I2))+" & angle in degree is "+string(atand(imag(I2),real(I2))));
+//Part (b)
+S=S/100;//slip
+R2=real(Zrotor);//in ohm/phase
+X2=imag(Zrotor);//in ohm/phase
+I2s=S*E2/(R2+S*%i*X2);//in ampere
+disp("Part(b) Magnitude is "+string(abs(I2s))+" & angle in degree is "+string(atand(imag(I2s),real(I2s))));
+//Answer of part (b) is wrong in the book.