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.4 | |
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.4')
-rwxr-xr-x | 181/CH6/EX6.4/example6_4.sce | 35 | ||||
-rwxr-xr-x | 181/CH6/EX6.4/example6_4.txt | 7 |
2 files changed, 42 insertions, 0 deletions
diff --git a/181/CH6/EX6.4/example6_4.sce b/181/CH6/EX6.4/example6_4.sce new file mode 100755 index 000000000..a8badcbe0 --- /dev/null +++ b/181/CH6/EX6.4/example6_4.sce @@ -0,0 +1,35 @@ +// Find id,Vds,slope of operation of JFET
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 6-4 in page 275
+
+clear; clc; close;
+
+// Given data
+Ids=12*10^-3; // Drain current in mA
+Vp=-4; // Peak voltage in V
+Rd=1*10^3; // Drain resistance in k-ohm
+Vdd=15; // Drain voltage in V
+
+// Calculation
+Id=Ids;
+Vds=(-Rd*Id)+Vdd;
+printf("Id = %0.2e A\n",Id);
+printf("Vds = %0.0f V\n",Vds);
+printf("Consider it to be operating in the ohmic region\n");
+Vds1=(7+sqrt(49-45))/(3/2);
+Vds2=(7-sqrt(49-45))/(3/2);
+printf("Then Vds = %0.2f V,%0.2f V\n",Vds1,Vds2);
+printf("6V is neglected since it is lesser than -Vp\n");
+id=(15-Vds2)/(1*10^3);
+Vds=Vds2;
+printf("(a)Id = %0.3e A\n",id);
+printf("(b)Vds = %0.2f V",Vds);
+printf("Since Vds<Vgs-Vp,operation region is confirmed in the ohmic region");
+
+// Result
+// (a) Id = 11.67 mA
+// (b) Vds = 3.33 V
+// (c) Operation region is in the ohmic region
\ No newline at end of file diff --git a/181/CH6/EX6.4/example6_4.txt b/181/CH6/EX6.4/example6_4.txt new file mode 100755 index 000000000..f938d5e80 --- /dev/null +++ b/181/CH6/EX6.4/example6_4.txt @@ -0,0 +1,7 @@ +Id = 1.20e-002 A
+Vds = 3 V
+Consider it to be operating in the ohmic region
+Then Vds = 6.00 V,3.33 V
+6V is neglected since it is lesser than -Vp
+(a)Id = 1.167e-002 A
+(b)Vds = 3.33 VSince Vds<Vgs-Vp,operation region is confirmed in the ohmic region
\ No newline at end of file |