blob: ba5f4d806caa4143da38937190deae58404d51a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Stator input of 3 phase 4 pole induction motor
clc;
clear;
p=4;
f=50;
Pd=4000; // Power Developed
Nr=1440;
Ps=320;// Stator loss
Ns=120*f/p;
s=(Ns-Nr)/Ns;
Pir=Pd/(1-s); // Power to the rotor
Pi=Pir+Ps; // The input to the stator
printf('The stator input of a 440V 3 phase 4 pole induction motor = %g W \n',ceil(Pi))
|