blob: 5105d11a2828efd5909152d823cb1f11746362fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Examle 16.3
E1=180; // Induced emf
N1=500; // Speed of mechine N1=500
N2=600; // Speed of mechine N1=600
E2=(N2/N1)*E1; // Emf When Machine runs at (600 rpm)
disp('Emf When Machine runs at (600 rpm)= '+string(E2)+' Volt');
// 633 16.3
|