diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /181/CH4/EX4.4/example4_4.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '181/CH4/EX4.4/example4_4.sce')
-rwxr-xr-x | 181/CH4/EX4.4/example4_4.sce | 20 |
1 files changed, 20 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 |