blob: 92abc95456f4ab6e21b1b488fb674620b2779cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Determine the shaft power of 6 pole Induction Motor
clc;
clear;
f=50;
p=6;
rf=120/60; // Rotor Frequency
T=150; // Full Load torque
s=rf/f;
Ns=120*f/p;
Nr=Ns*(1-s);
Ps=2*%pi*Nr*T/60; // Shaft power
printf('The shaft power of the motor = %g kW \n',Ps/1000)
|