blob: 137b790d50fd91176860435e36456f5f410d0294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc;
clear;
B=0.50;//Mean gap flux density
Ys=40;//Slot spacing
Cs=(35*12);//Conductor section
J=33;//Current density
//case:1
disp('To find the tangential force per length of gap periphery and per unit axial length of the machine:')
A=(Cs*J*1000)/Ys;
disp(A,'The specific electric loadings is:')
Fe=B*A;
disp(Fe,'The specific force is:')
|