blob: 607f8548905ee554ad2734771b732fb044d0deeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex10_1.sce
clc;
clear;
f=50;
p=4;
printf("\n (a)")
Ns=(120*f)/p;
printf("\n Synchronous speed=%d r.p.m \n",Ns)
printf("\n (b)")
s=0.04;
N=Ns-(s*Ns);
printf("\n The rotor speed=%d r.p.m \n",N)
printf("\n (c)")
N=600;
s=(Ns-N)/Ns;
fs=s*f;
printf("\n The rotor frequency=%d Hz",fs)
|