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/CH1/EX1.17 | |
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/CH1/EX1.17')
-rwxr-xr-x | 181/CH1/EX1.17/example1_17.sce | 19 | ||||
-rwxr-xr-x | 181/CH1/EX1.17/example1_17.txt | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/181/CH1/EX1.17/example1_17.sce b/181/CH1/EX1.17/example1_17.sce new file mode 100755 index 000000000..0770d41ab --- /dev/null +++ b/181/CH1/EX1.17/example1_17.sce @@ -0,0 +1,19 @@ +// Equilibrium hole concentration in Si
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 1-17 in page 48
+
+clear; clc; close;
+
+// Data given
+n_0=10^17; // Free electron concentration /cm^3
+n_i=1.5*10^10; // Constant of calculation
+// Calculation
+p_0= n_i^2/n_0;
+
+printf("Equilibrium hole concentration is %0.2e cm^-3",p_0);
+
+// Result
+// Equilibrium hole concentration in Si sample is 2.25*10^3 cm^-3
\ No newline at end of file diff --git a/181/CH1/EX1.17/example1_17.txt b/181/CH1/EX1.17/example1_17.txt new file mode 100755 index 000000000..8420df307 --- /dev/null +++ b/181/CH1/EX1.17/example1_17.txt @@ -0,0 +1 @@ +Equilibrium hole concentration is 2.25e+003 cm^-3
\ No newline at end of file |