summaryrefslogtreecommitdiff
path: root/181/CH4/EX4.6
diff options
context:
space:
mode:
Diffstat (limited to '181/CH4/EX4.6')
-rwxr-xr-x181/CH4/EX4.6/example4_6.sce24
-rwxr-xr-x181/CH4/EX4.6/example4_6.txt2
2 files changed, 26 insertions, 0 deletions
diff --git a/181/CH4/EX4.6/example4_6.sce b/181/CH4/EX4.6/example4_6.sce
new file mode 100755
index 000000000..c38335698
--- /dev/null
+++ b/181/CH4/EX4.6/example4_6.sce
@@ -0,0 +1,24 @@
+// Calculate alpha reverse and beta reverse
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 4-6 in page 210
+
+clear; clc; close;
+
+// Given Data
+Ie=10*10^-3; // Emitter Current in mA
+Ib=5*10^-3; // Base Current in mu-A
+
+// Calculations
+Ic=Ie-Ib;
+beta_reverse=Ib/Ic;
+alpha_reverse=Ie/Ic;
+
+printf("The value of inverse beta of the BJT is %0.0f \n",beta_reverse);
+printf("The value of inverse alpha of the BJT is %0.0f \n",alpha_reverse);
+
+// Results
+// The value of inverse beta of the BJT is 1
+// The value of inverse alpha of the BJT is 2 \ No newline at end of file
diff --git a/181/CH4/EX4.6/example4_6.txt b/181/CH4/EX4.6/example4_6.txt
new file mode 100755
index 000000000..2de706e5f
--- /dev/null
+++ b/181/CH4/EX4.6/example4_6.txt
@@ -0,0 +1,2 @@
+The value of inverse beta of the BJT is 1
+The value of inverse alpha of the BJT is 2 \ No newline at end of file