summaryrefslogtreecommitdiff
path: root/181/CH1/EX1.11/example1_11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /181/CH1/EX1.11/example1_11.sce
downloadScilab-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.11/example1_11.sce')
-rwxr-xr-x181/CH1/EX1.11/example1_11.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/181/CH1/EX1.11/example1_11.sce b/181/CH1/EX1.11/example1_11.sce
new file mode 100755
index 000000000..8d161129a
--- /dev/null
+++ b/181/CH1/EX1.11/example1_11.sce
@@ -0,0 +1,22 @@
+// Time taken to reach Brillouin zone
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 1-11 in page 46
+
+clear; clc; close;
+
+// Data given
+h=1.05*10^-34; // Constant of calculation in Js
+Kb=1.112*10^8; // Wave vector at Brillouin xone along x-axis /cm
+E_0=10^4; // External electric field applied in V/cm
+e=1.6*10^-19; // Charge on an electron in C
+
+// Calculation
+tou=(h*Kb)/(e*E_0);
+
+printf("Time taken by electron is %0.3e s",tou);
+
+// Result
+// Time taken by electron to reach Brillouin zone is 7.297 ps \ No newline at end of file