blob: d93f1c65400c177ac161f0e0a500c0af8543e642 (
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:Tata McGraw Hill
//Year: 2002 ; Edition - 7
//Example 6.1
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
N=1750; //speed of the machine in rpm
Z=728; //no of conductors
f=25*10^(-3); //flux per pole
E=f*N*Z/60; //since P=A
printf('the voltage induced is %f V',E)
|