summaryrefslogtreecommitdiff
path: root/2753/CH4/EX4.4
diff options
context:
space:
mode:
Diffstat (limited to '2753/CH4/EX4.4')
-rwxr-xr-x2753/CH4/EX4.4/Ex4_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2753/CH4/EX4.4/Ex4_4.sce b/2753/CH4/EX4.4/Ex4_4.sce
new file mode 100755
index 000000000..c97dce173
--- /dev/null
+++ b/2753/CH4/EX4.4/Ex4_4.sce
@@ -0,0 +1,15 @@
+//Example 4.4:
+clc;
+clear;
+close;
+//given data :
+Vcc=15;// in V
+Rb=200;// in k-ohm
+Rc=2;// in k-ohm
+Beta=50;
+Ib=(Vcc/(Rb*10^3+(Beta*Rc*10^3)))*10^6;//in micro-A
+Ic=Beta*Ib*10^-3;//in mA
+Vce=Vcc-(Ic*10^-3*(Rc*10^3));
+format('v',4)
+disp(Ic,"collector current,Ic(mA) = ")
+disp(Vce,"Collector to emitter voltage,Vce(V) = ")