summaryrefslogtreecommitdiff
path: root/317/CH13/EX13.4
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.4
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.4')
-rwxr-xr-x317/CH13/EX13.4/example4.sce20
-rwxr-xr-x317/CH13/EX13.4/example4.txt1
2 files changed, 21 insertions, 0 deletions
diff --git a/317/CH13/EX13.4/example4.sce b/317/CH13/EX13.4/example4.sce
new file mode 100755
index 000000000..f2b9eba81
--- /dev/null
+++ b/317/CH13/EX13.4/example4.sce
@@ -0,0 +1,20 @@
+// calculate drain current at half cutoff point
+// Electronic Principles
+// By Albert Malvino , David Bates
+// Seventh Edition
+// The McGraw-Hill Companies
+// Example 13-4, page 432
+
+clear; clc; close;
+
+// Given data
+// 2N5459
+Vgsoff=-8;// gate-source cutoff voltage in volts
+Idss=16*10^-3 ;// maximum drain current in amperes
+
+// Calculations
+Id=Idss/4 ;// drain current at half cutoff point in amperes
+disp("Amperes",Id,"Drain current=")
+
+// Result
+// Drain current is 4 mAmperes \ No newline at end of file
diff --git a/317/CH13/EX13.4/example4.txt b/317/CH13/EX13.4/example4.txt
new file mode 100755
index 000000000..90df70370
--- /dev/null
+++ b/317/CH13/EX13.4/example4.txt
@@ -0,0 +1 @@
+Drain current is 4 mAmperes \ No newline at end of file