blob: da0cf3856a0932246de045e1bd44e1bdd52e89d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Example 1.42
clear; clc; close;
format('v',6);
// Given data
Sfl=5;//in %
IscByIfl=6;//ratio
//Calculations
Sfl=Sfl/100;//slip
TstByTfl=1;//as Tfl=Tst
//Let X= tapping on transformer
X=sqrt(TstByTfl/(IscByIfl^2)/Sfl);//Tapping on transformer
disp(X,"Tapping on auto transformer : ");
IstByIfl=X^2*IscByIfl;//supply starting current to full load current
disp("The supply starting current is "+string(IstByIfl)+" times of full load current.");
|