blob: 8d60e173cbd80f2e8d6d307383434eb74903649f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
o//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 3
//example 3.1
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
Vrms=110; //source voltage of the circuit in volts
alpha=90; //triggering angle in degree
Vm=Vrms*(2)^(1/2); //maximum voltage in volts
Vave=(Vm/(2*%pi))*(1+cosd(alpha));
R=(0.2*(Vave)^(2))+5; //load resistance in ohm
Iave=Vave/R; //average current of the load
disp(Iave,'The average current when the triggering angle 90 degree in ampere is:')
|