summaryrefslogtreecommitdiff
path: root/181/CH1/EX1.13
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.13
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.13')
-rwxr-xr-x181/CH1/EX1.13/example1_13.sce29
-rwxr-xr-x181/CH1/EX1.13/example1_13.txt6
2 files changed, 35 insertions, 0 deletions
diff --git a/181/CH1/EX1.13/example1_13.sce b/181/CH1/EX1.13/example1_13.sce
new file mode 100755
index 000000000..0d01bcf05
--- /dev/null
+++ b/181/CH1/EX1.13/example1_13.sce
@@ -0,0 +1,29 @@
+// Compute conductivity,drift velocity,current density
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 1-13 in page 47
+
+clear; clc; close;
+
+// Data given
+mu=35.2*10^-4; // Mobility of electrons in m^2/Vs
+n_0=7.87*10^28; // Number of free electrons per cubic meter
+e=1.6*10^-19; // Charge on an electron in C
+E_0=30*10^2; // External electric field applied in V/m
+
+// Calculation
+sigma=n_0*e*mu;
+printf("(a)Mobility = %0.1e m^2/Vs\n",mu);
+printf("Conductivity of the specimen is %0.2e s/m\n\n",sigma);
+V_0=mu*E_0;
+J=sigma*E_0;
+printf("(b)Electric field Eo = %0.0e V/m\n",E_0);
+printf("Drift velocity of free electrons is %0.2f m/s\n",V_0);
+printf("Current density is %0.2e A/meter^3",J);
+
+// Result
+// (a) Conductivity of specimen is 4.43*10^7 s/m
+// (b) Drift velocity of free electrons is 10.56 m/s
+// (c) Current density is 13.3*10^10 A/meter cube \ No newline at end of file
diff --git a/181/CH1/EX1.13/example1_13.txt b/181/CH1/EX1.13/example1_13.txt
new file mode 100755
index 000000000..8a9d22013
--- /dev/null
+++ b/181/CH1/EX1.13/example1_13.txt
@@ -0,0 +1,6 @@
+(a)Mobility = 3.5e-003 m^2/Vs
+Conductivity of the specimen is 4.43e+007 s/m
+
+(b)Electric field Eo = 3e+003 V/m
+Drift velocity of free electrons is 10.56 m/s
+Current density is 1.33e+011 A/meter^3 \ No newline at end of file