summaryrefslogtreecommitdiff
path: root/2123/CH6/EX6.4/Exa_6_4.sce
blob: e7ac6b0ecdc63de065af29b1b74440445f2f7934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example No. 6.4
clc;
clear;
close;
format('v',6);

//Given Data : 
T_directStartBYTfl=1.5;//ratio
K=sqrt(T_directStartBYTfl);//Ratio of full load torque to starting torque direct starting
//Vapplied=1/K*Vline
VappliedBYVline=1/K;
disp("Applied voltage is "+string(VappliedBYVline)+" times of Line voltage.");
LineCurrentBYIfl=1/K^2*4;//V
disp("Line current at starting is "+string(LineCurrentBYIfl)+" times of full load current.");