blob: 8cb91c4da9b9e134123a029165814ec7d5c0b0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Example 10.5
// Computation of no-load speed
// Page No. 408
clc;
clear;
close;
// Given data
nrated=1750; // Rated speed
SR=4; // Speed regulation
// No-load speed
Snl=nrated*(1+SR/100);
// Display result on command window
printf("\n No-load speed = %0.0f r/min ",Snl);
|