diff options
Diffstat (limited to '2276/CH10/EX10.2')
-rwxr-xr-x | 2276/CH10/EX10.2/chapter10_ex2.sce | 19 |
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)
|