diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /503/CH5/EX5.2/ch5_2.sci | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '503/CH5/EX5.2/ch5_2.sci')
-rwxr-xr-x | 503/CH5/EX5.2/ch5_2.sci | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/503/CH5/EX5.2/ch5_2.sci b/503/CH5/EX5.2/ch5_2.sci new file mode 100755 index 000000000..45b0164d3 --- /dev/null +++ b/503/CH5/EX5.2/ch5_2.sci @@ -0,0 +1,20 @@ +// to find the frequency and phase and line voltages
+
+clc;
+n=375; //speed in rpm
+p=16; //no of poles
+f=n*p/120;
+disp(f,'freq(Hz)');
+S=144; //no of slots
+c=10; //no of conductors/slot
+t=S*c/2; //no of turns
+ph=3;
+N_ph=t/ph; //no of turns/ph
+g=180*p/S; //slots angle
+m=S/(p*ph); //slots/pole/phase
+K_b=sind(m*g/2)/(m*sind(g/2)); //breadth factor
+phi=0.04; //flux per pole
+E_p=4.44*K_b*f*N_ph*phi;
+disp(E_p,'phase voltage(V)');
+E_l=sqrt(3)*E_p;
+disp(E_l,'line voltage(V)');
|