blob: 15de50d2aa59760c5bac380f872dc179cfca396c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Electric Drives:concepts and applications by V.subrahmanyam
//Publisher:Tata McGraw-Hill
//Edition:Second
//Ex1_11
clc;
clear;
Sf1=0.04;//Full load slip in %
x=(8*3)^(1/2);
Tst=(x)^2*Sf1;
S=Sf1/2;
T=(8)^2*S;
disp(T,"Torque in Nm is:")
|