blob: 316020b9d7701708702c9647a437b6e8b3041c36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Ex:5.6
clc;
clear;
close;
I_c=1.5;//in A
I_b=50*10^-3;
V_ce=6;//volts
hfe=I_c/I_b;
P=I_c*V_ce;
printf("hfe required = %d",hfe);
printf("\n collector power dissipation = %d W",P);
|