summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.60/Example1_60.sce
blob: 3357750db3dfe4493929e1eb6a8ef072ce531f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Example  1.60

clc;clear;close;

// Given data
PA=4;//no. of poles
PB=4;//no. of poles
f=50;//in Hz
V=440;//in volt

//calculations
//Independently with A
Ns=120*f/PA;//in rpm
disp(Ns,"Independently with A, Synchrpnous speed Ns in rpm is : ");
//Independently with B
Ns=120*f/PB;//in rpm
disp(Ns,"Independently with B, Synchrpnous speed Ns in rpm is : ");
//Running as cumulative cascaded
Ns=120*f/(PA+PB);//in rpm
disp(Ns,"Running as cumulative cascaded, Synchrpnous speed Ns in rpm is : ");
//Running as differentially cascaded
disp("Running as differentially cascaded, Synchrpnous speed Ns is undefined.");