summaryrefslogtreecommitdiff
path: root/1628/CH14/EX14.3/Ex14_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH14/EX14.3/Ex14_3.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 '1628/CH14/EX14.3/Ex14_3.sce')
-rwxr-xr-x1628/CH14/EX14.3/Ex14_3.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1628/CH14/EX14.3/Ex14_3.sce b/1628/CH14/EX14.3/Ex14_3.sce
new file mode 100755
index 000000000..87bb7dcdf
--- /dev/null
+++ b/1628/CH14/EX14.3/Ex14_3.sce
@@ -0,0 +1,25 @@
+
+ // Example 14.3
+
+f=50; // Frequency
+p=20; // No.Of poles
+Ns=(120*f)/p; // Speed Of rotation
+disp('(a) Speed of Rotation is = '+string(Ns)+' rpm');
+p1=180/20; // No.Of slots per pole
+Q=180/p1; // Slot angle
+q1=p1/3; // No.Of slots per pole for group q
+sa=sind((q1*Q)/2);
+sb=sind(Q/2);
+kd=sa/(q1*sb); // Generated emf per phase
+disp('(b) Generated emf per phase = '+string(kd)+' Volt');
+
+g=0.025; // Flux per poles
+T=240; // No.Of turns per phase
+kp=1;
+E=(4.44*f*g*kp*T*0.96); // Rms value of emf per phase
+El=sqrt(3)*E; // Line emf
+disp('(b) Generated emf per phase = '+string(E)+' Volt');
+disp('(c) Line emf = '+string(El)+' Volt');
+
+
+ // p 554 14.3