blob: 805f6ce1ecb752ee5e134f9d5ba9e2d01c0137c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Calculating the maximum permissible core length for the machine
clc;
disp('Example 9.7, Page No. = 9.32')
// Given Data
Kf = 0.67;// Form factor
Bg = 1;// Maximum gap density (in Wb per meter square)
Va = 40;// Armature peripheral speed (in meter)
E = 7;// Maximum permissible value of emf induced in a conductor at no load (in Volts)
// Calculation of the maximum permissible core length for the machine
Bav = Kf*Bg;// Average gap density (in Wb per meter square)
L = E/(Bav*Va);// Maximum permissible core length (in meter)
disp(L,'Maximum permissible core length (meter)=');
//in book answer is 0.26 (meter). The answers vary due to round off error
|