summaryrefslogtreecommitdiff
path: root/3648/CH19/EX19.7/Ex19_7.sce
blob: 9a5bbd9780afd9d4de4bbda4ce45fa4d2beb9f72 (plain)
1
2
3
4
5
6
7
8
9
//Example 19_7
clc();
clear;
//To calculate the Back emf developed
i=3         //Units in A
r=2             //Units in Ohms
v=110            //Units in Ohms
e=v-(i*r)       //Units in V
printf("The back emf developed is EMF=%d V",e)