summaryrefslogtreecommitdiff
path: root/181/CH6/EX6.12
diff options
context:
space:
mode:
Diffstat (limited to '181/CH6/EX6.12')
-rwxr-xr-x181/CH6/EX6.12/example6_12.sce22
-rwxr-xr-x181/CH6/EX6.12/example6_12.txt4
2 files changed, 26 insertions, 0 deletions
diff --git a/181/CH6/EX6.12/example6_12.sce b/181/CH6/EX6.12/example6_12.sce
new file mode 100755
index 000000000..2876aa285
--- /dev/null
+++ b/181/CH6/EX6.12/example6_12.sce
@@ -0,0 +1,22 @@
+// Determine approximate Rds
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 6-12 in page 287
+
+clear; clc; close;
+
+// Given data
+K=0.25*10^-3; // Constant in mA/V^2
+Vt=2; // Voltage in V
+Vgs=[4 6 10]; // Drain-source voltage in V
+
+// Calculation
+for i=1:3
+ rds=1/(2*K*(Vgs(i)-Vt));
+ printf("Rds = %0.0f ohm\n",rds);
+end
+
+// Result
+// Rds = 1 K-ohm, 500 ohm, 250 ohm \ No newline at end of file
diff --git a/181/CH6/EX6.12/example6_12.txt b/181/CH6/EX6.12/example6_12.txt
new file mode 100755
index 000000000..f2bb0eb9c
--- /dev/null
+++ b/181/CH6/EX6.12/example6_12.txt
@@ -0,0 +1,4 @@
+ Rds = 1000 ohm
+Rds = 500 ohm
+Rds = 250 ohm
+ \ No newline at end of file