summaryrefslogtreecommitdiff
path: root/1092/CH3/EX3.4/Example3_4.sce
blob: 5a724a0d8917acc548d9f336248e9dc257831b10 (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
25
26
27
28
29
30
31
32
33
// Electric Machinery and Transformers
// Irving L kosow 
// Prentice Hall of India
// 2nd editiom

// Chapter 3: DC Dynamo Voltage Relations - DC Generators
// Example 3-4

clear; clc; close; // Clear the work space and console.

// Given data
S_final = 1200; // Speed of th generator in rpm
E_orig_a = 64.3; // Armature voltage of the generator  in V for case a
E_orig_b = 82.9; // Armature voltage of the generator  in V for case b
E_orig_c = 162.3; // Armature voltage of the generator  in V for case c

S_orig_a = 1205; // Varied Speed of the generator in rpm for case a
S_orig_b = 1194; // Varied Speed of the generator in rpm for case b
S_orig_c = 1202; // Varied Speed of the generator in rpm for case c

// Calculations
E_1 = E_orig_a * ( S_final / S_orig_a ); // No- load voltage of the generator 
// generator  in V for case a
E_2 = E_orig_b * ( S_final / S_orig_b ); // No- load voltage of the generator 
// generator  in V for case b
E_3 = E_orig_c * ( S_final / S_orig_c ); // No- load voltage of the generator 
// generator  in V for case c

// Display the results
disp("Example 3-4 Solution : ")
printf("\n a: E1 = %.1f V at %d rpm ", E_1, S_final );
printf("\n b: E2 = %.1f V at %d rpm ", E_2, S_final );
printf("\n c: E3 = %.1f V at %d rpm ", E_3, S_final );