summaryrefslogtreecommitdiff
path: root/1223/CH3/EX3.13/Ex3_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH3/EX3.13/Ex3_13.sce')
-rwxr-xr-x1223/CH3/EX3.13/Ex3_13.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1223/CH3/EX3.13/Ex3_13.sce b/1223/CH3/EX3.13/Ex3_13.sce
new file mode 100755
index 000000000..bfabe4bc1
--- /dev/null
+++ b/1223/CH3/EX3.13/Ex3_13.sce
@@ -0,0 +1,14 @@
+clear;
+clc;
+//Example 3.13
+b=100;
+Vcc=12;
+Vbe=0.7;
+Icq=1;//mA
+Vceq=6;
+Rc=(Vcc-Vceq)/Icq;
+printf('\ncollector resistance=%.3f KOhms\n',Rc)
+Ibq=Icq/b;
+printf('\nbase current=%0.3f mA\n',Ibq)
+Rb=(Vcc-Vbe)/Ibq;
+printf('\nbase resistance=%.3f KOhms\n',Rb)