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.16 | |
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.16')
-rwxr-xr-x | 181/CH1/EX1.16/example1_16.sce | 22 | ||||
-rwxr-xr-x | 181/CH1/EX1.16/example1_16.txt | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/181/CH1/EX1.16/example1_16.sce b/181/CH1/EX1.16/example1_16.sce new file mode 100755 index 000000000..1d6b41d58 --- /dev/null +++ b/181/CH1/EX1.16/example1_16.sce @@ -0,0 +1,22 @@ +// Calculate drift velocity in copper
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 1-16 in page 47
+
+clear; clc; close;
+
+// Data given
+tou=10^-14; // Relaxation time in s
+m_c=0.02*9.1*10^-31; // Effective mass of electron in Kg
+E_0=0.1; // Electric field across conductor in V/m
+e=1.6*10^-19; // Charge on an electron in C
+
+// Calculation
+V_0=(e*E_0*tou)/m_c;
+
+printf("The drift velocity of electrons in copper is %0.3f m/s",V_0);
+
+// Result
+// Drift velocity of electrons in copper is 0.009 m/s
\ No newline at end of file diff --git a/181/CH1/EX1.16/example1_16.txt b/181/CH1/EX1.16/example1_16.txt new file mode 100755 index 000000000..436ca2363 --- /dev/null +++ b/181/CH1/EX1.16/example1_16.txt @@ -0,0 +1 @@ +The drift velocity of electrons in copper is 0.009 m/s
\ No newline at end of file |