diff options
Diffstat (limited to '3816/CH2')
-rw-r--r-- | 3816/CH2/EX2.1/2_1.png | bin | 0 -> 26407 bytes | |||
-rw-r--r-- | 3816/CH2/EX2.1/2_1.sce | 19 | ||||
-rw-r--r-- | 3816/CH2/EX2.4/2_4.png | bin | 0 -> 27236 bytes | |||
-rw-r--r-- | 3816/CH2/EX2.4/2_4.sce | 24 |
4 files changed, 43 insertions, 0 deletions
diff --git a/3816/CH2/EX2.1/2_1.png b/3816/CH2/EX2.1/2_1.png Binary files differnew file mode 100644 index 000000000..309efb34c --- /dev/null +++ b/3816/CH2/EX2.1/2_1.png diff --git a/3816/CH2/EX2.1/2_1.sce b/3816/CH2/EX2.1/2_1.sce new file mode 100644 index 000000000..64b76c639 --- /dev/null +++ b/3816/CH2/EX2.1/2_1.sce @@ -0,0 +1,19 @@ +clc;
+clear;
+b1=10;//From plot
+b2=31;//From plot
+b3=68;//From plot
+b4=100;//From plot
+b5=100;//From plot
+b6=100;//From plot
+//Case:1
+B1=0.86+5.16+16.72+28.9+32.3+16.7;
+B3=2.36+10.32+16.04+0-23.6-16.7;
+B5=3.23+5.16-16.04-28.9+8.6+16.7;
+B7=3.23-5.16-16.04+28.9+8.6-16.7;
+disp('To find the harmonic components ,mean gap density ,rms value:')
+disp(B7,B5,B3,B1,'The harmonic components are:')
+B8=((2/%pi)*(B1+((1/3)*B3)+((1/5)*B5)+((1/7)*B7)));
+disp(B8,'The mean gap density is :')
+B9=(((1/2)*(((B1)^2)+((B3)^2)+((B5)^2)+((B7)^2)))^(1/2));
+disp(B9,'The rms value is:')
diff --git a/3816/CH2/EX2.4/2_4.png b/3816/CH2/EX2.4/2_4.png Binary files differnew file mode 100644 index 000000000..5b44011ef --- /dev/null +++ b/3816/CH2/EX2.4/2_4.png diff --git a/3816/CH2/EX2.4/2_4.sce b/3816/CH2/EX2.4/2_4.sce new file mode 100644 index 000000000..5a774c95d --- /dev/null +++ b/3816/CH2/EX2.4/2_4.sce @@ -0,0 +1,24 @@ +clc;
+clear;
+e=0.001;
+D=0.50;
+l=0.20;
+lg=0.005;
+A1=12800;//Stator peak current densities
+A2=9600;//Rotor peak current densities
+lamda=(%pi/3);//torque angle
+F1=A1*D*(1/2);//mmf per pole
+F2=A2*D*(1/2);//mmf per pole
+Fo=4450;//Resultant gap mmf per pole
+Mewo=1.25*10^(-7);
+Bm=(Fo*Mewo)/lg;
+disp(Bm,'The sine distributed flux density of peak value:')
+Mp=((D*l)/(3*Mewo))*(Bm^2);//Magnetic pull per pole
+disp(Mp,'The magnetic pull per pole is :')
+e1=0.001/0.005;//Eccentricity after displacement of 'e'
+Mu=((%pi*D*l)/(4*Mewo))*(Bm^2)*e1;
+disp(Mu,'The resultant u.m.p is:')
+M=260;
+F=M/0.25;
+disp(M,'The useful torque of machine is:')
+disp(F,'The pheripheral force is:')
|