summaryrefslogtreecommitdiff
path: root/3775/CH2/EX2.3/Ex2_3.sce
blob: c0ac9e02ff52cc452f42469cf643706cf58e40b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Ex 2.3 page 68

clc;
clear;
close;

m=16;// V/A (gradient)
t_on=4;// us
IG=500;// mA
VS=15;// V

VG=m*IG/1000;// V
//Load line equation
//VG=VS-IG*RS
RS=(VS-VG)/(IG/1000) ;// ohm
Pg=VS*(IG/1000)**2 ; // W
printf('Gate power dissipation = %.f W',Pg)
printf('\n Resistance to be connected = %.f ohm',RS)