summaryrefslogtreecommitdiff
path: root/2045/CH5/EX5.29/Ex5_29.sce
diff options
context:
space:
mode:
Diffstat (limited to '2045/CH5/EX5.29/Ex5_29.sce')
-rwxr-xr-x2045/CH5/EX5.29/Ex5_29.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2045/CH5/EX5.29/Ex5_29.sce b/2045/CH5/EX5.29/Ex5_29.sce
new file mode 100755
index 000000000..c8ea4d5af
--- /dev/null
+++ b/2045/CH5/EX5.29/Ex5_29.sce
@@ -0,0 +1,19 @@
+//pagenumber 307 example 29
+clear
+beta1=500;
+ib=20*10^-6;//ampere
+re=100;//ohm
+ic=beta1*ib;
+vc=ic*0.47*10^3;//voltage drop across collector resistance
+v1=(10-vc);
+vb=v1-0.6;
+rb=vc/ib;
+disp("base resistance = "+string((rb))+"ohm");
+ve=re*ic;
+disp("base resistance with re");
+b=0.6+0.1;
+rb=(v1-b)/ib;
+disp("base resistance = "+string((rb))+"ohm");
+
+
+