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.15 | |
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.15')
-rwxr-xr-x | 181/CH6/EX6.15/example6_15.sce | 23 | ||||
-rwxr-xr-x | 181/CH6/EX6.15/example6_15.txt | 2 |
2 files changed, 25 insertions, 0 deletions
diff --git a/181/CH6/EX6.15/example6_15.sce b/181/CH6/EX6.15/example6_15.sce new file mode 100755 index 000000000..7735fb0a5 --- /dev/null +++ b/181/CH6/EX6.15/example6_15.sce @@ -0,0 +1,23 @@ +// Find Id when Vgs=4V
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 6-15 in page 288
+
+clear; clc; close;
+
+// Given data
+K=0.15*10^-3; // Constant in mA/V^2
+Vt=2; // Given voltgae in V
+Vdd=12; // Drain voltage in V
+Vgs=4; // Gate-source voltage in V
+
+// Calculation
+Vgg=sqrt(5.4/0.15)+2;
+Id=K*(Vgs-Vt)^2;
+printf("(a)Vgg = %0.0f V,\n(b)Id = %0.1e A",Vgg,Id);
+
+// Result
+// (a) Vgg = 8 V
+// (b) Id = 0.6 mA
\ No newline at end of file diff --git a/181/CH6/EX6.15/example6_15.txt b/181/CH6/EX6.15/example6_15.txt new file mode 100755 index 000000000..dc19f101d --- /dev/null +++ b/181/CH6/EX6.15/example6_15.txt @@ -0,0 +1,2 @@ +(a)Vgg = 8 V,
+(b)Id = 6.0e-004 A
\ No newline at end of file |