blob: 32fcebb8c106df0e4d0c9f61d3c78e230a879a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Exa 10.10
clc;
clear;
close;
format('v',7)
// Given data
V = 250;// in V
I_L = 20;// in A
Ra = 0.3;// in ohm
Rsh = 200;// in ohm
Ish = V/Rsh;// in A
// I_L = Ia+Ish;
Ia = I_L-Ish;// inA
disp(Ia,"The armature current in A is");
Eb = V-(Ia*Ra);// in V
disp(Eb,"The back emf in V is");
|