summaryrefslogtreecommitdiff
path: root/2276/CH10/EX10.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2276/CH10/EX10.2
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 '2276/CH10/EX10.2')
-rwxr-xr-x2276/CH10/EX10.2/chapter10_ex2.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2276/CH10/EX10.2/chapter10_ex2.sce b/2276/CH10/EX10.2/chapter10_ex2.sce
new file mode 100755
index 000000000..f7f06a6bb
--- /dev/null
+++ b/2276/CH10/EX10.2/chapter10_ex2.sce
@@ -0,0 +1,19 @@
+clc
+clear
+
+//input
+p=4;//number of poles
+n=48;//number of slots
+b=0.02;//fulx per pole in weber
+w=50*(%pi);//angular velocity in rad/sec
+
+//calcultions
+f=(w*(p/2))/(2*%pi);//frequency in hertz
+phim=360/n;//mechanical angle in degrees
+phie=phim*(p/2);//electrical angle in degrees
+phiE=phie*(%pi/180);//electrical angle in radians
+kd=(sin(2*(phiE/2)))/(2*sin(phiE/2));//distribution factor and 2 is taken as we are calculating for 2 coils
+e=(p/2)*kd*4.44;//total e.m.f. for two coils in series in volts
+
+//output
+mprintf('the total e.m.f. for two coils in series is %3.1f V',e)