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 --- 3802/CH10/EX10.10/Ex10_10.jpg | Bin 0 -> 37400 bytes 3802/CH10/EX10.10/Ex10_10.sce | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 3802/CH10/EX10.10/Ex10_10.jpg create mode 100644 3802/CH10/EX10.10/Ex10_10.sce (limited to '3802/CH10/EX10.10') diff --git a/3802/CH10/EX10.10/Ex10_10.jpg b/3802/CH10/EX10.10/Ex10_10.jpg new file mode 100644 index 000000000..d328dd451 Binary files /dev/null and b/3802/CH10/EX10.10/Ex10_10.jpg differ diff --git a/3802/CH10/EX10.10/Ex10_10.sce b/3802/CH10/EX10.10/Ex10_10.sce new file mode 100644 index 000000000..1d9d2e551 --- /dev/null +++ b/3802/CH10/EX10.10/Ex10_10.sce @@ -0,0 +1,40 @@ +//Book Name:Fundamentals of Electrical Engineering +//Author:Rajendra Prasad +//Publisher: PHI Learning Private Limited +//Edition:Third ,2014 + +//EX10_10.sce. +clc; +clear; +sf=0.04; +If=37.5; +f=50; +p=4; +V=400; +P_in_HP=25; +z=2.8; +P_in_watt=P_in_HP*735.5; +Nf=((120*f)/p)*(1-sf); +nf=Nf/60; +Tf=P_in_watt/(2*%pi*nf); +Isc_phase=V/z; +Isc=sqrt(3)*Isc_phase; + +printf("\n (i) Using Direct switching") +Ist=Isc; +printf("\n \t The starting current=%3.2f A",Ist) +Tst=(Isc/If)^2*sf*Tf; +printf("\n \t The starting torque=%3.1f Nm \n",Tst) + +printf("\n (ii) Using Star delta connector") +Ist=(1/3)*Isc; +printf("\n \t The starting current=%3.2f A",Ist) +Tst=(1/3)*(Isc/If)^2*sf*Tf; +printf("\n \t The starting torque=%3.1f Nm \n",Tst) + +printf("\n (iii) Using auto transformer") +k=0.7; +Ist=k^2*Isc; +printf("\n \t The starting current=%3.2f A",Ist) +Tst=k^2*(Isc/If)^2*sf*Tf; +printf("\n \t The starting torque=%3.1f Nm \n",Tst) -- cgit