blob: 35ca5aaba5c9f8d2b0ee756da5fe9663b8f6c63f (
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
|
// Example 7.3
// Determine (a) Synchronous speed (b) Rail speed assuming slip of 16.7%
// Page No. 299
clc;
clear;
close;
// Given data
f=50; // Frequency of machine
tau=0.24; // Pole pitch
s=0.167; // Slip
// (a) The synchronous speed
Us=2*tau*f;
// (b) Rail speed assuming slip of 16.7 percent
U=Us*(1-s);
// Display result on command window
printf("\n The synchronous speed = %0.0f m/s ",Us);
printf("\n Rail speed assuming slip of 16.7 percent = %0.1f m/s ",U);
|