summaryrefslogtreecommitdiff
path: root/181/CH4/EX4.4
diff options
context:
space:
mode:
Diffstat (limited to '181/CH4/EX4.4')
-rwxr-xr-x181/CH4/EX4.4/example4_4.sce20
-rwxr-xr-x181/CH4/EX4.4/example4_4.txt1
2 files changed, 21 insertions, 0 deletions
diff --git a/181/CH4/EX4.4/example4_4.sce b/181/CH4/EX4.4/example4_4.sce
new file mode 100755
index 000000000..fb6e627b5
--- /dev/null
+++ b/181/CH4/EX4.4/example4_4.sce
@@ -0,0 +1,20 @@
+// Calculate beta for the BJT
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 4-4 in page 209
+
+clear; clc; close;
+
+// Given Data
+Ib=20*10^-6; // Base current in micro-A
+Ic=5*10^-3; // Collector Current in mA
+
+// Calculations
+beta_bjt=Ic/Ib;
+
+printf("The Current gain beta for the Device is %0.0f \n",beta_bjt);
+
+// Results
+// The Current Gain beta for the Device is 250 \ No newline at end of file
diff --git a/181/CH4/EX4.4/example4_4.txt b/181/CH4/EX4.4/example4_4.txt
new file mode 100755
index 000000000..c3c09c46d
--- /dev/null
+++ b/181/CH4/EX4.4/example4_4.txt
@@ -0,0 +1 @@
+The Current Gain beta for the Device is 250 \ No newline at end of file