summaryrefslogtreecommitdiff
path: root/181/CH6/EX6.10
diff options
context:
space:
mode:
Diffstat (limited to '181/CH6/EX6.10')
-rwxr-xr-x181/CH6/EX6.10/example6_10.sce25
-rwxr-xr-x181/CH6/EX6.10/example6_10.txt2
2 files changed, 27 insertions, 0 deletions
diff --git a/181/CH6/EX6.10/example6_10.sce b/181/CH6/EX6.10/example6_10.sce
new file mode 100755
index 000000000..5e26dd267
--- /dev/null
+++ b/181/CH6/EX6.10/example6_10.sce
@@ -0,0 +1,25 @@
+// Find pinch off,saturation voltage
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 6-10 in page 279
+
+clear; clc; close;
+
+// Given data
+Nd=3*10^21; // Donor concentration in /m^3
+epsln=12; // Dielectric constant of silicon
+epsln_0=12*8.85*10^-12; // Constant of calculation
+e=1.6*10^-19; // Charge on an electron in C
+a=2*10^-6; // Constant of calculation
+
+// Calculation
+Vp=(e*Nd*(a)^2)/(2*epsln_0);
+printf("(a)Pinch off voltage = %0.3f V\n",Vp);
+Vds=Vp-2;
+printf("(b)Saturation voltage = %0.3f V",Vds);
+
+// Result
+// (a) Pinch off voltage = 9.040 V
+// (b) Saturation voltage = 7.040 V \ No newline at end of file
diff --git a/181/CH6/EX6.10/example6_10.txt b/181/CH6/EX6.10/example6_10.txt
new file mode 100755
index 000000000..e8bb7be6e
--- /dev/null
+++ b/181/CH6/EX6.10/example6_10.txt
@@ -0,0 +1,2 @@
+(a)Pinch off voltage = 9.040 V
+(b)Saturation voltage = 7.040 V \ No newline at end of file