diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /181/CH7/EX7.14 | |
download | Scilab-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.14')
-rwxr-xr-x | 181/CH7/EX7.14/example7_14.sce | 24 | ||||
-rwxr-xr-x | 181/CH7/EX7.14/example7_14.txt | 1 |
2 files changed, 25 insertions, 0 deletions
diff --git a/181/CH7/EX7.14/example7_14.sce b/181/CH7/EX7.14/example7_14.sce new file mode 100755 index 000000000..76586aff8 --- /dev/null +++ b/181/CH7/EX7.14/example7_14.sce @@ -0,0 +1,24 @@ +// Find the value of R1
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 7-14 in page 322
+
+clear; clc; close;
+
+// Given data
+Idss=2*10^-3; // Drain-source current in mA
+Vp=-1; // Voltage in volts
+Rd=56*10^3; // Drain resistance in K-ohms
+Vdn=10; // Drain to ground voltage in volts
+Vdd=24; // Drain voltage in volts
+
+// Calculation
+Id=(Vdd-Vdn)/Rd;
+Vgs=-0.65;
+R1=-Vgs/Id;
+printf("R1 = %0.1e ohms",R1);
+
+// Result
+// R1 = 2.6 K-ohms
\ No newline at end of file diff --git a/181/CH7/EX7.14/example7_14.txt b/181/CH7/EX7.14/example7_14.txt new file mode 100755 index 000000000..c6314c638 --- /dev/null +++ b/181/CH7/EX7.14/example7_14.txt @@ -0,0 +1 @@ +R1 = 2.6e+003 ohms
\ No newline at end of file |