diff options
Diffstat (limited to '226/CH5/EX5.15/example15_sce.sce')
-rwxr-xr-x | 226/CH5/EX5.15/example15_sce.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/226/CH5/EX5.15/example15_sce.sce b/226/CH5/EX5.15/example15_sce.sce new file mode 100755 index 000000000..c4b17777a --- /dev/null +++ b/226/CH5/EX5.15/example15_sce.sce @@ -0,0 +1,19 @@ +//chapter 5
+//example 5.15
+//page 214
+printf("\n")
+printf("given")
+Vce=9;Ve=4;Ic=4*10^-3;Vcc=18;
+Ie=Ic;
+R4=Ve/Ie
+Vb=Ve+Vbe
+I2=Ic/10
+R2=Vb/I2
+disp(" with R2=12Kohm standard")
+R2=12*10^3;
+I2=Vb/R2
+R1=(Vce+Ve-Vb)/I2
+disp(" with R1=22kohm standard")
+R1=22*10^3;
+Vr3=Vcc-Vce-Ve
+R3=Vr3/(Ic+I2)
\ No newline at end of file |