blob: 0c48d7af4d6efdb648e3fdeed7b7a5ac5e43039f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
//chapter 3
//example 3.12
//edition 1
//publisher and place:Nelson Engineering
clc;
clear;
f=500; //frequency at the load side in Hz
t=1/f; //time for one cycle in sec
tseg=t/6; //time of the switching segment in sec
tcon=3*tseg; //conduction period of each transistor in sec
tcon1=tcon*10^3; //conduction period of each transistor in msec
disp(tcon1,'The conduction period of each transistor in msec is')
|