summaryrefslogtreecommitdiff
path: root/3811/CH6/EX6.6/Ex6_6.sce
blob: b364f178c74801e38b565942e69004527d7df7ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 6
//example 6.6
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
T=60;//Constant load torque in Nm
V=120;//supply voltage in volt
KQ=2.5;//Field constant of the motor 
Ra=2;//Armature resistance in ohm
n=200;//speed of the motor in rpm
Vm=V*2^(1/2);//maximum voltage in volt
w=(2*%pi*n)/T;//angular speed
Iave=T/KQ;
b=((%pi/(2*Vm))*((Ra*Iave)+(KQ*w)));
alpha=acosd(b);
mprintf("\nThe triggering angle of the motor is  %f degree",alpha)