summaryrefslogtreecommitdiff
path: root/2297/CH6/EX6.2/Ex6_2.sce
blob: a43c0409d03740b9fc68c55c5940806a38b36a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example  6.2// e.m.f 
clc;
clear;
close;
format('v',6)
//given data :
V=200;//voltage
Ra=0.1;//resistance in ohm
Ia=50;//armature current in Amperes
E=V+(Ia*Ra);//generator voltage in volts
Eb=V-(Ia*Ra);//motor voltage in volts
disp(E,"emf when machine acts as generator,(V) = ")
disp(Eb,"emf when machine acts as motor,(V) = ")