summaryrefslogtreecommitdiff
path: root/226/CH19/EX19.15/example15_sce.sce
blob: 1eae58208632709b11af187dd24a3260238c2e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//chapter 19
//example 19.15
//page 854
printf("\n")
printf("given")
Vce=1.5;Vcc=17;Vd1=.7;R8=1.5*10^3;R9=R8;Rl=100;R6=8.2;
I4=(Vcc-Vd1)/(R8+R9)
Vc3=Vcc-(I4*R8);
printf(" bootstrap capacitance terminal voltage is %3.1fV\n",Vc3)
V=Vcc-Vce//V=Vp+Vr6
Ip=V/(Rl+R6)
Vp=Ip*Rl;
printf(" peak output voltage is %3.1fV\n",Vp)
Po=(Vp)^2 /(2*Rl);
printf(" peak output power is %dW\n",Po)