blob: c7887bb6429ccab50f67814c25d79a703ed12cc1 (
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
|
// Example 10.8
// Computation of new armature current
// Page No. 420
clc;
clear;
close;
// Given data
Rf=120; // Resistance of inserted resistor
VT=240; // Rated voltade of the machine
IT=91; // Total current
Racir=0.221; // Armature sircuit resistance
n2=634; // New speed after resistor was inserted
n1=850; // Rated speed OF THE MACHINE
Rx=2.14; // Resistance inserted in series witH armature
// New armature current
If=VT/Rf; // Resistor current
Ia1=IT-If; // Armature current
Ia2=(VT-(n2/n1)*(VT-Ia1*Racir))/(Racir+Rx);
// Display result on command window
printf("\n New armature current = %0.2f A ",Ia2);
|