blob: 4a86a9473776242078e91dd069e6b434feb19bb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Electric machines and power systems by Syed A Nasar
//Publisher:TataMcgraw Hill
//Year: 2002 ; Edition - 7
//Example 6.2
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
z=576; //no of conductors
Ia=123.5; //armature current in A
f=20*10^-3; //flux in wb
Te=z*f*Ia/(2*3.14);
printf('The electro magnetic torque required is %f Nm',Te)
|