diff options
Diffstat (limited to '3630/CH7/EX7.13/Ex7_13.sce')
-rw-r--r-- | 3630/CH7/EX7.13/Ex7_13.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3630/CH7/EX7.13/Ex7_13.sce b/3630/CH7/EX7.13/Ex7_13.sce new file mode 100644 index 000000000..a014afa30 --- /dev/null +++ b/3630/CH7/EX7.13/Ex7_13.sce @@ -0,0 +1,13 @@ +clc;
+Vcc=16; //Volt
+Vbe=0.7; //Volt
+Rb=680000; //Ohm
+Hfe=50;
+Rc=6200; //Ohm
+Re=1600; //Ohm
+Ib=(Vcc-Vbe)/(Rb+((Hfe+1)*Re)); //Ampere
+Icq=Hfe*Ib; //Ampere
+Vceq=Vcc-Icq*(Rc+Re); //Volt
+disp('mA',Icq*1000,"Icq=");//The answers vary due to round off error
+disp('V',Vceq,"Vceq=");//The answers vary due to round off error
+
|