summaryrefslogtreecommitdiff
path: root/181/CH7/EX7.44/example7_44.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /181/CH7/EX7.44/example7_44.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 '181/CH7/EX7.44/example7_44.sce')
-rwxr-xr-x181/CH7/EX7.44/example7_44.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/181/CH7/EX7.44/example7_44.sce b/181/CH7/EX7.44/example7_44.sce
new file mode 100755
index 000000000..4a8d5c24f
--- /dev/null
+++ b/181/CH7/EX7.44/example7_44.sce
@@ -0,0 +1,25 @@
+// Calculate value of Id,Vgs,Vds
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 7-44 in page 345
+
+clear; clc; close;
+
+// Given data
+Idss=4*10^-3; // Drain-source current in mA
+Vp=4; // Pinch off voltage in V
+
+// Calculation
+Rth=(200*10^3*1.3*10^6)/((200*10^3)+(1.3*10^6));
+Vth=(200/1500)*(1-60);
+Vgs=1;
+Id=(-8-Vgs)/4;
+Vds=-60-((18+4)*Id);
+printf("Id = %0.2f mA\nVgs = %0.0f V\nVds = %0.1f V",Id,Vgs,Vds);
+
+// Result
+// Vgs = 1 V
+// Vds = -10.5 V
+// Id = -2.25 mA \ No newline at end of file