summaryrefslogtreecommitdiff
path: root/317/CH13/EX13.11/example11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /317/CH13/EX13.11/example11.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '317/CH13/EX13.11/example11.sce')
-rwxr-xr-x317/CH13/EX13.11/example11.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/317/CH13/EX13.11/example11.sce b/317/CH13/EX13.11/example11.sce
new file mode 100755
index 000000000..0f049125d
--- /dev/null
+++ b/317/CH13/EX13.11/example11.sce
@@ -0,0 +1,24 @@
+// find drain current,drain voltage
+// Electronic Principles
+// By Albert Malvino , David Bates
+// Seventh Edition
+// The McGraw-Hill Companies
+// Example 13-11, page 444
+
+clear; clc; close;
+
+// Given data
+Vdd=10;// in volts
+Vee=5;// in volts
+Rd=1*10^3;// drain resistance in ohms
+Re=2*10^3;// source resistance in ohms
+
+// Calculations
+Id=(Vee-0.7)/Re;// drain current set up by bipolar junction transistor in amperes
+Vd=Vdd-(Id*Rd);// drain voltage in volts
+disp("Amperes",Id,"Drain current=")
+disp("Volts",Vd,"Drain Voltage=")
+
+// Result
+// Drain current is 2.15 mAmperes
+// Drain voltage is 7.85 Volts \ No newline at end of file