From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2384/CH11/EX11.6/ex11_6.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 2384/CH11/EX11.6/ex11_6.sce (limited to '2384/CH11/EX11.6/ex11_6.sce') diff --git a/2384/CH11/EX11.6/ex11_6.sce b/2384/CH11/EX11.6/ex11_6.sce new file mode 100755 index 000000000..5556100fc --- /dev/null +++ b/2384/CH11/EX11.6/ex11_6.sce @@ -0,0 +1,19 @@ +// Exa 11.6 +clc; +clear; +close; +format('v',6) +// Given data +P = 4; +S =4/100; +f = 50;// in Hz +Ns = (120*f/P);// in rpm +disp(Ns,"The value of Ns in rpm is"); +// The rotor speed when slip is 4 % +N = Ns*(1-S);// in rpm +disp(N,"The rotor speed when slip is 4% in rpm is"); +// The rotor speed when rotor runs at 600 rpm +N1 = 600;// in rpm +s1 = ((Ns-N1)/Ns)*100;// in % +f_r = (s1/100)*f;// in Hz +disp(f_r,"The rotor frequency when rotor runs at 600 rpm in Hz is"); -- cgit