blob: e32a71448325fd56b1586c3115e0158e042bed05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Example 10.2
// Computation of rheostat setting required to obtain an induced emf of 290 V
// Page No. 399
clc;
clear;
close;
// Given data
Ebat=240; // Induced emf
If=8.9; // Field current
Rf=10.4; // Field resistance
// Rheostat setting required to obtain an induced emf of 290 V
Rrheo=(Ebat/If)-Rf;
// Display result on command window
printf("\n Rheostat setting to obtain an induced emf of 290 V = %0.2f ",Rrheo);
|