summaryrefslogtreecommitdiff
path: root/1748/CH2/EX2.5.p/problem2_5.sce
blob: 8381b3688659af36f96ebc72fe70e7e4cfa6b890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//problem 2.5
clc;
clear;
close;
//given data :
format('v',5);
MotorInput=50;//in KW
Slip=3;//in %
RotCuLoss=MotorInput*Slip/100;//in KW
disp(RotCuLoss,"Rotor Copper Loss(KW) : ");
TMechP=MotorInput-RotCuLoss;//in KW
disp(TMechP,"Total mechanical power devloped(KW) : ");