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/CH6/EX6.13 | |
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/CH6/EX6.13')
-rwxr-xr-x | 181/CH6/EX6.13/example6_13.sce | 28 | ||||
-rwxr-xr-x | 181/CH6/EX6.13/example6_13.txt | 4 |
2 files changed, 32 insertions, 0 deletions
diff --git a/181/CH6/EX6.13/example6_13.sce b/181/CH6/EX6.13/example6_13.sce new file mode 100755 index 000000000..1565dd6bd --- /dev/null +++ b/181/CH6/EX6.13/example6_13.sce @@ -0,0 +1,28 @@ +// Find Vgs,operating region,Id,Rd
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 6-13 in page 288
+
+clear; clc; close;
+
+// Given data
+Vdd=10; // Drain voltage in in V
+Vds=6; // Drain-source voltage in V
+K=0.2*10^-3; // Constant in mA/V^2
+Vt=1; // Voltage given
+
+// Calculation
+Vgs=Vds;
+printf("(a)Vgs = %0.0f V\n",Vgs);
+printf("Vds=6V>Vgs-Vt=5V\n");
+Id=K*(Vgs-Vt)^2;
+Rd=(Vdd-Vds)/Id;
+printf("(b)Id = %0.0e A\n",Id);
+printf("(c)Rd = %0.0f ohms",Rd);
+
+// Result
+// (a) Vgs = 6 V
+// (b) Id = 5 mA
+// (c) Rd = 800 ohms
\ No newline at end of file diff --git a/181/CH6/EX6.13/example6_13.txt b/181/CH6/EX6.13/example6_13.txt new file mode 100755 index 000000000..8e0e4822e --- /dev/null +++ b/181/CH6/EX6.13/example6_13.txt @@ -0,0 +1,4 @@ +(a)Vgs = 6 V
+Vds=6V>Vgs-Vt=5V
+(b)Id = 5e-003 A
+(c)Rd = 800 ohms
\ No newline at end of file |