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 --- 833/CH11/EX11.2/Ex11_2.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 833/CH11/EX11.2/Ex11_2.txt (limited to '833/CH11/EX11.2/Ex11_2.txt') diff --git a/833/CH11/EX11.2/Ex11_2.txt b/833/CH11/EX11.2/Ex11_2.txt new file mode 100755 index 000000000..78eda61ae --- /dev/null +++ b/833/CH11/EX11.2/Ex11_2.txt @@ -0,0 +1,14 @@ +//Caption: Find (a)Speed of motor (b)%Slip +//Exa:11.2 +clc; +clear; +close; +p=6//Number of poles +f_s=50//Stator frequency(in c/s) +f_r=2//Rotor frequency(in c/s) +n_s=(120*f_s)/p +n=(f_r*120)/p +s=n_s-n +disp(s,'(a)Speed of motor(in r.p.m)=') +S=(n/n_s)*100 +disp(S,'(b)%Slip(in %)=') \ No newline at end of file -- cgit