blob: 981b8d3a765ff43e43b456f25789e42b74f02341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clear
//Given
V=200 //V
I=5 //A
R=8.5 //ohm
//Calculation
Eb=V-(I*R)
Pi=V*I
P0=Eb*I
n=(P0*100)/Pi
//Result
printf("\n (i) Back e.m.f of motor is %0.3f V", Eb)
printf("\n (ii) Power input is %0.3f W",Pi)
printf("\n (iii) Output power is %0.3f W",P0)
printf("\n (iv) Efficiency of motor is %0.3f percentage",n)
|