summaryrefslogtreecommitdiff
path: root/1541/CH1/EX1.8/Chapter1_Example8.sce
blob: 28f4e7e1e2c03e1245c93f1b9d97278b7ca1e87d (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
//Chapter-1, Example 1.8, Page 1.19
//=============================================================================
clc
clear

//NPUT DATA
n=200;//Number of turns
P=6;//Number of poles
A=P;//Since lap wound turns
Ra=0.0112;//Armature resistance in ohm
Ia=40;//Armature current in A
N=1000;//Armature speed in rpm
q=0.03;//Flux per pole in Wb

//CALCULATIONS
Z=(n*2);//Total number of conductors
Eg=(q*Z*N*P)/(60*A);//Generated emf in V
IaRa=(Ia*Ra);//Armature drop in VI
V=(Eg-IaRa);//Terminal voltage in V

//OUTPUT
mprintf('Terminal voltage is %3.3f V',V)

//=================================END OF PROGRAM==============================