blob: 0501a498867dd27b3f3c6562a32c9edc30a27983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Chapter-1, Example 1.17, Page 1.43
//=============================================================================
clc
clear
//INPUT DATA
P=4;//Number of poles
Z=726;//Number of conductors
A=2;//Number of parallel paths
q=(30*10^-3);//Flux per pole in Wb
Ia=45;//Total armature current in A
//CALCULATIONS
Ta=(0.159*Z*q*Ia*P)/A;//Armature toque in N.m
//OUTPUT
mprintf('Armature torque is %3.2f N.m',Ta)
//=================================END OF PROGRAM==============================
|