blob: b1dee2f5bd333be17e001301a2133c0091921005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 11: SPECIALIZED DYNAMOS
// Example 11-4
clear; clc; close; // Clear the work space and console.
// Given data
tou = 0.1 ; // Pole pitch of a double-sided primary LIM in meter
f = 60 ; // Frequency applied to the primary LIM in Hz
// Calculation
v_s = 2 * f * tou ; // Synchronous velocity in meter/second
// Display the result
disp("Example 11-4 Solution : ");
printf(" \n Synchronous velocity : \n v_s = %d m/s ", v_s );
|