summaryrefslogtreecommitdiff
path: root/2384/CH11/EX11.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2384/CH11/EX11.5
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 '2384/CH11/EX11.5')
-rwxr-xr-x2384/CH11/EX11.5/ex11_5.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2384/CH11/EX11.5/ex11_5.sce b/2384/CH11/EX11.5/ex11_5.sce
new file mode 100755
index 000000000..ccf25972d
--- /dev/null
+++ b/2384/CH11/EX11.5/ex11_5.sce
@@ -0,0 +1,22 @@
+// Exa 11.5
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+K = 1/2;
+P = 4;
+f = 50;// in Hz
+N = 1445;// in rpm
+E1line = 415;// in V
+Ns = (120*f)/P;// in rpm
+N = 1455;// in rpm
+s = (Ns-N)/Ns*100;// in %
+f_r = s/100*f;// in Hz
+disp(f_r,"The frequency of rotor in Hz is");
+E1ph = E1line/sqrt(3);// in V
+//E2ph/E1ph = K;
+E2ph = E1ph*K;// in V
+disp(E2ph,"The magnitude of induced emf in V is");
+E2r = s/100*E2ph;// in V
+disp(E2r,"The magnitude of induced emf in the running condition in V is");