summaryrefslogtreecommitdiff
path: root/1092/CH4/EX4.12/Example4_12.sce
blob: 34d0126e090a3b25467edff259a6cf6de28978bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Electric Machinery and Transformers
// Irving L kosow 
// Prentice Hall of India
// 2nd editiom

// Chapter 4: DC Dynamo Torque Relations-DC Motors
// Example 4-12

clear; clc; close; // Clear the work space and console.

// Given data
V_a = 120 ; // Rated terminal voltage of dc shunt notor in volt
R_a = 0.2 ; // Armature resistance in ohm
BD = 2 ; // Brush drop in volt
I_a = 75 ; // Full load armature current in A

// Calculations
I_st = ( V_a - BD ) / R_a ; // Current @ the instant of starting in A
percentage = I_st / I_a * 100 ; // Percentage at full load

// Display the results 
disp(" Example 4-12 Solution : ");
printf(" \n Ist = %d A ( Back EMF is zero )",I_st );
printf(" \n Percentage at full load = %d percent ", percentage );