diff options
Diffstat (limited to '181/CH1/EX1.22')
-rwxr-xr-x | 181/CH1/EX1.22/example1_22.sce | 21 | ||||
-rwxr-xr-x | 181/CH1/EX1.22/example1_22.txt | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/181/CH1/EX1.22/example1_22.sce b/181/CH1/EX1.22/example1_22.sce new file mode 100755 index 000000000..d27ce99f6 --- /dev/null +++ b/181/CH1/EX1.22/example1_22.sce @@ -0,0 +1,21 @@ +// Mobility of free electrons in Alluminium
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 1-22 in page 50
+
+clear; clc; close;
+
+// Data given
+n_0=18*10^28; // Derived from the given formula in textbook
+rho=3.44*10^-6; // Resistivity in ohm-cm
+e=1.6*10^-19; // Charge on an electron in C
+
+// Calculation
+mu=10^2/(n_0*e*rho);
+
+printf("Mobility of free electrons is %0.0e m^2/V-s",mu);
+
+// Result
+// Mobility of free electrons in Alluminium is 10^-3 m^2/V-s
\ No newline at end of file diff --git a/181/CH1/EX1.22/example1_22.txt b/181/CH1/EX1.22/example1_22.txt new file mode 100755 index 000000000..e697a7c49 --- /dev/null +++ b/181/CH1/EX1.22/example1_22.txt @@ -0,0 +1 @@ +Mobility of free electrons is 1e-003 m^2/V-s
\ No newline at end of file |