summaryrefslogtreecommitdiff
path: root/3802/CH8/EX8.9/Ex8_9.sce
blob: 9de1ebe688fca40b2675530747f52284c80da03c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014

//Ex8_9.sce.

clc;
clear;
Ra=0.8;
Rsh=45;
Rse=0.6;
P=5e3;
V=250;
Il=P/V;
If=(V+(Rse*Il))/Rsh;
Ia=Il+If;
E=V+(Il*Rse)+(Ia*Ra);
printf("\n   Armature generated voltage=%3.2f volt \n",E)