summaryrefslogtreecommitdiff
path: root/147/CH14/EX14.10/Example14_10.sce
blob: 3abcee4e0fc553d123cf3ca57957443f42c88dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Power P, Voltage V, Armature resistance Ra, Field Resistance Rf
close();
clear;
clc;
P = 50000;//W
V = 250;
Ra = 0.06;//ohm
Rse = 0.04;
Rf = 125;
Vb = 2;
Il = P/V;
Vf = V + Il*Rse;
If = Vf/Rf;
Ia = Il + If;
E = V+ Ia*Ra +Il*Rse+ Vb;
mprintf('Induced armature voltage E = %0.2f V\nTerminal Voltage V = %0.0f V',E,V);