diff options
Diffstat (limited to '226/CH5/EX5.8/example8_sce.sce')
-rwxr-xr-x | 226/CH5/EX5.8/example8_sce.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/226/CH5/EX5.8/example8_sce.sce b/226/CH5/EX5.8/example8_sce.sce new file mode 100755 index 000000000..1637af9b2 --- /dev/null +++ b/226/CH5/EX5.8/example8_sce.sce @@ -0,0 +1,15 @@ +//chapter 5
+//example 5.8
+//page 199
+printf("\n")
+printf("given")
+Vcc=18;Vbe=.7;hfe=100;
+R1=33*10^3;R2=12*10^3;Re=1*10^3;
+Vt=(Vcc*R2)/(R1+R2)
+Rt=(R1*R2)/(R1+R2)
+Ib=(Vt-Vbe)/(Rt+Re*(1+hfe))
+Ic=hfe*Ib
+Ie=Ib+Ic
+Ve=Ie*Re
+Vc=Vcc-(Ic*Rc)
+Vce=Vc-Ve
\ No newline at end of file |