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 --- 1892/CH1/EX1.58/Example1_58.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 1892/CH1/EX1.58/Example1_58.sce (limited to '1892/CH1/EX1.58') diff --git a/1892/CH1/EX1.58/Example1_58.sce b/1892/CH1/EX1.58/Example1_58.sce new file mode 100755 index 000000000..5ecdd8af4 --- /dev/null +++ b/1892/CH1/EX1.58/Example1_58.sce @@ -0,0 +1,18 @@ +// Example 1.58 + +clear; clc; close; + +format('v',7); +// Given data +IscByIfl=3*180/100;//ratio +TstByTfl=0.35;//ratio +X=80/100;//tapping + +//Calculations +//Formula : TstByTfl=1/3*(IscByIfl^2)*Sfl +Sfl=TstByTfl/IscByIfl^2*3;//slip at full load +IstByIsc=X^2;//ratio +IstByIfl=IstByIsc*IscByIfl;//ratio +disp("Starting current is "+string(IstByIfl)+" times of full load current."); +TstByTfl=X^2*IscByIfl^2*Sfl;//ratio +disp("Starting torque is "+string(TstByTfl*100)+"% of full load torque."); -- cgit