From f35ea80659b6a49d1bb2ce1d7d002583f3f40947 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:38:01 +0530 Subject: updated the code --- 503/CH5/EX5.4/ch5_4.sci | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) (limited to '503/CH5/EX5.4') diff --git a/503/CH5/EX5.4/ch5_4.sci b/503/CH5/EX5.4/ch5_4.sci index cc120a890..171bb33b9 100755 --- a/503/CH5/EX5.4/ch5_4.sci +++ b/503/CH5/EX5.4/ch5_4.sci @@ -1,17 +1,18 @@ -// to calculate flux/pole - -clc; -S=42; -p=2; -ph=3; -m=S/(p*ph); //slots/pole/phase -g=180*p/S; //slots angle -K_b=sind(m*g/2)/(m*sind(g/2)); //breadth factor -cp=17; -pp=S/p; -theta_sp=(pp-cp)*g; //short pitch angle -K_p=cosd(theta_sp/2); -N_ph=S*2/(ph*p*2); //2 parallel paths -E_p=2300/sqrt(3); -phi=E_p/(4.44*K_b*K_p*f*N_ph); -disp(phi,'flux/pole(Wb)'); +// to calculate flux/pole + +clc; +S=42; +p=2; + f = 50; +ph=3; +m=S/(p*ph); //slots/pole/phase +g=180*p/S; //slots angle +K_b=sind(m*g/2)/(m*sind(g/2)); //breadth factor +cp=17; +pp=S/p; +theta_sp=(pp-cp)*g; //short pitch angle +K_p=cosd(theta_sp/2); +N_ph=S*2/(ph*p*2); //2 parallel paths +E_p=2300/sqrt(3); +phi=E_p/(4.44*K_b*K_p*f*N_ph); +disp(phi,'flux/pole(Wb)'); \ No newline at end of file -- cgit