summaryrefslogtreecommitdiff
path: root/3681/CH9/EX9.8/Ex9_8.sce
blob: b10213d48efd2f127e11c175403599fc451d3496 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Calculating the maximum permissible output from a machine
clc;
disp('Example 9.8, Page No. = 9.33')
// Given Data
D = 2;// Diameter (in meter)
ac = 50000;// Specific electric loading
ez = 7.5;// emf generated in a conductor at no load (in Volts)
// Calculation of the maximum permissible output from a machine
P = %pi*D*ac*ez*10^(-3);// Maximum permissible output (in kW)
disp(P,'Maximum permissible output (kW)=');
//in book answer is 2350 (kW).  The answers vary due to round off error