summaryrefslogtreecommitdiff
path: root/3630/CH7/EX7.12/Ex7_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH7/EX7.12/Ex7_12.sce')
-rw-r--r--3630/CH7/EX7.12/Ex7_12.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3630/CH7/EX7.12/Ex7_12.sce b/3630/CH7/EX7.12/Ex7_12.sce
new file mode 100644
index 000000000..ac1555289
--- /dev/null
+++ b/3630/CH7/EX7.12/Ex7_12.sce
@@ -0,0 +1,12 @@
+clc;
+Vcc=10; //volt
+Vbe=0.7; //volt
+Rb=180000; //ohm
+Hfe=100;
+Rc=1500; //Ohm
+Ib=(Vcc-Vbe)/(Rb+(Hfe*Rc)); //Ampere
+Icq=Hfe*Ib; //Ampere
+Vceq=Vcc-Icq*Rc; //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
+