diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /226/CH19/EX19.15/example15_sce.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '226/CH19/EX19.15/example15_sce.sce')
-rwxr-xr-x | 226/CH19/EX19.15/example15_sce.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/226/CH19/EX19.15/example15_sce.sce b/226/CH19/EX19.15/example15_sce.sce new file mode 100755 index 000000000..1eae58208 --- /dev/null +++ b/226/CH19/EX19.15/example15_sce.sce @@ -0,0 +1,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)
\ No newline at end of file |