summaryrefslogtreecommitdiff
path: root/181/CH7/EX7.23
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.23
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.23')
-rwxr-xr-x181/CH7/EX7.23/example7_23.sce19
-rwxr-xr-x181/CH7/EX7.23/example7_23.txt1
2 files changed, 20 insertions, 0 deletions
diff --git a/181/CH7/EX7.23/example7_23.sce b/181/CH7/EX7.23/example7_23.sce
new file mode 100755
index 000000000..6cc98710e
--- /dev/null
+++ b/181/CH7/EX7.23/example7_23.sce
@@ -0,0 +1,19 @@
+// Find the value of Rs
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 7-23 in page 329
+
+clear; clc; close;
+
+// Given data
+Vgs=1.5; // Gate-source voltage in V
+Id=2*10^-3; // Drain saturation current in mA
+
+// Calculation
+Rs=Vgs/Id;
+printf("Rs = %0.0f ohm",Rs);
+
+// Result
+// Rs = 750 ohm \ No newline at end of file
diff --git a/181/CH7/EX7.23/example7_23.txt b/181/CH7/EX7.23/example7_23.txt
new file mode 100755
index 000000000..b568c5cdc
--- /dev/null
+++ b/181/CH7/EX7.23/example7_23.txt
@@ -0,0 +1 @@
+Rs = 750 ohm \ No newline at end of file