From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1319/CH6/EX6.17/6_17.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 1319/CH6/EX6.17/6_17.sce (limited to '1319/CH6/EX6.17') diff --git a/1319/CH6/EX6.17/6_17.sce b/1319/CH6/EX6.17/6_17.sce new file mode 100644 index 000000000..2ebb1781a --- /dev/null +++ b/1319/CH6/EX6.17/6_17.sce @@ -0,0 +1,17 @@ +//Useful torque and efficiency of a shunt motor + +clc; +clear; + +Po=10.14*735; // 1 HP is 735 W, Power Developed +N=600/60;// Speed in rotations per sec +I=18; +V=500; +Pi=V*I; // Power input + +eff=Po*100/Pi; + +T=Po/(2*%pi*N); + +printf('The Efficiency and the useful torque of the shunt motor are %g percent and %g Nm respectively \n',eff,T) + -- cgit